Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.17 KB

Team.md

File metadata and controls

38 lines (29 loc) · 1.17 KB

Team

Team represents a team in an organization

Properties

Name Type Description Notes
can_create_org_repo bool [optional]
description str [optional]
id int [optional]
includes_all_repositories bool [optional]
name str [optional]
organization Organization [optional]
permission str [optional]
units List[str] [optional]
units_map Dict[str, str] [optional]

Example

from clientapi_forgejo.models.team import Team

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

# convert the object into a dict
team_dict = team_instance.to_dict()
# create an instance of Team from a dict
team_from_dict = Team.from_dict(team_dict)

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