| Name | Type | Description | Notes |
|---|---|---|---|
| member | MemberSummary | [optional] | |
| team | MemberTeamSummaryRep | [optional] |
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)