| 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 | ViewsMemberSummary | [optional] | |
| team | ViewsMemberTeamSummaryRep | [optional] |
from launchdarkly_api.models.expanded_flag_maintainer import ExpandedFlagMaintainer
# TODO update the JSON string below
json = "{}"
# create an instance of ExpandedFlagMaintainer from a JSON string
expanded_flag_maintainer_instance = ExpandedFlagMaintainer.from_json(json)
# print the JSON string representation of the object
print(ExpandedFlagMaintainer.to_json())
# convert the object into a dict
expanded_flag_maintainer_dict = expanded_flag_maintainer_instance.to_dict()
# create an instance of ExpandedFlagMaintainer from a dict
expanded_flag_maintainer_from_dict = ExpandedFlagMaintainer.from_dict(expanded_flag_maintainer_dict)