mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-28 21:48:25 +00:00
34 lines
1.6 KiB
Markdown
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 | "none"
|
|
READ | "read"
|
|
WRITE | "write"
|
|
ADMIN | "admin"
|
|
OWNER | "owner"
|
|
|
|
<a name="VisibilityEnum"></a>
|
|
## Enum: VisibilityEnum
|
|
Name | Value
|
|
---- | -----
|
|
PUBLIC | "public"
|
|
LIMITED | "limited"
|
|
PRIVATE | "private"
|