| 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. |
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)