CreateTeamOption options for creating a team
| Name | Type | Description | Notes |
|---|---|---|---|
| can_create_org_repo | bool | [optional] | |
| description | str | [optional] | |
| includes_all_repositories | bool | [optional] | |
| name | str | ||
| permission | str | [optional] | |
| units | List[str] | [optional] | |
| units_map | Dict[str, str] | [optional] |
from openapi_client.models.create_team_option import CreateTeamOption
# TODO update the JSON string below
json = "{}"
# create an instance of CreateTeamOption from a JSON string
create_team_option_instance = CreateTeamOption.from_json(json)
# print the JSON string representation of the object
print(CreateTeamOption.to_json())
# convert the object into a dict
create_team_option_dict = create_team_option_instance.to_dict()
# create an instance of CreateTeamOption from a dict
create_team_option_from_dict = CreateTeamOption.from_dict(create_team_option_dict)