Files
tea4j-autodeploy/docs/Team.md
T
2026-06-15 00:02:23 +00:00

34 lines
1.6 KiB
Markdown

# Team
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**canCreateOrgRepo** | **Boolean** | Whether the team can create repositories in the organization | [optional]
**description** | **String** | The description of the team | [optional]
**id** | **Long** | The unique identifier of the team | [optional]
**includesAllRepositories** | **Boolean** | Whether the team has access to all repositories in the organization | [optional]
**name** | **String** | The name of the team | [optional]
**organization** | [**Organization**](Organization.md) | | [optional]
**permission** | [**PermissionEnum**](#PermissionEnum) | | [optional]
**units** | **List<String>** | | [optional]
**unitsMap** | **Map<String, String>** | | [optional]
**visibility** | [**VisibilityEnum**](#VisibilityEnum) | Team visibility within the organization. \"private\" teams are only listable by members and org owners; \"limited\" teams are listable by any organization member; \"public\" teams are listable by any signed-in user. public TeamVisibilityPublic limited TeamVisibilityLimited private TeamVisibilityPrivate | [optional]
<a name="PermissionEnum"></a>
## Enum: PermissionEnum
Name | Value
---- | -----
NONE | &quot;none&quot;
READ | &quot;read&quot;
WRITE | &quot;write&quot;
ADMIN | &quot;admin&quot;
OWNER | &quot;owner&quot;
<a name="VisibilityEnum"></a>
## Enum: VisibilityEnum
Name | Value
---- | -----
PUBLIC | &quot;public&quot;
LIMITED | &quot;limited&quot;
PRIVATE | &quot;private&quot;