Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

TeamProjects

Properties

Name Type Description Notes
total_count int [optional]
items List[ProjectSummary] Details on each project where team members have write privileges on at least one resource type (e.g. flags) [optional]

Example

from launchdarkly_api.models.team_projects import TeamProjects

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

# convert the object into a dict
team_projects_dict = team_projects_instance.to_dict()
# create an instance of TeamProjects from a dict
team_projects_from_dict = TeamProjects.from_dict(team_projects_dict)

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