Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

MaintainerTeam

Properties

Name Type Description Notes
key str The key of the maintainer team
name str A human-friendly name for the maintainer team
links Dict[str, Link] The location and content type of related resources [optional]

Example

from launchdarkly_api.models.maintainer_team import MaintainerTeam

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

# convert the object into a dict
maintainer_team_dict = maintainer_team_instance.to_dict()
# create an instance of MaintainerTeam from a dict
maintainer_team_from_dict = MaintainerTeam.from_dict(maintainer_team_dict)

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