| Name |
Type |
Description |
Notes |
| href |
str |
|
[optional] |
| type |
str |
|
[optional] |
from launchdarkly_api.models.ai_configs_link import AiConfigsLink
# TODO update the JSON string below
json = "{}"
# create an instance of AiConfigsLink from a JSON string
ai_configs_link_instance = AiConfigsLink.from_json(json)
# print the JSON string representation of the object
print(AiConfigsLink.to_json())
# convert the object into a dict
ai_configs_link_dict = ai_configs_link_instance.to_dict()
# create an instance of AiConfigsLink from a dict
ai_configs_link_from_dict = AiConfigsLink.from_dict(ai_configs_link_dict)
[Back to Model list] [Back to API list] [Back to README]