Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

AgentSkillReferences

Properties

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

Example

from launchdarkly_api.models.agent_skill_references import AgentSkillReferences

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

# convert the object into a dict
agent_skill_references_dict = agent_skill_references_instance.to_dict()
# create an instance of AgentSkillReferences from a dict
agent_skill_references_from_dict = AgentSkillReferences.from_dict(agent_skill_references_dict)

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