| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[ExpandedAIConfig] | ||
| total_count | int |
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)