Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 943 Bytes

File metadata and controls

31 lines (22 loc) · 943 Bytes

AIConfigs

Properties

Name Type Description Notes
links PaginatedLinks [optional]
items List[AIConfig]
total_count int

Example

from launchdarkly_api.models.ai_configs import AIConfigs

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

# convert the object into a dict
ai_configs_dict = ai_configs_instance.to_dict()
# create an instance of AIConfigs from a dict
ai_configs_from_dict = AIConfigs.from_dict(ai_configs_dict)

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