Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.12 KB

File metadata and controls

36 lines (27 loc) · 1.12 KB

AIConfigMaintainer

Properties

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

Example

from launchdarkly_api.models.ai_config_maintainer import AIConfigMaintainer

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

# convert the object into a dict
ai_config_maintainer_dict = ai_config_maintainer_instance.to_dict()
# create an instance of AIConfigMaintainer from a dict
ai_config_maintainer_from_dict = AIConfigMaintainer.from_dict(ai_config_maintainer_dict)

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