Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 909 Bytes

File metadata and controls

29 lines (20 loc) · 909 Bytes

TeamMembers

Properties

Name Type Description Notes
total_count int The total count of members that belong to the team [optional]

Example

from launchdarkly_api.models.team_members import TeamMembers

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

# convert the object into a dict
team_members_dict = team_members_instance.to_dict()
# create an instance of TeamMembers from a dict
team_members_from_dict = TeamMembers.from_dict(team_members_dict)

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