Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1 KB

File metadata and controls

32 lines (23 loc) · 1 KB

Maintainer

Properties

Name Type Description Notes
id str
kind str
maintainer_member ViewsMaintainerMember [optional]
maintainer_team ViewsMaintainerTeam [optional]

Example

from launchdarkly_api.models.maintainer import Maintainer

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

# convert the object into a dict
maintainer_dict = maintainer_instance.to_dict()
# create an instance of Maintainer from a dict
maintainer_from_dict = Maintainer.from_dict(maintainer_dict)

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