| Name | Type | Description | Notes |
|---|---|---|---|
| links | PaginatedLinks | [optional] | |
| items | List[AgentSkill] | ||
| total_count | int |
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)