Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

ToolReferences

Properties

Name Type Description Notes
links PaginatedLinks [optional]
resource_key str The key of the AI tool.
resource_type str The type of the resource being referenced.
items List[ToolReference]
total_count int The total number of references.

Example

from launchdarkly_api.models.tool_references import ToolReferences

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

# convert the object into a dict
tool_references_dict = tool_references_instance.to_dict()
# create an instance of ToolReferences from a dict
tool_references_from_dict = ToolReferences.from_dict(tool_references_dict)

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