Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

MaintainerRep

Properties

Name Type Description Notes
key str The ID of the maintainer member, or the key of the maintainer team
kind str The type of the maintainer
member MemberSummary [optional]
team MemberTeamSummaryRep [optional]

Example

from launchdarkly_api.models.maintainer_rep import MaintainerRep

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

# convert the object into a dict
maintainer_rep_dict = maintainer_rep_instance.to_dict()
# create an instance of MaintainerRep from a dict
maintainer_rep_from_dict = MaintainerRep.from_dict(maintainer_rep_dict)

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