| Name | Type | Description | Notes |
|---|---|---|---|
| total_count | int | The number of maintainers of the team | [optional] |
| items | List[MemberSummary] | Details on the members that have been assigned as maintainers of the team | [optional] |
| links | Dict[str, Link] | The location and content type of related resources | [optional] |
from launchdarkly_api.models.team_maintainers import TeamMaintainers
# TODO update the JSON string below
json = "{}"
# create an instance of TeamMaintainers from a JSON string
team_maintainers_instance = TeamMaintainers.from_json(json)
# print the JSON string representation of the object
print(TeamMaintainers.to_json())
# convert the object into a dict
team_maintainers_dict = team_maintainers_instance.to_dict()
# create an instance of TeamMaintainers from a dict
team_maintainers_from_dict = TeamMaintainers.from_dict(team_maintainers_dict)