Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 913 Bytes

File metadata and controls

31 lines (22 loc) · 913 Bytes

AITools

Properties

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

Example

from launchdarkly_api.models.ai_tools import AITools

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

# convert the object into a dict
ai_tools_dict = ai_tools_instance.to_dict()
# create an instance of AITools from a dict
ai_tools_from_dict = AITools.from_dict(ai_tools_dict)

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