Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.15 KB

File metadata and controls

36 lines (27 loc) · 1.15 KB

AgentGraphMaintainer

Properties

Name Type Description Notes
kind str [optional]
id str
email str
first_name str [optional]
last_name str [optional]
role str
key str
name str

Example

from launchdarkly_api.models.agent_graph_maintainer import AgentGraphMaintainer

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

# convert the object into a dict
agent_graph_maintainer_dict = agent_graph_maintainer_instance.to_dict()
# create an instance of AgentGraphMaintainer from a dict
agent_graph_maintainer_from_dict = AgentGraphMaintainer.from_dict(agent_graph_maintainer_dict)

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