Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 990 Bytes

File metadata and controls

30 lines (21 loc) · 990 Bytes

MaintainerRep

Properties

Name Type Description Notes
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]