| Name |
Type |
Description |
Notes |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
| markdown |
str |
The verbatim SKILL.md content of the agent skill |
[optional] |
| maintainer_id |
str |
|
[optional] |
| maintainer_team_key |
str |
|
[optional] |
| tags |
List[str] |
|
[optional] |
from launchdarkly_api.models.agent_skill_patch import AgentSkillPatch
# TODO update the JSON string below
json = "{}"
# create an instance of AgentSkillPatch from a JSON string
agent_skill_patch_instance = AgentSkillPatch.from_json(json)
# print the JSON string representation of the object
print(AgentSkillPatch.to_json())
# convert the object into a dict
agent_skill_patch_dict = agent_skill_patch_instance.to_dict()
# create an instance of AgentSkillPatch from a dict
agent_skill_patch_from_dict = AgentSkillPatch.from_dict(agent_skill_patch_dict)
[Back to Model list] [Back to API list] [Back to README]