bitbucket-api-client-lib

Repository

Properties

Name | Type | Description | Notes ———— | ————- | ————- | ————- links | RepositoryLinks | | [optional] uuid | String | The repository's immutable id. This can be used as a substitute for the slug segment in URLs. Doing this guarantees your URLs will survive renaming of the repository by its owner, or even transfer of the repository to a different user. | [optional] fullName | String | The concatenation of the repository owner's username and the slugified name, e.g. \"evzijst/interruptingcow\". This is the same string used in Bitbucket URLs. | [optional] isPrivate | Boolean | | [optional] parent | Repository | | [optional] scm | ScmEnum | | [optional] owner | Account | | [optional] name | String | | [optional] description | String | | [optional] createdOn | OffsetDateTime | | [optional] updatedOn | OffsetDateTime | | [optional] size | Integer | | [optional] language | String | | [optional] hasIssues | Boolean | | [optional] hasWiki | Boolean | | [optional] forkPolicy | ForkPolicyEnum | Controls the rules for forking this repository. * allow_forks: unrestricted forking * no_public_forks: restrict forking to private forks (forks cannot be made public later) * no_forks: deny all forking | [optional] project | Project | | [optional] mainbranch | Branch | | [optional]

Enum: ScmEnum

Name | Value —- | —– HG | "hg" GIT | "git"

Enum: ForkPolicyEnum

Name | Value —- | —– ALLOW_FORKS | "allow_forks" NO_PUBLIC_FORKS | "no_public_forks" NO_FORKS | "no_forks"