Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

ExpandedLinkedAIConfigs

Properties

Name Type Description Notes
items List[ExpandedAIConfig]
total_count int

Example

from launchdarkly_api.models.expanded_linked_ai_configs import ExpandedLinkedAIConfigs

# TODO update the JSON string below
json = "{}"
# create an instance of ExpandedLinkedAIConfigs from a JSON string
expanded_linked_ai_configs_instance = ExpandedLinkedAIConfigs.from_json(json)
# print the JSON string representation of the object
print(ExpandedLinkedAIConfigs.to_json())

# convert the object into a dict
expanded_linked_ai_configs_dict = expanded_linked_ai_configs_instance.to_dict()
# create an instance of ExpandedLinkedAIConfigs from a dict
expanded_linked_ai_configs_from_dict = ExpandedLinkedAIConfigs.from_dict(expanded_linked_ai_configs_dict)

[Back to Model list] [Back to API list] [Back to README]