Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 913 Bytes

File metadata and controls

29 lines (20 loc) · 913 Bytes

AIConfigsSummary

Properties

Name Type Description Notes
count int

Example

from launchdarkly_api.models.ai_configs_summary import AIConfigsSummary

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

# convert the object into a dict
ai_configs_summary_dict = ai_configs_summary_instance.to_dict()
# create an instance of AIConfigsSummary from a dict
ai_configs_summary_from_dict = AIConfigsSummary.from_dict(ai_configs_summary_dict)

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