Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 973 Bytes

File metadata and controls

31 lines (22 loc) · 973 Bytes

AgentSkills

Properties

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

Example

from launchdarkly_api.models.agent_skills import AgentSkills

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

# convert the object into a dict
agent_skills_dict = agent_skills_instance.to_dict()
# create an instance of AgentSkills from a dict
agent_skills_from_dict = AgentSkills.from_dict(agent_skills_dict)

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