bitbucketv1

package
v0.0.0-...-67d9988 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 24, 2023 License: MIT Imports: 20 Imported by: 0

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var (
	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions ¶

func CacheExpires ¶

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil ¶

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool ¶

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32 ¶

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64 ¶

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt ¶

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32 ¶

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64 ¶

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString ¶

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime ¶

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types ¶

type APIClient ¶

type APIClient struct {
	AuthenticationAPI *AuthenticationAPIService

	BuildsAndDeploymentsAPI *BuildsAndDeploymentsAPIService

	CapabilitiesAPI *CapabilitiesAPIService

	DashboardAPI *DashboardAPIService

	DefaultAPI *DefaultAPIService

	DeprecatedAPI *DeprecatedAPIService

	JiraIntegrationAPI *JiraIntegrationAPIService

	MarkupAPI *MarkupAPIService

	MirroringMirrorAPI *MirroringMirrorAPIService

	MirroringUpstreamAPI *MirroringUpstreamAPIService

	PermissionManagementAPI *PermissionManagementAPIService

	ProjectAPI *ProjectAPIService

	PullRequestsAPI *PullRequestsAPIService

	RepositoryAPI *RepositoryAPIService

	SecurityAPI *SecurityAPIService

	SystemMaintenanceAPI *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Bitbucket Server API v8.14 In most cases there should be only one, shared, APIClient.

func NewAPIClient ¶

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig ¶

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey ¶

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse ¶

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse ¶

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError ¶

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AddSshKeyRequest ¶

type AddSshKeyRequest struct {
	AlgorithmType     *string    `json:"algorithmType,omitempty"`
	BitLength         *int32     `json:"bitLength,omitempty"`
	CreatedDate       *time.Time `json:"createdDate,omitempty"`
	ExpiryDays        *int32     `json:"expiryDays,omitempty"`
	Id                *int32     `json:"id,omitempty"`
	Label             *string    `json:"label,omitempty"`
	LastAuthenticated *string    `json:"lastAuthenticated,omitempty"`
	Text              *string    `json:"text,omitempty"`
}

AddSshKeyRequest struct for AddSshKeyRequest

func NewAddSshKeyRequest ¶

func NewAddSshKeyRequest() *AddSshKeyRequest

NewAddSshKeyRequest instantiates a new AddSshKeyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAddSshKeyRequestWithDefaults ¶

func NewAddSshKeyRequestWithDefaults() *AddSshKeyRequest

NewAddSshKeyRequestWithDefaults instantiates a new AddSshKeyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AddSshKeyRequest) GetAlgorithmType ¶

func (o *AddSshKeyRequest) GetAlgorithmType() string

GetAlgorithmType returns the AlgorithmType field value if set, zero value otherwise.

func (*AddSshKeyRequest) GetAlgorithmTypeOk ¶

func (o *AddSshKeyRequest) GetAlgorithmTypeOk() (*string, bool)

GetAlgorithmTypeOk returns a tuple with the AlgorithmType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddSshKeyRequest) GetBitLength ¶

func (o *AddSshKeyRequest) GetBitLength() int32

GetBitLength returns the BitLength field value if set, zero value otherwise.

func (*AddSshKeyRequest) GetBitLengthOk ¶

func (o *AddSshKeyRequest) GetBitLengthOk() (*int32, bool)

GetBitLengthOk returns a tuple with the BitLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddSshKeyRequest) GetCreatedDate ¶

func (o *AddSshKeyRequest) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*AddSshKeyRequest) GetCreatedDateOk ¶

func (o *AddSshKeyRequest) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddSshKeyRequest) GetExpiryDays ¶

func (o *AddSshKeyRequest) GetExpiryDays() int32

GetExpiryDays returns the ExpiryDays field value if set, zero value otherwise.

func (*AddSshKeyRequest) GetExpiryDaysOk ¶

func (o *AddSshKeyRequest) GetExpiryDaysOk() (*int32, bool)

GetExpiryDaysOk returns a tuple with the ExpiryDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddSshKeyRequest) GetId ¶

func (o *AddSshKeyRequest) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*AddSshKeyRequest) GetIdOk ¶

func (o *AddSshKeyRequest) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddSshKeyRequest) GetLabel ¶

func (o *AddSshKeyRequest) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*AddSshKeyRequest) GetLabelOk ¶

func (o *AddSshKeyRequest) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddSshKeyRequest) GetLastAuthenticated ¶

func (o *AddSshKeyRequest) GetLastAuthenticated() string

GetLastAuthenticated returns the LastAuthenticated field value if set, zero value otherwise.

func (*AddSshKeyRequest) GetLastAuthenticatedOk ¶

func (o *AddSshKeyRequest) GetLastAuthenticatedOk() (*string, bool)

GetLastAuthenticatedOk returns a tuple with the LastAuthenticated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddSshKeyRequest) GetText ¶

func (o *AddSshKeyRequest) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*AddSshKeyRequest) GetTextOk ¶

func (o *AddSshKeyRequest) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AddSshKeyRequest) HasAlgorithmType ¶

func (o *AddSshKeyRequest) HasAlgorithmType() bool

HasAlgorithmType returns a boolean if a field has been set.

func (*AddSshKeyRequest) HasBitLength ¶

func (o *AddSshKeyRequest) HasBitLength() bool

HasBitLength returns a boolean if a field has been set.

func (*AddSshKeyRequest) HasCreatedDate ¶

func (o *AddSshKeyRequest) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*AddSshKeyRequest) HasExpiryDays ¶

func (o *AddSshKeyRequest) HasExpiryDays() bool

HasExpiryDays returns a boolean if a field has been set.

func (*AddSshKeyRequest) HasId ¶

func (o *AddSshKeyRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*AddSshKeyRequest) HasLabel ¶

func (o *AddSshKeyRequest) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*AddSshKeyRequest) HasLastAuthenticated ¶

func (o *AddSshKeyRequest) HasLastAuthenticated() bool

HasLastAuthenticated returns a boolean if a field has been set.

func (*AddSshKeyRequest) HasText ¶

func (o *AddSshKeyRequest) HasText() bool

HasText returns a boolean if a field has been set.

func (AddSshKeyRequest) MarshalJSON ¶

func (o AddSshKeyRequest) MarshalJSON() ([]byte, error)

func (*AddSshKeyRequest) SetAlgorithmType ¶

func (o *AddSshKeyRequest) SetAlgorithmType(v string)

SetAlgorithmType gets a reference to the given string and assigns it to the AlgorithmType field.

func (*AddSshKeyRequest) SetBitLength ¶

func (o *AddSshKeyRequest) SetBitLength(v int32)

SetBitLength gets a reference to the given int32 and assigns it to the BitLength field.

func (*AddSshKeyRequest) SetCreatedDate ¶

func (o *AddSshKeyRequest) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*AddSshKeyRequest) SetExpiryDays ¶

func (o *AddSshKeyRequest) SetExpiryDays(v int32)

SetExpiryDays gets a reference to the given int32 and assigns it to the ExpiryDays field.

func (*AddSshKeyRequest) SetId ¶

func (o *AddSshKeyRequest) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*AddSshKeyRequest) SetLabel ¶

func (o *AddSshKeyRequest) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*AddSshKeyRequest) SetLastAuthenticated ¶

func (o *AddSshKeyRequest) SetLastAuthenticated(v string)

SetLastAuthenticated gets a reference to the given string and assigns it to the LastAuthenticated field.

func (*AddSshKeyRequest) SetText ¶

func (o *AddSshKeyRequest) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (AddSshKeyRequest) ToMap ¶

func (o AddSshKeyRequest) ToMap() (map[string]interface{}, error)

type AdminPasswordUpdate ¶

type AdminPasswordUpdate struct {
	Name            *string `json:"name,omitempty"`
	Password        *string `json:"password,omitempty"`
	PasswordConfirm *string `json:"passwordConfirm,omitempty"`
}

AdminPasswordUpdate struct for AdminPasswordUpdate

func NewAdminPasswordUpdate ¶

func NewAdminPasswordUpdate() *AdminPasswordUpdate

NewAdminPasswordUpdate instantiates a new AdminPasswordUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAdminPasswordUpdateWithDefaults ¶

func NewAdminPasswordUpdateWithDefaults() *AdminPasswordUpdate

NewAdminPasswordUpdateWithDefaults instantiates a new AdminPasswordUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AdminPasswordUpdate) GetName ¶

func (o *AdminPasswordUpdate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*AdminPasswordUpdate) GetNameOk ¶

func (o *AdminPasswordUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AdminPasswordUpdate) GetPassword ¶

func (o *AdminPasswordUpdate) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*AdminPasswordUpdate) GetPasswordConfirm ¶

func (o *AdminPasswordUpdate) GetPasswordConfirm() string

GetPasswordConfirm returns the PasswordConfirm field value if set, zero value otherwise.

func (*AdminPasswordUpdate) GetPasswordConfirmOk ¶

func (o *AdminPasswordUpdate) GetPasswordConfirmOk() (*string, bool)

GetPasswordConfirmOk returns a tuple with the PasswordConfirm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AdminPasswordUpdate) GetPasswordOk ¶

func (o *AdminPasswordUpdate) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AdminPasswordUpdate) HasName ¶

func (o *AdminPasswordUpdate) HasName() bool

HasName returns a boolean if a field has been set.

func (*AdminPasswordUpdate) HasPassword ¶

func (o *AdminPasswordUpdate) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*AdminPasswordUpdate) HasPasswordConfirm ¶

func (o *AdminPasswordUpdate) HasPasswordConfirm() bool

HasPasswordConfirm returns a boolean if a field has been set.

func (AdminPasswordUpdate) MarshalJSON ¶

func (o AdminPasswordUpdate) MarshalJSON() ([]byte, error)

func (*AdminPasswordUpdate) SetName ¶

func (o *AdminPasswordUpdate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*AdminPasswordUpdate) SetPassword ¶

func (o *AdminPasswordUpdate) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*AdminPasswordUpdate) SetPasswordConfirm ¶

func (o *AdminPasswordUpdate) SetPasswordConfirm(v string)

SetPasswordConfirm gets a reference to the given string and assigns it to the PasswordConfirm field.

func (AdminPasswordUpdate) ToMap ¶

func (o AdminPasswordUpdate) ToMap() (map[string]interface{}, error)

type ApplicationUser ¶

type ApplicationUser struct {
	Id           *int32  `json:"id,omitempty"`
	Type         *string `json:"type,omitempty"`
	DisplayName  *string `json:"displayName,omitempty"`
	Slug         *string `json:"slug,omitempty"`
	Active       *bool   `json:"active,omitempty"`
	Name         *string `json:"name,omitempty"`
	EmailAddress *string `json:"emailAddress,omitempty"`
}

ApplicationUser struct for ApplicationUser

func NewApplicationUser ¶

func NewApplicationUser() *ApplicationUser

NewApplicationUser instantiates a new ApplicationUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewApplicationUserWithDefaults ¶

func NewApplicationUserWithDefaults() *ApplicationUser

NewApplicationUserWithDefaults instantiates a new ApplicationUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ApplicationUser) GetActive ¶

func (o *ApplicationUser) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*ApplicationUser) GetActiveOk ¶

func (o *ApplicationUser) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApplicationUser) GetDisplayName ¶

func (o *ApplicationUser) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ApplicationUser) GetDisplayNameOk ¶

func (o *ApplicationUser) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApplicationUser) GetEmailAddress ¶

func (o *ApplicationUser) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*ApplicationUser) GetEmailAddressOk ¶

func (o *ApplicationUser) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApplicationUser) GetId ¶

func (o *ApplicationUser) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ApplicationUser) GetIdOk ¶

func (o *ApplicationUser) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApplicationUser) GetName ¶

func (o *ApplicationUser) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ApplicationUser) GetNameOk ¶

func (o *ApplicationUser) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApplicationUser) GetSlug ¶

func (o *ApplicationUser) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*ApplicationUser) GetSlugOk ¶

func (o *ApplicationUser) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApplicationUser) GetType ¶

func (o *ApplicationUser) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ApplicationUser) GetTypeOk ¶

func (o *ApplicationUser) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApplicationUser) HasActive ¶

func (o *ApplicationUser) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*ApplicationUser) HasDisplayName ¶

func (o *ApplicationUser) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ApplicationUser) HasEmailAddress ¶

func (o *ApplicationUser) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*ApplicationUser) HasId ¶

func (o *ApplicationUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*ApplicationUser) HasName ¶

func (o *ApplicationUser) HasName() bool

HasName returns a boolean if a field has been set.

func (*ApplicationUser) HasSlug ¶

func (o *ApplicationUser) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*ApplicationUser) HasType ¶

func (o *ApplicationUser) HasType() bool

HasType returns a boolean if a field has been set.

func (ApplicationUser) MarshalJSON ¶

func (o ApplicationUser) MarshalJSON() ([]byte, error)

func (*ApplicationUser) SetActive ¶

func (o *ApplicationUser) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*ApplicationUser) SetDisplayName ¶

func (o *ApplicationUser) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ApplicationUser) SetEmailAddress ¶

func (o *ApplicationUser) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*ApplicationUser) SetId ¶

func (o *ApplicationUser) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ApplicationUser) SetName ¶

func (o *ApplicationUser) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ApplicationUser) SetSlug ¶

func (o *ApplicationUser) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*ApplicationUser) SetType ¶

func (o *ApplicationUser) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ApplicationUser) ToMap ¶

func (o ApplicationUser) ToMap() (map[string]interface{}, error)

type AuthenticationAPIAddForProjectRequest ¶

type AuthenticationAPIAddForProjectRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIAddForProjectRequest) Execute ¶

func (AuthenticationAPIAddForProjectRequest) RestSshAccessKey ¶

type AuthenticationAPIAddForRepositoryRequest ¶

type AuthenticationAPIAddForRepositoryRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIAddForRepositoryRequest) Execute ¶

func (AuthenticationAPIAddForRepositoryRequest) RestSshAccessKey ¶

type AuthenticationAPIAddSshKeyRequest ¶

type AuthenticationAPIAddSshKeyRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIAddSshKeyRequest) AddSshKeyRequest ¶

func (AuthenticationAPIAddSshKeyRequest) Execute ¶

func (AuthenticationAPIAddSshKeyRequest) User ¶

the username of the user to add the SSH key for. If no username is specified, the SSH key will be added for the current authenticated user.

type AuthenticationAPICreateAccessToken1Request ¶

type AuthenticationAPICreateAccessToken1Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPICreateAccessToken1Request) Execute ¶

func (AuthenticationAPICreateAccessToken1Request) RestAccessTokenRequest ¶

The request containing the details of the access token to create.

type AuthenticationAPICreateAccessToken2Request ¶

type AuthenticationAPICreateAccessToken2Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPICreateAccessToken2Request) Execute ¶

func (AuthenticationAPICreateAccessToken2Request) RestAccessTokenRequest ¶

The request containing the details of the access token to create.

type AuthenticationAPICreateAccessToken3Request ¶

type AuthenticationAPICreateAccessToken3Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPICreateAccessToken3Request) Execute ¶

func (AuthenticationAPICreateAccessToken3Request) RestAccessTokenRequest ¶

The request containing the details of the access token to create.

type AuthenticationAPIDeleteById1Request ¶

type AuthenticationAPIDeleteById1Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIDeleteById1Request) Execute ¶

type AuthenticationAPIDeleteById2Request ¶

type AuthenticationAPIDeleteById2Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIDeleteById2Request) Execute ¶

type AuthenticationAPIDeleteByIdRequest ¶

type AuthenticationAPIDeleteByIdRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIDeleteByIdRequest) Execute ¶

type AuthenticationAPIDeleteSshKeyRequest ¶

type AuthenticationAPIDeleteSshKeyRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIDeleteSshKeyRequest) Execute ¶

type AuthenticationAPIDeleteSshKeysRequest ¶

type AuthenticationAPIDeleteSshKeysRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIDeleteSshKeysRequest) Execute ¶

func (AuthenticationAPIDeleteSshKeysRequest) User ¶

func (AuthenticationAPIDeleteSshKeysRequest) UserName ¶

the username of the user to delete the keys for. If no username is specified, the SSH keys will be deleted for the current authenticated user.

type AuthenticationAPIGetAllAccessTokens1Request ¶

type AuthenticationAPIGetAllAccessTokens1Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetAllAccessTokens1Request) Execute ¶

func (AuthenticationAPIGetAllAccessTokens1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (AuthenticationAPIGetAllAccessTokens1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type AuthenticationAPIGetAllAccessTokens2Request ¶

type AuthenticationAPIGetAllAccessTokens2Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetAllAccessTokens2Request) Execute ¶

func (AuthenticationAPIGetAllAccessTokens2Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (AuthenticationAPIGetAllAccessTokens2Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type AuthenticationAPIGetAllAccessTokensRequest ¶

type AuthenticationAPIGetAllAccessTokensRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetAllAccessTokensRequest) Execute ¶

func (AuthenticationAPIGetAllAccessTokensRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (AuthenticationAPIGetAllAccessTokensRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type AuthenticationAPIGetById1Request ¶

type AuthenticationAPIGetById1Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetById1Request) Execute ¶

type AuthenticationAPIGetById2Request ¶

type AuthenticationAPIGetById2Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetById2Request) Execute ¶

type AuthenticationAPIGetByIdRequest ¶

type AuthenticationAPIGetByIdRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetByIdRequest) Execute ¶

type AuthenticationAPIGetForProjectRequest ¶

type AuthenticationAPIGetForProjectRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetForProjectRequest) Execute ¶

type AuthenticationAPIGetForProjectsRequest ¶

type AuthenticationAPIGetForProjectsRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetForProjectsRequest) Execute ¶

type AuthenticationAPIGetForRepositoriesRequest ¶

type AuthenticationAPIGetForRepositoriesRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetForRepositoriesRequest) Execute ¶

func (AuthenticationAPIGetForRepositoriesRequest) WithRestrictions ¶

Include the readOnly field. The `readOnly` field is contextual for the user making the request. `readOnly` returns true if there is a restriction and the user does not have`PROJECT_ADMIN` access for the repository the key is associated with.

type AuthenticationAPIGetForRepository1Request ¶

type AuthenticationAPIGetForRepository1Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetForRepository1Request) Execute ¶

type AuthenticationAPIGetForRepositoryRequest ¶

type AuthenticationAPIGetForRepositoryRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetForRepositoryRequest) Effective ¶

Controls whether SSH access keys configured at the project level should be included in the results or not. When set to <code>true</code> all keys that have <em>access</em> to the repository (including project level keys) are included in the results. When set to <code>false</code>, only access keys configured for the specified <code>repository</code> are considered. Default is <code>false</code>.

func (AuthenticationAPIGetForRepositoryRequest) Execute ¶

func (AuthenticationAPIGetForRepositoryRequest) Filter ¶

If specified only SSH access keys with a label prefixed with the supplied string will be returned

func (AuthenticationAPIGetForRepositoryRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (AuthenticationAPIGetForRepositoryRequest) MinimumPermission ¶

If specified only SSH access keys with at least the supplied permission will be returned. Default is <code>Permission.REPO_READ</code>.

func (AuthenticationAPIGetForRepositoryRequest) Permission ¶

func (AuthenticationAPIGetForRepositoryRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type AuthenticationAPIGetSshKeyRequest ¶

type AuthenticationAPIGetSshKeyRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetSshKeyRequest) Execute ¶

type AuthenticationAPIGetSshKeysForProjectRequest ¶

type AuthenticationAPIGetSshKeysForProjectRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetSshKeysForProjectRequest) Execute ¶

func (AuthenticationAPIGetSshKeysForProjectRequest) Filter ¶

If specified only SSH access keys with a label prefixed with the supplied string will be returned.

func (AuthenticationAPIGetSshKeysForProjectRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (AuthenticationAPIGetSshKeysForProjectRequest) Permission ¶

If specified only SSH access keys with at least the supplied permission will be returned Default is PROJECT_READ.

func (AuthenticationAPIGetSshKeysForProjectRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type AuthenticationAPIGetSshKeysRequest ¶

type AuthenticationAPIGetSshKeysRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIGetSshKeysRequest) Execute ¶

func (AuthenticationAPIGetSshKeysRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (AuthenticationAPIGetSshKeysRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (AuthenticationAPIGetSshKeysRequest) User ¶

func (AuthenticationAPIGetSshKeysRequest) UserName ¶

the username of the user to retrieve the keys for. If no username is specified, the SSH keys will be retrieved for the current authenticated user.

type AuthenticationAPIRevokeForProjectRequest ¶

type AuthenticationAPIRevokeForProjectRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIRevokeForProjectRequest) Execute ¶

type AuthenticationAPIRevokeForRepositoryRequest ¶

type AuthenticationAPIRevokeForRepositoryRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIRevokeForRepositoryRequest) Execute ¶

type AuthenticationAPIRevokeManyRequest ¶

type AuthenticationAPIRevokeManyRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIRevokeManyRequest) Execute ¶

func (AuthenticationAPIRevokeManyRequest) RevokeManyRequest ¶

type AuthenticationAPIService ¶

type AuthenticationAPIService service

AuthenticationAPIService AuthenticationAPI service

func (*AuthenticationAPIService) AddForProject ¶

AddForProject Add project SSH key

Register a new SSH key and grants access to the project identified in the URL.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return AuthenticationAPIAddForProjectRequest

func (*AuthenticationAPIService) AddForProjectExecute ¶

Execute executes the request

@return RestSshAccessKey

func (*AuthenticationAPIService) AddForRepository ¶

func (a *AuthenticationAPIService) AddForRepository(ctx context.Context, projectKey string, repositorySlug string) AuthenticationAPIAddForRepositoryRequest

AddForRepository Add repository SSH key

Register a new SSH key and grants access to the repository identified in the URL.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param repositorySlug The repository slug
@return AuthenticationAPIAddForRepositoryRequest

func (*AuthenticationAPIService) AddForRepositoryExecute ¶

Execute executes the request

@return RestSshAccessKey

func (*AuthenticationAPIService) AddSshKey ¶

AddSshKey Add SSH key for user

Add a new SSH key to a supplied user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return AuthenticationAPIAddSshKeyRequest

func (*AuthenticationAPIService) AddSshKeyExecute ¶

Execute executes the request

@return RestSshKey

func (*AuthenticationAPIService) CreateAccessToken1 ¶

CreateAccessToken1 Create project HTTP token

Create an access token for the project according to the given request.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return AuthenticationAPICreateAccessToken1Request

func (*AuthenticationAPIService) CreateAccessToken1Execute ¶

Execute executes the request

@return RestRawAccessToken

func (*AuthenticationAPIService) CreateAccessToken2 ¶

func (a *AuthenticationAPIService) CreateAccessToken2(ctx context.Context, projectKey string, repositorySlug string) AuthenticationAPICreateAccessToken2Request

CreateAccessToken2 Create repository HTTP token

Create an access token for the repository according to the given request.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return AuthenticationAPICreateAccessToken2Request

func (*AuthenticationAPIService) CreateAccessToken2Execute ¶

Execute executes the request

@return RestRawAccessToken

func (*AuthenticationAPIService) CreateAccessToken3 ¶

CreateAccessToken3 Create personal HTTP token

Create an access token for the user according to the given request.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug.
@return AuthenticationAPICreateAccessToken3Request

func (*AuthenticationAPIService) CreateAccessToken3Execute ¶

Execute executes the request

@return RestRawAccessToken

func (*AuthenticationAPIService) DeleteById ¶

DeleteById Delete a HTTP token

Delete the access token identified by the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param tokenId The token id.
@return AuthenticationAPIDeleteByIdRequest

func (*AuthenticationAPIService) DeleteById1 ¶

func (a *AuthenticationAPIService) DeleteById1(ctx context.Context, projectKey string, tokenId string, repositorySlug string) AuthenticationAPIDeleteById1Request

DeleteById1 Delete a HTTP token

Delete the access token identified by the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param tokenId The token id.
@param repositorySlug The repository slug.
@return AuthenticationAPIDeleteById1Request

func (*AuthenticationAPIService) DeleteById1Execute ¶

Execute executes the request

func (*AuthenticationAPIService) DeleteById2 ¶

DeleteById2 Delete a HTTP token

Delete the access token identified by the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tokenId The token id.
@param userSlug The user slug.
@return AuthenticationAPIDeleteById2Request

func (*AuthenticationAPIService) DeleteById2Execute ¶

Execute executes the request

func (*AuthenticationAPIService) DeleteByIdExecute ¶

Execute executes the request

func (*AuthenticationAPIService) DeleteSshKey ¶

DeleteSshKey Remove SSH key

Delete an SSH key.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param keyId the id of the key to delete.
@return AuthenticationAPIDeleteSshKeyRequest

func (*AuthenticationAPIService) DeleteSshKeyExecute ¶

Execute executes the request

func (*AuthenticationAPIService) DeleteSshKeys ¶

DeleteSshKeys Delete all user SSH key

Delete all SSH keys for a supplied user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return AuthenticationAPIDeleteSshKeysRequest

func (*AuthenticationAPIService) DeleteSshKeysExecute ¶

Execute executes the request

func (*AuthenticationAPIService) GetAllAccessTokens ¶

GetAllAccessTokens Get project HTTP tokens

Get all access tokens associated with the given project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return AuthenticationAPIGetAllAccessTokensRequest

func (*AuthenticationAPIService) GetAllAccessTokens1 ¶

func (a *AuthenticationAPIService) GetAllAccessTokens1(ctx context.Context, projectKey string, repositorySlug string) AuthenticationAPIGetAllAccessTokens1Request

GetAllAccessTokens1 Get repository HTTP tokens

Get all access tokens associated with the given repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return AuthenticationAPIGetAllAccessTokens1Request

func (*AuthenticationAPIService) GetAllAccessTokens1Execute ¶

Execute executes the request

@return GetAllAccessTokens200Response

func (*AuthenticationAPIService) GetAllAccessTokens2 ¶

GetAllAccessTokens2 Get personal HTTP tokens

Get all access tokens associated with the given user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug.
@return AuthenticationAPIGetAllAccessTokens2Request

func (*AuthenticationAPIService) GetAllAccessTokens2Execute ¶

Execute executes the request

@return GetAllAccessTokens200Response

func (*AuthenticationAPIService) GetAllAccessTokensExecute ¶

Execute executes the request

@return GetAllAccessTokens200Response

func (*AuthenticationAPIService) GetById ¶

GetById Get HTTP token by ID

Get the access token identified by the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param tokenId The token id.
@return AuthenticationAPIGetByIdRequest

func (*AuthenticationAPIService) GetById1 ¶

func (a *AuthenticationAPIService) GetById1(ctx context.Context, projectKey string, tokenId string, repositorySlug string) AuthenticationAPIGetById1Request

GetById1 Get HTTP token by ID

Get the access token identified by the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param tokenId The token id.
@param repositorySlug The repository slug.
@return AuthenticationAPIGetById1Request

func (*AuthenticationAPIService) GetById1Execute ¶

Execute executes the request

@return RestAccessToken

func (*AuthenticationAPIService) GetById2 ¶

GetById2 Get HTTP token by ID

Get the access token identified by the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tokenId The token id.
@param userSlug The user slug.
@return AuthenticationAPIGetById2Request

func (*AuthenticationAPIService) GetById2Execute ¶

Execute executes the request

@return RestAccessToken

func (*AuthenticationAPIService) GetByIdExecute ¶

Execute executes the request

@return RestAccessToken

func (*AuthenticationAPIService) GetForProject ¶

GetForProject Get project SSH key

Retrieves the access key for the SSH key with id <code>keyId</code> on the project identified in the URL.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param keyId The key id
@return AuthenticationAPIGetForProjectRequest

func (*AuthenticationAPIService) GetForProjectExecute ¶

Execute executes the request

@return RestSshAccessKey

func (*AuthenticationAPIService) GetForProjects ¶

GetForProjects Get project SSH keys

Retrieves all project-related access keys for the SSH key with id <code>keyId</code>. If the current user is not an admin any of the projects the key provides access to, none are returned.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param keyId
@return AuthenticationAPIGetForProjectsRequest

func (*AuthenticationAPIService) GetForProjectsExecute ¶

Execute executes the request

func (*AuthenticationAPIService) GetForRepositories ¶

GetForRepositories Get repository SSH key

Retrieves all repository-related access keys for the SSH key with id <code>keyId</code>. If the current user is not an admin of any of the projects the key provides access to, none are returned.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param keyId The key id
@return AuthenticationAPIGetForRepositoriesRequest

func (*AuthenticationAPIService) GetForRepositoriesExecute ¶

Execute executes the request

func (*AuthenticationAPIService) GetForRepository ¶

func (a *AuthenticationAPIService) GetForRepository(ctx context.Context, projectKey string, repositorySlug string) AuthenticationAPIGetForRepositoryRequest

GetForRepository Get repository SSH keys

Retrieves the access keys for the repository identified in the URL.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return AuthenticationAPIGetForRepositoryRequest

func (*AuthenticationAPIService) GetForRepository1 ¶

func (a *AuthenticationAPIService) GetForRepository1(ctx context.Context, projectKey string, keyId string, repositorySlug string) AuthenticationAPIGetForRepository1Request

GetForRepository1 Get repository SSH key

Retrieves the access key for the SSH key with id <code>keyId</code> on the repository identified in the URL.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param keyId The key id
@param repositorySlug The repository slug
@return AuthenticationAPIGetForRepository1Request

func (*AuthenticationAPIService) GetForRepository1Execute ¶

Execute executes the request

@return RestSshAccessKey

func (*AuthenticationAPIService) GetForRepositoryExecute ¶

Execute executes the request

@return GetSshKeysForProject200Response

func (*AuthenticationAPIService) GetSshKey ¶

GetSshKey Get SSH key for user by keyId

Retrieve an SSH key by keyId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param keyId the ID of the key to retrieve.
@return AuthenticationAPIGetSshKeyRequest

func (*AuthenticationAPIService) GetSshKeyExecute ¶

Execute executes the request

@return RestSshKey

func (*AuthenticationAPIService) GetSshKeys ¶

GetSshKeys Get SSH keys for user

Retrieve a page of SSH keys.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return AuthenticationAPIGetSshKeysRequest

func (*AuthenticationAPIService) GetSshKeysExecute ¶

Execute executes the request

@return GetSshKeys200Response

func (*AuthenticationAPIService) GetSshKeysForProject ¶

GetSshKeysForProject Get SSH key

Retrieves the access keys for the project identified in the URL.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return AuthenticationAPIGetSshKeysForProjectRequest

func (*AuthenticationAPIService) GetSshKeysForProjectExecute ¶

Execute executes the request

@return GetSshKeysForProject200Response

func (*AuthenticationAPIService) RevokeForProject ¶

RevokeForProject Revoke project SSH key

Remove an existing access key for the project identified in the URL. If the same SSH key is used as an access key for multiple projects or repositories, only the access to the project identified in the URL will be revoked.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param keyId The key id
@return AuthenticationAPIRevokeForProjectRequest

func (*AuthenticationAPIService) RevokeForProjectExecute ¶

Execute executes the request

func (*AuthenticationAPIService) RevokeForRepository ¶

func (a *AuthenticationAPIService) RevokeForRepository(ctx context.Context, projectKey string, keyId string, repositorySlug string) AuthenticationAPIRevokeForRepositoryRequest

RevokeForRepository Revoke repository SSH key

Remove an existing access key for the repository identified in the URL. If the same SSH key is used as an access key for multiple projects or repositories, only the access to the repository identified in the URL will be revoked.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param keyId The key id
@param repositorySlug The repository slug
@return AuthenticationAPIRevokeForRepositoryRequest

func (*AuthenticationAPIService) RevokeForRepositoryExecute ¶

Execute executes the request

func (*AuthenticationAPIService) RevokeMany ¶

RevokeMany Revoke project SSH key

Remove an existing access key for the projects and repositories in the submitted entity. If the same SSH key is used as an access key for multiple projects or repositories not supplied, only the access to the projects or repositories identified will be revoked.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param keyId The identifier of the SSH key
@return AuthenticationAPIRevokeManyRequest

func (*AuthenticationAPIService) RevokeManyExecute ¶

Execute executes the request

func (*AuthenticationAPIService) SshSettings ¶

SshSettings Get SSH settings

Gets the SSH settings from the upstream.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return AuthenticationAPISshSettingsRequest

func (*AuthenticationAPIService) SshSettingsExecute ¶

Execute executes the request

@return RestSshSettings

func (*AuthenticationAPIService) UpdateAccessToken ¶

func (a *AuthenticationAPIService) UpdateAccessToken(ctx context.Context, projectKey string, tokenId string) AuthenticationAPIUpdateAccessTokenRequest

UpdateAccessToken Update HTTP token

Modify an access token according to the given request. Any fields not specified will not be altered.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param tokenId The token id.
@return AuthenticationAPIUpdateAccessTokenRequest

func (*AuthenticationAPIService) UpdateAccessToken1 ¶

func (a *AuthenticationAPIService) UpdateAccessToken1(ctx context.Context, projectKey string, tokenId string, repositorySlug string) AuthenticationAPIUpdateAccessToken1Request

UpdateAccessToken1 Update HTTP token

Modify an access token according to the given request. Any fields not specified will not be altered.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param tokenId The token id.
@param repositorySlug The repository slug.
@return AuthenticationAPIUpdateAccessToken1Request

func (*AuthenticationAPIService) UpdateAccessToken1Execute ¶

Execute executes the request

@return RestAccessToken

func (*AuthenticationAPIService) UpdateAccessToken2 ¶

UpdateAccessToken2 Update HTTP token

Modify an access token according to the given request. Any fields not specified will not be altered.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tokenId The token id.
@param userSlug The user slug.
@return AuthenticationAPIUpdateAccessToken2Request

func (*AuthenticationAPIService) UpdateAccessToken2Execute ¶

Execute executes the request

@return RestAccessToken

func (*AuthenticationAPIService) UpdateAccessTokenExecute ¶

Execute executes the request

@return RestAccessToken

func (*AuthenticationAPIService) UpdatePermission ¶

func (a *AuthenticationAPIService) UpdatePermission(ctx context.Context, projectKey string, keyId string, permission string) AuthenticationAPIUpdatePermissionRequest

UpdatePermission Update project SSH key permission

Updates the permission granted to the specified SSH key to the project identified in the URL.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param keyId The newly created access key
@param permission The new permission to be granted to the SSH key
@return AuthenticationAPIUpdatePermissionRequest

func (*AuthenticationAPIService) UpdatePermission1 ¶

func (a *AuthenticationAPIService) UpdatePermission1(ctx context.Context, projectKey string, keyId string, permission string, repositorySlug string) AuthenticationAPIUpdatePermission1Request

UpdatePermission1 Update repository SSH key permission

Updates the permission granted to the specified SSH key to the repository identified in the URL.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param keyId The newly created access key
@param permission The new permission to be granted to the SSH key
@param repositorySlug The repository slug
@return AuthenticationAPIUpdatePermission1Request

func (*AuthenticationAPIService) UpdatePermission1Execute ¶

Execute executes the request

@return RestSshAccessKey

func (*AuthenticationAPIService) UpdatePermissionExecute ¶

Execute executes the request

@return RestSshAccessKey

type AuthenticationAPISshSettingsRequest ¶

type AuthenticationAPISshSettingsRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPISshSettingsRequest) Execute ¶

type AuthenticationAPIUpdateAccessToken1Request ¶

type AuthenticationAPIUpdateAccessToken1Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIUpdateAccessToken1Request) Execute ¶

func (AuthenticationAPIUpdateAccessToken1Request) RestAccessTokenRequest ¶

The request containing the details of the access token to modify

type AuthenticationAPIUpdateAccessToken2Request ¶

type AuthenticationAPIUpdateAccessToken2Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIUpdateAccessToken2Request) Execute ¶

func (AuthenticationAPIUpdateAccessToken2Request) RestAccessTokenRequest ¶

The request containing the details of the access token to modify

type AuthenticationAPIUpdateAccessTokenRequest ¶

type AuthenticationAPIUpdateAccessTokenRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIUpdateAccessTokenRequest) Execute ¶

func (AuthenticationAPIUpdateAccessTokenRequest) RestAccessTokenRequest ¶

The request containing the details of the access token to modify

type AuthenticationAPIUpdatePermission1Request ¶

type AuthenticationAPIUpdatePermission1Request struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIUpdatePermission1Request) Execute ¶

type AuthenticationAPIUpdatePermissionRequest ¶

type AuthenticationAPIUpdatePermissionRequest struct {
	ApiService *AuthenticationAPIService
	// contains filtered or unexported fields
}

func (AuthenticationAPIUpdatePermissionRequest) Execute ¶

type BasicAuth ¶

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type BuildsAndDeploymentsAPIAddAnnotationsRequest ¶

type BuildsAndDeploymentsAPIAddAnnotationsRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIAddAnnotationsRequest) Execute ¶

func (BuildsAndDeploymentsAPIAddAnnotationsRequest) RestBulkAddInsightAnnotationRequest ¶

func (r BuildsAndDeploymentsAPIAddAnnotationsRequest) RestBulkAddInsightAnnotationRequest(restBulkAddInsightAnnotationRequest RestBulkAddInsightAnnotationRequest) BuildsAndDeploymentsAPIAddAnnotationsRequest

The annotations to add.

type BuildsAndDeploymentsAPIAddRequest ¶

type BuildsAndDeploymentsAPIAddRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIAddRequest) Execute ¶

func (BuildsAndDeploymentsAPIAddRequest) RestBuildStatusSetRequest ¶

func (r BuildsAndDeploymentsAPIAddRequest) RestBuildStatusSetRequest(restBuildStatusSetRequest RestBuildStatusSetRequest) BuildsAndDeploymentsAPIAddRequest

The contents of the build status request are: These fields are **required**: - **key**: The string referring to this branch plan/job - **state**: The build status state, one of: \&quot;SUCCESSFUL\&quot;, \&quot;FAILED\&quot;, \&quot;INPROGRESS\&quot; - **url**: URL referring to the build result page in the CI tool. These fields are optional: - **buildNumber** (optional): A unique identifier for this particular run of a plan&lt; - **dateAdded** (optional): milliseconds since epoch. If not provided current date is used. - **description** (optional): Describes the build result - **duration** (optional): Duration of a completed build in milliseconds. - **name** (optional): A short string that describes the build plan - **parent** (optional): The identifier for the plan or job that ran the branch plan that produced this build status. - **ref** (optional): The fully qualified git reference e.g. refs/heads/master. - **testResults** (optional): A summary of the passed, failed and skipped tests.

type BuildsAndDeploymentsAPICreateOrUpdateDeploymentRequest ¶

type BuildsAndDeploymentsAPICreateOrUpdateDeploymentRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPICreateOrUpdateDeploymentRequest) Execute ¶

func (BuildsAndDeploymentsAPICreateOrUpdateDeploymentRequest) RestDeploymentSetRequest ¶

the details of the deployment to create, as detailed by the request body

type BuildsAndDeploymentsAPICreateRequiredBuildsMergeCheckRequest ¶

type BuildsAndDeploymentsAPICreateRequiredBuildsMergeCheckRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPICreateRequiredBuildsMergeCheckRequest) Execute ¶

func (BuildsAndDeploymentsAPICreateRequiredBuildsMergeCheckRequest) RestRequiredBuildConditionSetRequest ¶

The request specifying the required build parent keys, ref matcher and exemption matcher

type BuildsAndDeploymentsAPIDelete1Request ¶

type BuildsAndDeploymentsAPIDelete1Request struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIDelete1Request) DeploymentSequenceNumber ¶

func (r BuildsAndDeploymentsAPIDelete1Request) DeploymentSequenceNumber(deploymentSequenceNumber string) BuildsAndDeploymentsAPIDelete1Request

the sequence number of the deployment, as detailed by the query parameter

func (BuildsAndDeploymentsAPIDelete1Request) EnvironmentKey ¶

the key of the environment, as detailed by the query parameter

func (BuildsAndDeploymentsAPIDelete1Request) Execute ¶

func (BuildsAndDeploymentsAPIDelete1Request) Key ¶

the key of the deployment, as detailed by the query parameter

type BuildsAndDeploymentsAPIDeleteACodeInsightsReportRequest ¶

type BuildsAndDeploymentsAPIDeleteACodeInsightsReportRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIDeleteACodeInsightsReportRequest) Execute ¶

type BuildsAndDeploymentsAPIDeleteAnnotationsRequest ¶

type BuildsAndDeploymentsAPIDeleteAnnotationsRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIDeleteAnnotationsRequest) Execute ¶

func (BuildsAndDeploymentsAPIDeleteAnnotationsRequest) ExternalId ¶

The external IDs for the annotations that are to be deleted. Can be specified more than once to delete by more than one external ID, or can be unspecified to delete all annotations.

type BuildsAndDeploymentsAPIDeleteRequest ¶

type BuildsAndDeploymentsAPIDeleteRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIDeleteRequest) Execute ¶

func (BuildsAndDeploymentsAPIDeleteRequest) Key ¶

the key of the build status

type BuildsAndDeploymentsAPIDeleteRequiredBuildsMergeCheckRequest ¶

type BuildsAndDeploymentsAPIDeleteRequiredBuildsMergeCheckRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIDeleteRequiredBuildsMergeCheckRequest) Execute ¶

type BuildsAndDeploymentsAPIGet1Request ¶

type BuildsAndDeploymentsAPIGet1Request struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIGet1Request) DeploymentSequenceNumber ¶

func (r BuildsAndDeploymentsAPIGet1Request) DeploymentSequenceNumber(deploymentSequenceNumber string) BuildsAndDeploymentsAPIGet1Request

the sequence number of the deployment, as detailed by the query param

func (BuildsAndDeploymentsAPIGet1Request) EnvironmentKey ¶

the key of the environment, as detailed by the query parameter

func (BuildsAndDeploymentsAPIGet1Request) Execute ¶

func (BuildsAndDeploymentsAPIGet1Request) Key ¶

the key of the deployment, as detailed by the query parameter

type BuildsAndDeploymentsAPIGetACodeInsightsReportRequest ¶

type BuildsAndDeploymentsAPIGetACodeInsightsReportRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIGetACodeInsightsReportRequest) Execute ¶

type BuildsAndDeploymentsAPIGetAnnotations1Request ¶

type BuildsAndDeploymentsAPIGetAnnotations1Request struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIGetAnnotations1Request) Execute ¶

func (BuildsAndDeploymentsAPIGetAnnotations1Request) ExternalId ¶

Return only annotations that have one of the provided external IDs. Can be specified more than once to filter by more than one external ID.

func (BuildsAndDeploymentsAPIGetAnnotations1Request) Key ¶

Return only annotations that belong to one of the provided report keys. Can be specified more than once to filter by more than one report

func (BuildsAndDeploymentsAPIGetAnnotations1Request) Path ¶

Return only annotations that appear on one of the provided paths. Can be specified more than once to filter by more than one path.

func (BuildsAndDeploymentsAPIGetAnnotations1Request) Severity ¶

Return only annotations that have one of the given severities. Can be specified more than once to filter by more than one severity. Valid severities are &lt;code&gt;LOW&lt;/code&gt;, &lt;code&gt;MEDIUM&lt;/code&gt; and &lt;code&gt;HIGH&lt;/code&gt;.

func (BuildsAndDeploymentsAPIGetAnnotations1Request) Type_ ¶

Return only annotations that have one of the given types. Can be specified more than once to filter by multiple types. Valid types are &lt;code&gt;BUG&lt;/code&gt;, &lt;code&gt;CODE_SMELL&lt;/code&gt;, and &lt;code&gt;VULNERABILITY&lt;/code&gt;.

type BuildsAndDeploymentsAPIGetAnnotationsRequest ¶

type BuildsAndDeploymentsAPIGetAnnotationsRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIGetAnnotationsRequest) Execute ¶

type BuildsAndDeploymentsAPIGetBuildStatusStatsRequest ¶

type BuildsAndDeploymentsAPIGetBuildStatusStatsRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIGetBuildStatusStatsRequest) Execute ¶

func (BuildsAndDeploymentsAPIGetBuildStatusStatsRequest) IncludeUnique ¶

include a unique build result if there is either only one failed build, only one in-progress build or only one successful build

type BuildsAndDeploymentsAPIGetMultipleBuildStatusStatsRequest ¶

type BuildsAndDeploymentsAPIGetMultipleBuildStatusStatsRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIGetMultipleBuildStatusStatsRequest) Execute ¶

func (BuildsAndDeploymentsAPIGetMultipleBuildStatusStatsRequest) RequestBody ¶

full SHA1 of each commit

type BuildsAndDeploymentsAPIGetPageOfRequiredBuildsMergeChecksRequest ¶

type BuildsAndDeploymentsAPIGetPageOfRequiredBuildsMergeChecksRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIGetPageOfRequiredBuildsMergeChecksRequest) Execute ¶

func (BuildsAndDeploymentsAPIGetPageOfRequiredBuildsMergeChecksRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (BuildsAndDeploymentsAPIGetPageOfRequiredBuildsMergeChecksRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type BuildsAndDeploymentsAPIGetReportsRequest ¶

type BuildsAndDeploymentsAPIGetReportsRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIGetReportsRequest) Execute ¶

func (BuildsAndDeploymentsAPIGetReportsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (BuildsAndDeploymentsAPIGetReportsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type BuildsAndDeploymentsAPIGetRequest ¶

type BuildsAndDeploymentsAPIGetRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIGetRequest) Execute ¶

func (BuildsAndDeploymentsAPIGetRequest) Key ¶

the key of the build status

type BuildsAndDeploymentsAPIService ¶

type BuildsAndDeploymentsAPIService service

BuildsAndDeploymentsAPIService BuildsAndDeploymentsAPI service

func (*BuildsAndDeploymentsAPIService) Add ¶

func (a *BuildsAndDeploymentsAPIService) Add(ctx context.Context, projectKey string, commitId string, repositorySlug string) BuildsAndDeploymentsAPIAddRequest

Add Store a build status

Store a build status.

The authenticated user must have **REPO_READ** permission for the repository that this build status is for. The request can also be made with anonymous 2-legged OAuth.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit.
@param repositorySlug The repository slug.
@return BuildsAndDeploymentsAPIAddRequest

func (*BuildsAndDeploymentsAPIService) AddAnnotations ¶

func (a *BuildsAndDeploymentsAPIService) AddAnnotations(ctx context.Context, projectKey string, commitId string, repositorySlug string, key string) BuildsAndDeploymentsAPIAddAnnotationsRequest

AddAnnotations Add Code Insights annotations

Add annotations to the given report. The request should be a JSON object mapping the string "annotations" to an array of maps containing the annotation data, as described below. See also the example request.

A few things to note:- Annotations are an extension of a report, so a report must first exist in order to post annotations. Annotations are posted separately from the report, and can be posted in bulk using this endpoint. - Only the annotations that are on lines changed in the unified diff will be displayed. This means it is likely not all annotations posted will be displayed on the pull request It also means that if the user is viewing a side-by-side diff, commit diff or iterative review diff they will not be able to view the annotations. - A report cannot have more than 1000 annotations by default, however this property is congurable at an instance level. If the request would result in more than the maximum number of annotations being stored then the entire request is rejected and no new annotations are stored. - There is no de-duplication of annotations on Bitbucket so be sure that reruns of builds will first delete the report and annotations before creating them.

Annotation parameters ¶

|Parameter|Description|Required?|Restrictions|Type| |--- |--- |--- |--- |--- | |path|The path of the file on which this annotation should be placed. This is the path of the filerelative to the git repository. If no path is provided, then it will appear in the overview modalon all pull requests where the tip of the branch is the given commit, regardless of which files weremodified.|No||String| |line|The line number that the annotation should belong to. If no line number is provided, then it willdefault to 0 and in a pull request it will appear at the top of the file specified by the path field.|No|Non-negative integer|Integer| |message|The message to display to users|Yes|The maximum length accepted is 2000 characters, however the user interface may truncate this valuefor display purposes. We recommend that the message is short and succinct, with further detailsavailable to the user if needed on the page linked to by the the annotation link.|String| |severity|The severity of the annotation|Yes|One of: LOW, MEDIUM, HIGH|String| |link|An http or https URL representing the location of the annotation in the external tool|No||String| |type|The type of annotation posted|No|One of: VULNERABILITY, CODE_SMELL, BUG|String| |externalId|If the caller requires a link to get or modify this annotation, then an ID must be provided. It isnot used or required by Bitbucket, but only by the annotation creator for updating or deleting thisspecific annotation.|No|A string value shorter than 450 characters|String|

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit ID on which to record the annotation. This must be a full 40 character commit hash.
@param repositorySlug The repository slug.
@param key The key of the report to which this annotation belongs.
@return BuildsAndDeploymentsAPIAddAnnotationsRequest

func (*BuildsAndDeploymentsAPIService) AddAnnotationsExecute ¶

Execute executes the request

func (*BuildsAndDeploymentsAPIService) AddExecute ¶

Execute executes the request

func (*BuildsAndDeploymentsAPIService) CreateOrUpdateDeployment ¶

func (a *BuildsAndDeploymentsAPIService) CreateOrUpdateDeployment(ctx context.Context, projectKey string, commitId string, repositorySlug string) BuildsAndDeploymentsAPICreateOrUpdateDeploymentRequest

CreateOrUpdateDeployment Create or update a deployment

Create or update a deployment.

The authenticated user must have REPO_READ permission for the repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId the commitId that was deployed as indicated by the path
@param repositorySlug The repository slug
@return BuildsAndDeploymentsAPICreateOrUpdateDeploymentRequest

func (*BuildsAndDeploymentsAPIService) CreateOrUpdateDeploymentExecute ¶

Execute executes the request

@return RestDeployment

func (*BuildsAndDeploymentsAPIService) CreateRequiredBuildsMergeCheck ¶

func (a *BuildsAndDeploymentsAPIService) CreateRequiredBuildsMergeCheck(ctx context.Context, projectKey string, repositorySlug string) BuildsAndDeploymentsAPICreateRequiredBuildsMergeCheckRequest

CreateRequiredBuildsMergeCheck Create a required builds merge check

Create a required build merge check for the given repository.

The authenticated user must have **REPO_ADMIN** permission for the target repository to register a required build merge check.

The contents of the required build merge check request are:

These fields are **required**:

- **buildParentKeys**: A non-empty list of build parent keys that require green builds for this merge check to pass - **refMatcher.id**: The value to match refs against in the target branch - **refMatcher.type.id**: The type of ref matcher, one of: "ANY_REF", "BRANCH", "PATTERN", "MODEL_CATEGORY" or "MODEL_BRANCH"

These fields are optional:

- **exemptRefMatcher.id** The value to exempt refs in the source branch from this check - **exemptRefMatcher.type.id**: The type of exempt ref matcher, one of: "ANY_REF", "BRANCH", "PATTERN", "MODEL_CATEGORY" or "MODEL_BRANCH"

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project that the repository belongs to
@param repositorySlug The repository being used
@return BuildsAndDeploymentsAPICreateRequiredBuildsMergeCheckRequest

func (*BuildsAndDeploymentsAPIService) CreateRequiredBuildsMergeCheckExecute ¶

Execute executes the request

@return RestRequiredBuildCondition

func (*BuildsAndDeploymentsAPIService) Delete ¶

func (a *BuildsAndDeploymentsAPIService) Delete(ctx context.Context, projectKey string, commitId string, repositorySlug string) BuildsAndDeploymentsAPIDeleteRequest

Delete Delete a specific build status

Delete a specific build status.

The authenticated user must have **REPO_ADMIN** permission for the provided repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit.
@param repositorySlug The repository slug.
@return BuildsAndDeploymentsAPIDeleteRequest

func (*BuildsAndDeploymentsAPIService) Delete1 ¶

func (a *BuildsAndDeploymentsAPIService) Delete1(ctx context.Context, projectKey string, commitId string, repositorySlug string) BuildsAndDeploymentsAPIDelete1Request

Delete1 Delete a deployment

Delete the deployment matching the specified Repository, key, environmentKey and deploymentSequenceNumber.

The user must have REPO_ADMIN.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId the commitId that was deployed as indicated by the path
@param repositorySlug The repository slug
@return BuildsAndDeploymentsAPIDelete1Request

func (*BuildsAndDeploymentsAPIService) Delete1Execute ¶

Execute executes the request

func (*BuildsAndDeploymentsAPIService) DeleteACodeInsightsReport ¶

func (a *BuildsAndDeploymentsAPIService) DeleteACodeInsightsReport(ctx context.Context, projectKey string, commitId string, repositorySlug string, key string) BuildsAndDeploymentsAPIDeleteACodeInsightsReportRequest

DeleteACodeInsightsReport Delete a Code Insights report

Delete a report for the given commit. Also deletes any annotations associated with this report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit ID on which to record the annotation. This must be a full 40 character commit hash.
@param repositorySlug The repository slug.
@param key The key of the report to which this annotation belongs.
@return BuildsAndDeploymentsAPIDeleteACodeInsightsReportRequest

func (*BuildsAndDeploymentsAPIService) DeleteACodeInsightsReportExecute ¶

Execute executes the request

func (*BuildsAndDeploymentsAPIService) DeleteAnnotations ¶

func (a *BuildsAndDeploymentsAPIService) DeleteAnnotations(ctx context.Context, projectKey string, commitId string, repositorySlug string, key string) BuildsAndDeploymentsAPIDeleteAnnotationsRequest

DeleteAnnotations Delete Code Insights annotations

Delete annotations for a given report that match the given external IDs, or all annotations if no external IDs are provided.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit ID on which to record the annotation. This must be a full 40 character commit hash.
@param repositorySlug The repository slug.
@param key The key of the report to which this annotation belongs.
@return BuildsAndDeploymentsAPIDeleteAnnotationsRequest

func (*BuildsAndDeploymentsAPIService) DeleteAnnotationsExecute ¶

Execute executes the request

func (*BuildsAndDeploymentsAPIService) DeleteExecute ¶

Execute executes the request

func (*BuildsAndDeploymentsAPIService) DeleteRequiredBuildsMergeCheck ¶

func (a *BuildsAndDeploymentsAPIService) DeleteRequiredBuildsMergeCheck(ctx context.Context, projectKey string, id int64, repositorySlug string) BuildsAndDeploymentsAPIDeleteRequiredBuildsMergeCheckRequest

DeleteRequiredBuildsMergeCheck Delete a required builds merge check

Deletes a required build existing merge check, given it's ID.

The authenticated user must have **REPO_ADMIN** permission for the target repository to delete a required build merge check.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project that the repository belongs to
@param id
@param repositorySlug The repository being used
@return BuildsAndDeploymentsAPIDeleteRequiredBuildsMergeCheckRequest

func (*BuildsAndDeploymentsAPIService) DeleteRequiredBuildsMergeCheckExecute ¶

Execute executes the request

func (*BuildsAndDeploymentsAPIService) Get ¶

func (a *BuildsAndDeploymentsAPIService) Get(ctx context.Context, projectKey string, commitId string, repositorySlug string) BuildsAndDeploymentsAPIGetRequest

Get Get a specific build status

Get a specific build status.

The authenticated user must have **REPO_READ** permission for the provided repository.The request can also be made with anonymous 2-legged OAuth.<br>Since 7.14

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit.
@param repositorySlug The repository slug.
@return BuildsAndDeploymentsAPIGetRequest

func (*BuildsAndDeploymentsAPIService) Get1 ¶

func (a *BuildsAndDeploymentsAPIService) Get1(ctx context.Context, projectKey string, commitId string, repositorySlug string) BuildsAndDeploymentsAPIGet1Request

Get1 Get a deployment

Get the deployment matching the specified Repository, key, environmentKey and deploymentSequenceNumber.

The user must have REPO_READ.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId the commitId that was deployed as indicated by the query parameter
@param repositorySlug The repository slug
@return BuildsAndDeploymentsAPIGet1Request

func (*BuildsAndDeploymentsAPIService) Get1Execute ¶

Execute executes the request

@return RestDeployment

func (*BuildsAndDeploymentsAPIService) GetACodeInsightsReport ¶

func (a *BuildsAndDeploymentsAPIService) GetACodeInsightsReport(ctx context.Context, projectKey string, commitId string, repositorySlug string, key string) BuildsAndDeploymentsAPIGetACodeInsightsReportRequest

GetACodeInsightsReport Get a Code Insights report

Retrieve the specified report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit ID on which to record the annotation. This must be a full 40 character commit hash.
@param repositorySlug The repository slug.
@param key The report key.
@return BuildsAndDeploymentsAPIGetACodeInsightsReportRequest

func (*BuildsAndDeploymentsAPIService) GetACodeInsightsReportExecute ¶

Execute executes the request

@return RestInsightReport

func (*BuildsAndDeploymentsAPIService) GetAnnotations ¶

func (a *BuildsAndDeploymentsAPIService) GetAnnotations(ctx context.Context, projectKey string, commitId string, repositorySlug string, key string) BuildsAndDeploymentsAPIGetAnnotationsRequest

GetAnnotations Get Code Insights annotations for a report

Retrieve the specified report's annotations.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit ID on which to record the annotation. This must be a full 40 character commit hash.
@param repositorySlug The repository slug.
@param key The report key.
@return BuildsAndDeploymentsAPIGetAnnotationsRequest

func (*BuildsAndDeploymentsAPIService) GetAnnotations1 ¶

func (a *BuildsAndDeploymentsAPIService) GetAnnotations1(ctx context.Context, projectKey string, commitId string, repositorySlug string) BuildsAndDeploymentsAPIGetAnnotations1Request

GetAnnotations1 Get Code Insights annotations for a commit

Get annotations for the given commit ID, filtered by any query parameters given.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit ID on which to record the annotation. This must be a full 40 character commit hash.
@param repositorySlug The repository slug.
@return BuildsAndDeploymentsAPIGetAnnotations1Request

func (*BuildsAndDeploymentsAPIService) GetAnnotations1Execute ¶

Execute executes the request

@return RestInsightAnnotationsResponse

func (*BuildsAndDeploymentsAPIService) GetAnnotationsExecute ¶

Execute executes the request

@return RestInsightAnnotationsResponse

func (*BuildsAndDeploymentsAPIService) GetBuildStatusStats ¶

GetBuildStatusStats Get build status statistics for commit

Gets statistics regarding the builds associated with a commit

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param commitId full SHA1 of the commit
@return BuildsAndDeploymentsAPIGetBuildStatusStatsRequest

func (*BuildsAndDeploymentsAPIService) GetBuildStatusStatsExecute ¶

Execute executes the request

@return RestBuildStats

func (*BuildsAndDeploymentsAPIService) GetExecute ¶

Execute executes the request

@return RestBuildStatus

func (*BuildsAndDeploymentsAPIService) GetMultipleBuildStatusStats ¶

GetMultipleBuildStatusStats Get build status for multiple commits

Produces a list of the build statistics for multiple commits. Commits <em>without any builds associated with them</em> will not be returned.<br> For example if the commit <code>e00cf62997a027bbf785614a93e2e55bb331d268</code> does not have any build statuses associated with it, it will not be present in the response.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return BuildsAndDeploymentsAPIGetMultipleBuildStatusStatsRequest

func (*BuildsAndDeploymentsAPIService) GetMultipleBuildStatusStatsExecute ¶

func (a *BuildsAndDeploymentsAPIService) GetMultipleBuildStatusStatsExecute(r BuildsAndDeploymentsAPIGetMultipleBuildStatusStatsRequest) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*BuildsAndDeploymentsAPIService) GetPageOfRequiredBuildsMergeChecks ¶

func (a *BuildsAndDeploymentsAPIService) GetPageOfRequiredBuildsMergeChecks(ctx context.Context, projectKey string, repositorySlug string) BuildsAndDeploymentsAPIGetPageOfRequiredBuildsMergeChecksRequest

GetPageOfRequiredBuildsMergeChecks Get required builds merge checks

Returns a page of required build merge checks that have been configured for this repository.

The authenticated user must have **REPO_READ** permission for the target repository to request a page of required build merge checks.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project that the repository belongs to
@param repositorySlug The repository being used
@return BuildsAndDeploymentsAPIGetPageOfRequiredBuildsMergeChecksRequest

func (*BuildsAndDeploymentsAPIService) GetPageOfRequiredBuildsMergeChecksExecute ¶

Execute executes the request

@return GetPageOfRequiredBuildsMergeChecks200Response

func (*BuildsAndDeploymentsAPIService) GetReports ¶

func (a *BuildsAndDeploymentsAPIService) GetReports(ctx context.Context, projectKey string, commitId string, repositorySlug string) BuildsAndDeploymentsAPIGetReportsRequest

GetReports Get all Code Insights reports for a commit

Retrieve all reports for the given commit.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit ID on which to record the annotation. This must be a full 40 character commit hash.
@param repositorySlug The repository slug.
@return BuildsAndDeploymentsAPIGetReportsRequest

func (*BuildsAndDeploymentsAPIService) GetReportsExecute ¶

Execute executes the request

@return GetReports200Response

func (*BuildsAndDeploymentsAPIService) SetACodeInsightsReport ¶

func (a *BuildsAndDeploymentsAPIService) SetACodeInsightsReport(ctx context.Context, projectKey string, commitId string, repositorySlug string, key string) BuildsAndDeploymentsAPISetACodeInsightsReportRequest

SetACodeInsightsReport Create a Code Insights report

Create a new insight report, or replace the existing one if a report already exists for the given repository, commit, and report key. A request to replace an existing report will be rejected if the authenticated user was not the creator of the specified report.

The report key should be a unique string chosen by the reporter and should be unique enough not to potentially clash with report keys from other reporters. We recommend using reverse DNS namespacing or a similar standard to ensure that collision is avoided.<h1>Report parameters</h1><table summary="Report parameters"> <tr> <th>Parameter</th> <th>Description</th> <th>Required?</th> <th>Restrictions</th> <th>Type</th> </tr> <tr> <td>title</td> <td>A short string representing the name of the report</td> <td>Yes</td> <td>Max length: 450 characters (but we recommend that it is shorter so that the display is nicer)</td> <td>String</td> </tr> <tr> <td>details</td> <td> A string to describe the purpose of the report. This string may contain escaped newlines and if it does it will display the content accordingly. </td> <td>No</td> <td>Max length: 2000 characters</td> <td>String</td> </tr> <tr> <td>result</td> <td>Indicates whether the report is in a passed or failed state</td> <td>No</td> <td>One of: PASS, FAIL</td> <td>String</td> </tr> <tr> <td>data</td> <td>An array of data fields (described below) to display information on the report</td> <td>No</td> <td>Maximum 6 data fields</td> <td>Array</td> </tr> <tr> <td>reporter</td> <td>A string to describe the tool or company who created the report</td> <td>No</td> <td>Max length: 450 characters</td> <td>String</td> </tr> <tr> <td>link</td> <td>A URL linking to the results of the report in an external tool.</td> <td>No</td> <td>Must be a valid http or https URL</td> <td>String</td> </tr> <tr> <td>logoUrl</td> <td>A URL to the report logo. If none is provided, the default insights logo will be used.</td> <td>No</td> <td>Must be a valid http or https URL</td> <td>String</td> </tr></table><h1>Data parameters</h1>The data field on the report is an array with at most 6 data fields (JSON maps) containing information that is to be displayed on the report (see the request example).<table summary="Data parameters"> <tr> <th>Parameter</th> <th>Description</th> <th>Type</th> </tr> <tr> <td>title</td> <td>A string describing what this data field represents</td> <td>String</td> </tr> <tr> <td>type</td> <td> The type of data contained in the value field. If not provided, then the value will be detected as a boolean, number or string. One of: BOOLEAN, DATE, DURATION, LINK, NUMBER, PERCENTAGE, TEXT </td> <td>String</td> </tr> <tr> <td>value</td> <td> A value based on the type provided. Either a raw value (string, number or boolean) or a map. See below. </td> </tr></table><table summary="Types"> <tr> <th>Type Field</th> <th>Value Field Type</th> <th>Value Field Display</th> </tr> <tr> <td>None/Omitted</td> <td>Number, String or Boolean (not an array or object)</td> <td>Plain text</td> </tr> <tr> <td>BOOLEAN</td> <td>Boolean</td> <td>The value will be read as a JSON boolean and displayed as 'Yes' or 'No'.</td> </tr> <tr> <td>DATE</td> <td>Number</td> <td> The value will be read as a JSON number in the form of a Unix timestamp (milliseconds) and will be displayed as a relative date if the date is less than one week ago, otherwise it will be displayed as an absolute date. </td> </tr> <tr> <td>DURATION</td> <td>Number</td> <td> The value will be read as a JSON number in milliseconds and will be displayed in a human readable duration format. </td> </tr> <tr> <td>LINK</td> <td>Object: {"linktext": "Link text here", "href": "https://link.to.annotation/in/external/tool"}</td> <td> The value will be read as a JSON object containing the fields "linktext" and "href" and will be displayed as a clickable link on the report. </td> </tr> <tr> <td>NUMBER</td> <td>Number</td> <td> The value will be read as a JSON number and large numbers will be displayed in a human readable format (e.g. 14.3k). </td> </tr> <tr> <td>PERCENTAGE</td> <td>Number (between 0 and 100)</td> <td> The value will be read as a JSON number between 0 and 100 and will be displayed with a percentage sign. </td> </tr> <tr> <td>TEXT</td> <td>String</td> <td>The value will be read as a JSON string and will be displayed as-is</td> </tr></table>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId The commit ID on which to record the annotation. This must be a full 40 character commit hash.
@param repositorySlug The repository slug.
@param key A unique string representing the report as chosen by the reporter. This should be unique enough to not clash with other report's keys. To do this, we recommend namespacing the key using reverse DNS
@return BuildsAndDeploymentsAPISetACodeInsightsReportRequest

func (*BuildsAndDeploymentsAPIService) SetACodeInsightsReportExecute ¶

Execute executes the request

@return RestInsightReport

func (*BuildsAndDeploymentsAPIService) SetAnnotation ¶

func (a *BuildsAndDeploymentsAPIService) SetAnnotation(ctx context.Context, projectKey string, externalId string, commitId string, repositorySlug string, key string) BuildsAndDeploymentsAPISetAnnotationRequest

SetAnnotation Create or replace a Code Insights annotation

Create an annotation with the given external ID, or replace it if it already exists. A request to replace an existing annotation will be rejected if the authenticated user was not the creator of the specified report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param externalId The external ID of the annotation that is to be updated or created
@param commitId The commit ID on which to record the annotation. This must be a full 40 character commit hash.
@param repositorySlug The repository slug.
@param key The key of the report to which this annotation belongs
@return BuildsAndDeploymentsAPISetAnnotationRequest

func (*BuildsAndDeploymentsAPIService) SetAnnotationExecute ¶

Execute executes the request

func (*BuildsAndDeploymentsAPIService) UpdateRequiredBuildsMergeCheck ¶

func (a *BuildsAndDeploymentsAPIService) UpdateRequiredBuildsMergeCheck(ctx context.Context, projectKey string, id int64, repositorySlug string) BuildsAndDeploymentsAPIUpdateRequiredBuildsMergeCheckRequest

UpdateRequiredBuildsMergeCheck Update a required builds merge check

Update the required builds merge check for the given ID.

The authenticated user must have **REPO_ADMIN** permission for the target repository to update a required build merge check.

The contents of the required build merge check request are:

These fields are **required**:

- **buildParentKeys**: A non-empty list of build parent keys that require green builds for this merge check to pass - **refMatcher.id**: The value to match refs against in the target branch - **refMatcher.type.id**: The type of ref matcher, one of: "ANY_REF", "BRANCH", "PATTERN", "MODEL_CATEGORY" or "MODEL_BRANCH"

These fields are optional:

- **exemptRefMatcher.id** The value to exempt refs in the source branch from this check - **exemptRefMatcher.type.id**: The type of exempt ref matcher, one of: "ANY_REF", "BRANCH", "PATTERN", "MODEL_CATEGORY" or "MODEL_BRANCH"

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project that the repository belongs to
@param id
@param repositorySlug The repository being used
@return BuildsAndDeploymentsAPIUpdateRequiredBuildsMergeCheckRequest

func (*BuildsAndDeploymentsAPIService) UpdateRequiredBuildsMergeCheckExecute ¶

Execute executes the request

@return RestRequiredBuildCondition

type BuildsAndDeploymentsAPISetACodeInsightsReportRequest ¶

type BuildsAndDeploymentsAPISetACodeInsightsReportRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPISetACodeInsightsReportRequest) Execute ¶

func (BuildsAndDeploymentsAPISetACodeInsightsReportRequest) RestSetInsightReportRequest ¶

The request object containing the details of the report to create (see example).

type BuildsAndDeploymentsAPISetAnnotationRequest ¶

type BuildsAndDeploymentsAPISetAnnotationRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPISetAnnotationRequest) Execute ¶

func (BuildsAndDeploymentsAPISetAnnotationRequest) RestSingleAddInsightAnnotationRequest ¶

func (r BuildsAndDeploymentsAPISetAnnotationRequest) RestSingleAddInsightAnnotationRequest(restSingleAddInsightAnnotationRequest RestSingleAddInsightAnnotationRequest) BuildsAndDeploymentsAPISetAnnotationRequest

The new annotation that is to replace the existing one.

type BuildsAndDeploymentsAPIUpdateRequiredBuildsMergeCheckRequest ¶

type BuildsAndDeploymentsAPIUpdateRequiredBuildsMergeCheckRequest struct {
	ApiService *BuildsAndDeploymentsAPIService
	// contains filtered or unexported fields
}

func (BuildsAndDeploymentsAPIUpdateRequiredBuildsMergeCheckRequest) Execute ¶

func (BuildsAndDeploymentsAPIUpdateRequiredBuildsMergeCheckRequest) RestRequiredBuildConditionSetRequest ¶

The request specifying the required build parent keys, ref matcher and exemption matcher

type CapabilitiesAPIGetCapabilities1Request ¶

type CapabilitiesAPIGetCapabilities1Request struct {
	ApiService *CapabilitiesAPIService
	// contains filtered or unexported fields
}

func (CapabilitiesAPIGetCapabilities1Request) Execute ¶

type CapabilitiesAPIGetCapabilitiesRequest ¶

type CapabilitiesAPIGetCapabilitiesRequest struct {
	ApiService *CapabilitiesAPIService
	// contains filtered or unexported fields
}

func (CapabilitiesAPIGetCapabilitiesRequest) Execute ¶

type CapabilitiesAPIService ¶

type CapabilitiesAPIService service

CapabilitiesAPIService CapabilitiesAPI service

func (*CapabilitiesAPIService) GetCapabilities ¶

GetCapabilities Get build capabilities

Returns the build capabilities of this instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return CapabilitiesAPIGetCapabilitiesRequest

func (*CapabilitiesAPIService) GetCapabilities1 ¶

GetCapabilities1 Get deployment capabilities

Returns the Deployment capabilities of this instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return CapabilitiesAPIGetCapabilities1Request

func (*CapabilitiesAPIService) GetCapabilities1Execute ¶

Execute executes the request

func (*CapabilitiesAPIService) GetCapabilitiesExecute ¶

Execute executes the request

@return RestBuildCapabilities

type Configuration ¶

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration ¶

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader ¶

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL ¶

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext ¶

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type Context ¶

type Context struct {
	CommitMessage *string `json:"commitMessage,omitempty"`
}

Context struct for Context

func NewContext ¶

func NewContext() *Context

NewContext instantiates a new Context object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewContextWithDefaults ¶

func NewContextWithDefaults() *Context

NewContextWithDefaults instantiates a new Context object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Context) GetCommitMessage ¶

func (o *Context) GetCommitMessage() string

GetCommitMessage returns the CommitMessage field value if set, zero value otherwise.

func (*Context) GetCommitMessageOk ¶

func (o *Context) GetCommitMessageOk() (*string, bool)

GetCommitMessageOk returns a tuple with the CommitMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Context) HasCommitMessage ¶

func (o *Context) HasCommitMessage() bool

HasCommitMessage returns a boolean if a field has been set.

func (Context) MarshalJSON ¶

func (o Context) MarshalJSON() ([]byte, error)

func (*Context) SetCommitMessage ¶

func (o *Context) SetCommitMessage(v string)

SetCommitMessage gets a reference to the given string and assigns it to the CommitMessage field.

func (Context) ToMap ¶

func (o Context) ToMap() (map[string]interface{}, error)

type Credentials ¶

type Credentials struct {
	RestBearerTokenCredentials      *RestBearerTokenCredentials
	RestSshCredentials              *RestSshCredentials
	RestUsernamePasswordCredentials *RestUsernamePasswordCredentials
}

Credentials - struct for Credentials

func RestBearerTokenCredentialsAsCredentials ¶

func RestBearerTokenCredentialsAsCredentials(v *RestBearerTokenCredentials) Credentials

RestBearerTokenCredentialsAsCredentials is a convenience function that returns RestBearerTokenCredentials wrapped in Credentials

func RestSshCredentialsAsCredentials ¶

func RestSshCredentialsAsCredentials(v *RestSshCredentials) Credentials

RestSshCredentialsAsCredentials is a convenience function that returns RestSshCredentials wrapped in Credentials

func RestUsernamePasswordCredentialsAsCredentials ¶

func RestUsernamePasswordCredentialsAsCredentials(v *RestUsernamePasswordCredentials) Credentials

RestUsernamePasswordCredentialsAsCredentials is a convenience function that returns RestUsernamePasswordCredentials wrapped in Credentials

func (*Credentials) GetActualInstance ¶

func (obj *Credentials) GetActualInstance() interface{}

Get the actual instance

func (Credentials) MarshalJSON ¶

func (src Credentials) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Credentials) UnmarshalJSON ¶

func (dst *Credentials) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type DashboardAPIGetPullRequestSuggestionsRequest ¶

type DashboardAPIGetPullRequestSuggestionsRequest struct {
	ApiService *DashboardAPIService
	// contains filtered or unexported fields
}

func (DashboardAPIGetPullRequestSuggestionsRequest) ChangesSince ¶

restrict pull request suggestions to be based on events that occurred since some timein the past. This is expressed in seconds since \&quot;now\&quot;. So to return suggestionsbased only on activity within the past 48 hours, pass a value of 172800.

func (DashboardAPIGetPullRequestSuggestionsRequest) Execute ¶

func (DashboardAPIGetPullRequestSuggestionsRequest) Limit ¶

restricts the result set to return at most this many suggestions.

type DashboardAPIGetPullRequests1Request ¶

type DashboardAPIGetPullRequests1Request struct {
	ApiService *DashboardAPIService
	// contains filtered or unexported fields
}

func (DashboardAPIGetPullRequests1Request) ClosedSince ¶

(optional, defaults to returning pull requests regardless of closed since date). Permits returning only pull requests with a closed timestamp set more recently that (now - closedSince). Units are in seconds. So for example if closed since 86400 is set only pull requests closed in the previous 24 hours will be returned.

func (DashboardAPIGetPullRequests1Request) Execute ¶

func (DashboardAPIGetPullRequests1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (DashboardAPIGetPullRequests1Request) Order ¶

(optional, defaults to &lt;strong&gt;NEWEST&lt;/strong&gt;) the order to return pull requests in, either &lt;strong&gt;OLDEST&lt;/strong&gt; (as in: \&quot;oldest first\&quot;), &lt;strong&gt;NEWEST&lt;/strong&gt;, &lt;strong&gt;PARTICIPANT_STATUS&lt;/strong&gt;, or &lt;strong&gt;CLOSED_DATE&lt;/strong&gt;. Where &lt;strong&gt;CLOSED_DATE&lt;/strong&gt; is specified and the result set includes pull requests that are not in the closed state, these pull requests will appear first in the result set, followed by most recently closed pull requests.

func (DashboardAPIGetPullRequests1Request) ParticipantStatus ¶

(optional, defaults to returning pull requests with any participant status). A comma separated list of participant status. That is, one or more of &lt;strong&gt;UNAPPROVED&lt;/strong&gt;, &lt;strong&gt;NEEDS_WORK&lt;/strong&gt;, or &lt;strong&gt;APPROVED&lt;/strong&gt;.

func (DashboardAPIGetPullRequests1Request) Role ¶

(optional, defaults to returning pull requests for any role). If a role is supplied only pull requests where the authenticated user is a participant in the given role will be returned. Either &lt;strong&gt;REVIEWER&lt;/strong&gt;, &lt;strong&gt;AUTHOR&lt;/strong&gt; or &lt;strong&gt;PARTICIPANT&lt;/strong&gt;.

func (DashboardAPIGetPullRequests1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (DashboardAPIGetPullRequests1Request) State ¶

(optional, defaults to returning pull requests in any state). If a state is supplied only pull requests in the specified state will be returned. Either &lt;strong&gt;OPEN&lt;/strong&gt;, &lt;strong&gt;DECLINED&lt;/strong&gt; or &lt;strong&gt;MERGED&lt;/strong&gt;. Omit this parameter to return pull request in any state.

func (DashboardAPIGetPullRequests1Request) User ¶

The name of the involved user, defaults to the current user.

type DashboardAPIService ¶

type DashboardAPIService service

DashboardAPIService DashboardAPI service

func (*DashboardAPIService) GetPullRequestSuggestions ¶

GetPullRequestSuggestions Get pull request suggestions

Retrieves a page of suggestions for pull requests that the currently authenticated user may wish to raise. Such suggestions are based on ref changes occurring and so contain the ref change that prompted the suggestion plus the time the change event occurred. Changes will be returned in descending order based on the time the change that prompted the suggestion occurred.

Note that although the response is a page object, the interface does not support paging, however a limit can be applied to the size of the returned page.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DashboardAPIGetPullRequestSuggestionsRequest

func (*DashboardAPIService) GetPullRequestSuggestionsExecute ¶

Execute executes the request

@return GetPullRequestSuggestions200Response

func (*DashboardAPIService) GetPullRequests1 ¶

GetPullRequests1 Get pull requests for a user

Retrieve a page of pull requests where a user is involved as either a reviewer, author or a participant. The request may be filtered by pull request state, role or participant status.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DashboardAPIGetPullRequests1Request

func (*DashboardAPIService) GetPullRequests1Execute ¶

Execute executes the request

@return GetPullRequests1200Response

type DefaultAPIGetPullRequestCountRequest ¶

type DefaultAPIGetPullRequestCountRequest struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (DefaultAPIGetPullRequestCountRequest) Execute ¶

type DefaultAPIGetPullRequests2Request ¶

type DefaultAPIGetPullRequests2Request struct {
	ApiService *DefaultAPIService
	// contains filtered or unexported fields
}

func (DefaultAPIGetPullRequests2Request) Execute ¶

func (DefaultAPIGetPullRequests2Request) Limit ¶

func (DefaultAPIGetPullRequests2Request) Role ¶

func (DefaultAPIGetPullRequests2Request) Start ¶

type DefaultAPIService ¶

type DefaultAPIService service

DefaultAPIService DefaultAPI service

func (*DefaultAPIService) GetPullRequestCount ¶

GetPullRequestCount Get total number of pull requests in inbox

Returns the total number of pull requests in the user's inbox

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DefaultAPIGetPullRequestCountRequest

func (*DefaultAPIService) GetPullRequestCountExecute ¶

func (a *DefaultAPIService) GetPullRequestCountExecute(r DefaultAPIGetPullRequestCountRequest) (*http.Response, error)

Execute executes the request

func (*DefaultAPIService) GetPullRequests2 ¶

GetPullRequests2 Get pull requests in inbox

Returns a page of pull requests in the user's inbox.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DefaultAPIGetPullRequests2Request

func (*DefaultAPIService) GetPullRequests2Execute ¶

func (a *DefaultAPIService) GetPullRequests2Execute(r DefaultAPIGetPullRequests2Request) (*http.Response, error)

Execute executes the request

type DeprecatedAPIAddBuildStatusRequest ¶

type DeprecatedAPIAddBuildStatusRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIAddBuildStatusRequest) Execute ¶

func (DeprecatedAPIAddBuildStatusRequest) RestBuildStatus ¶

build status to associate with the commit

type DeprecatedAPIAddGroupToUserRequest ¶

type DeprecatedAPIAddGroupToUserRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIAddGroupToUserRequest) Execute ¶

func (DeprecatedAPIAddGroupToUserRequest) GroupPickerContext ¶

type DeprecatedAPIAddUserToGroupRequest ¶

type DeprecatedAPIAddUserToGroupRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIAddUserToGroupRequest) Execute ¶

func (DeprecatedAPIAddUserToGroupRequest) UserPickerContext ¶

type DeprecatedAPIApproveRequest ¶

type DeprecatedAPIApproveRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIApproveRequest) Execute ¶

type DeprecatedAPICountPullRequestTasksRequest ¶

type DeprecatedAPICountPullRequestTasksRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPICountPullRequestTasksRequest) Execute ¶

type DeprecatedAPICreateTaskRequest ¶

type DeprecatedAPICreateTaskRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPICreateTaskRequest) Execute ¶

type DeprecatedAPIDeleteTaskRequest ¶

type DeprecatedAPIDeleteTaskRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIDeleteTaskRequest) Execute ¶

type DeprecatedAPIGetBuildStatusRequest ¶

type DeprecatedAPIGetBuildStatusRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIGetBuildStatusRequest) Execute ¶

func (DeprecatedAPIGetBuildStatusRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (DeprecatedAPIGetBuildStatusRequest) OrderBy ¶

How the results should be ordered. Options are NEWEST, OLDEST, STATUS

func (DeprecatedAPIGetBuildStatusRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type DeprecatedAPIGetBuildStatusStatsRequest ¶

type DeprecatedAPIGetBuildStatusStatsRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIGetBuildStatusStatsRequest) Execute ¶

func (DeprecatedAPIGetBuildStatusStatsRequest) IncludeUnique ¶

include a unique build result if there is either only one failed build, only one in-progress build or only one successful build

type DeprecatedAPIGetDefaultBranch1Request ¶

type DeprecatedAPIGetDefaultBranch1Request struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIGetDefaultBranch1Request) Execute ¶

type DeprecatedAPIGetLikers1Request ¶

type DeprecatedAPIGetLikers1Request struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIGetLikers1Request) Execute ¶

func (DeprecatedAPIGetLikers1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (DeprecatedAPIGetLikers1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type DeprecatedAPIGetLikersRequest ¶

type DeprecatedAPIGetLikersRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIGetLikersRequest) Execute ¶

func (DeprecatedAPIGetLikersRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (DeprecatedAPIGetLikersRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type DeprecatedAPIGetMultipleBuildStatusStatsRequest ¶

type DeprecatedAPIGetMultipleBuildStatusStatsRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIGetMultipleBuildStatusStatsRequest) Execute ¶

func (DeprecatedAPIGetMultipleBuildStatusStatsRequest) RequestBody ¶

full SHA1 of each commit

type DeprecatedAPIGetPullRequestTasksRequest ¶

type DeprecatedAPIGetPullRequestTasksRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIGetPullRequestTasksRequest) Execute ¶

type DeprecatedAPIGetTaskRequest ¶

type DeprecatedAPIGetTaskRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIGetTaskRequest) Execute ¶

type DeprecatedAPILike1Request ¶

type DeprecatedAPILike1Request struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPILike1Request) Execute ¶

func (r DeprecatedAPILike1Request) Execute() (*http.Response, error)

type DeprecatedAPILikeRequest ¶

type DeprecatedAPILikeRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPILikeRequest) Execute ¶

func (r DeprecatedAPILikeRequest) Execute() (*http.Response, error)

type DeprecatedAPIOnAddonDisabledRequest ¶

type DeprecatedAPIOnAddonDisabledRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIOnAddonDisabledRequest) Execute ¶

type DeprecatedAPIOnAddonEnabledRequest ¶

type DeprecatedAPIOnAddonEnabledRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIOnAddonEnabledRequest) Execute ¶

type DeprecatedAPIRemoveUserFromGroupRequest ¶

type DeprecatedAPIRemoveUserFromGroupRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIRemoveUserFromGroupRequest) Execute ¶

func (DeprecatedAPIRemoveUserFromGroupRequest) UserPickerContext ¶

type DeprecatedAPIService ¶

type DeprecatedAPIService service

DeprecatedAPIService DeprecatedAPI service

func (*DeprecatedAPIService) AddBuildStatus ¶

AddBuildStatus Create build status for commit

Associates a build status with a commit.The <code>state</code>, the <code>key</code> and the <code>url</code> fields are mandatory. The <code>name</code> and<code>description</code> fields are optional.All fields (mandatory or optional) are limited to 255 characters, except for the <code>url</code>,which is limited to 450 characters.Supported values for the <code>state</code> are <code>SUCCESSFUL</code>, <code>FAILED</code>and <code>INPROGRESS</code>.The authenticated user must have <strong>LICENSED</strong> permission or higher to call this resource.

<strong>Deprecated in 7.14, please use the repository based builds resource instead.</strong>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param commitId full SHA1 of the commit
@return DeprecatedAPIAddBuildStatusRequest

Deprecated

func (*DeprecatedAPIService) AddBuildStatusExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) AddGroupToUser ¶

AddGroupToUser Add user to group

<strong>Deprecated since 2.10</strong>. Use /rest/users/add-groups instead.

Add a user to a group. This is very similar to <code>groups/add-user</code>, but with the <em>context</em> and <em>itemName</em> attributes of the supplied request entity reversed. On the face of it this may appear redundant, but it facilitates a specific UI component in the application.

In the request entity, the <em>context</em> attribute is the user and the <em>itemName</em> is the group.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DeprecatedAPIAddGroupToUserRequest

Deprecated

func (*DeprecatedAPIService) AddGroupToUserExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) AddUserToGroup ¶

AddUserToGroup Add user to group

<strong>Deprecated since 2.10</strong>. Use /rest/users/add-groups instead.

Add a user to a group.

In the request entity, the <em>context</em> attribute is the group and the <em>itemName</em> is the user.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DeprecatedAPIAddUserToGroupRequest

Deprecated

func (*DeprecatedAPIService) AddUserToGroupExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) Approve ¶

func (a *DeprecatedAPIService) Approve(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) DeprecatedAPIApproveRequest

Approve Approve pull request

Approve a pull request as the current user. Implicitly adds the user as a participant if they are not already.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

<strong>Deprecated since 4.2</strong>. Use /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/participants/{userSlug} instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return DeprecatedAPIApproveRequest

Deprecated

func (*DeprecatedAPIService) ApproveExecute ¶

Execute executes the request

@return RestPullRequestParticipant

Deprecated

func (*DeprecatedAPIService) CountPullRequestTasks ¶

func (a *DeprecatedAPIService) CountPullRequestTasks(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) DeprecatedAPICountPullRequestTasksRequest

CountPullRequestTasks Get pull request task count

Retrieve the total number of OPEN and RESOLVED tasks associated with a pull request.

<strong>Deprecated since 7.2</strong>. Tasks are now managed using Comments with BLOCKER severity. Use /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/blocker-comments?count=true instead.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return DeprecatedAPICountPullRequestTasksRequest

Deprecated

func (*DeprecatedAPIService) CountPullRequestTasksExecute ¶

func (a *DeprecatedAPIService) CountPullRequestTasksExecute(r DeprecatedAPICountPullRequestTasksRequest) (*http.Response, error)

Execute executes the request Deprecated

func (*DeprecatedAPIService) CreateTask ¶

CreateTask Create task

Create a new task.

<strong>Removed in 8.0</strong>. Tasks are now managed using Comments with severity BLOCKER. Call <code>POST /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/comments</code> instead,passing the attribute 'severity' set to 'BLOCKER'.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DeprecatedAPICreateTaskRequest

Deprecated

func (*DeprecatedAPIService) CreateTaskExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) DeleteTask ¶

DeleteTask Delete task

Delete a task.

<strong>Removed in 8.0</strong>. Tasks are now managed using Comments with BLOCKER severity. Call <code>DELETE /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/comments/{commentId}</code>instead. @deprecated since 7.2, changed to 404 in 8.0, remove in 9.0. Call DELETE /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/comments/{commentId} instead.

Note that only the task's creator, the context's author or an admin of the context's repository can delete a task. (For a pull request task, those are the task's creator, the pull request's author or an admin on the repository containing the pull request). Additionally a task cannot be deleted if it has already been resolved.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId the id identifying the task to delete
@return DeprecatedAPIDeleteTaskRequest

Deprecated

func (*DeprecatedAPIService) DeleteTaskExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) GetBuildStatus ¶

GetBuildStatus Get build statuses for commit

Gets build statuses associated with a commit.

<strong>Deprecated in 7.14, please use the repository based builds resource instead.</strong>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param commitId Full SHA1 of the commit (ex: <code>e00cf62997a027bbf785614a93e2e55bb331d268</code>)
@return DeprecatedAPIGetBuildStatusRequest

Deprecated

func (*DeprecatedAPIService) GetBuildStatusExecute ¶

Execute executes the request

@return GetBuildStatus200Response

Deprecated

func (*DeprecatedAPIService) GetBuildStatusStats ¶

GetBuildStatusStats Get build status statistics for commit

Gets statistics regarding the builds associated with a commit

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param commitId full SHA1 of the commit
@return DeprecatedAPIGetBuildStatusStatsRequest

func (*DeprecatedAPIService) GetBuildStatusStatsExecute ¶

Execute executes the request

@return RestBuildStats

func (*DeprecatedAPIService) GetDefaultBranch1 ¶

func (a *DeprecatedAPIService) GetDefaultBranch1(ctx context.Context, projectKey string, repositorySlug string) DeprecatedAPIGetDefaultBranch1Request

GetDefaultBranch1 Get default branch

Retrieves the repository's default branch, if it has been created. If the repository is empty, 204 No Content will be returned. For non-empty repositories, if the configured default branch has not yet been created a 404 Not Found will be returned.

This URL is deprecated. Callers should use <code>GET /projects/{key}/repos/{slug}/default-branch</code> instead, which allows retrieving the <i>configured</i> default branch even if the ref has not been created yet.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return DeprecatedAPIGetDefaultBranch1Request

Deprecated

func (*DeprecatedAPIService) GetDefaultBranch1Execute ¶

Execute executes the request

@return RestBranch

Deprecated

func (*DeprecatedAPIService) GetLikers ¶

func (a *DeprecatedAPIService) GetLikers(ctx context.Context, projectKey string, commentId int64, commitId string, repositorySlug string) DeprecatedAPIGetLikersRequest

GetLikers Get comment likes

Get a page of users who liked a commit comment in the specified repository, identified by <code>commitId</code> and <code>commentId</code>.

The authenticated user must have the **REPO_READ** (or higher) permission for the specified repository to access this resource.

<strong>Deprecated in 8.0 to be removed in 9.0.</strong>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId
@param commitId The commit id.
@param repositorySlug The repository slug.
@return DeprecatedAPIGetLikersRequest

Deprecated

func (*DeprecatedAPIService) GetLikers1 ¶

func (a *DeprecatedAPIService) GetLikers1(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) DeprecatedAPIGetLikers1Request

GetLikers1 Get pull request comment likes

Get a page of users who liked a pull request comment in the specified repository, identified by <code>pullRequestId</code> and <code>commentId</code>.

The authenticated user must have the <strong>REPO_READ</strong> (or higher) permission for the specified repository to access this resource.

**Deprecated in 8.0 to be removed in 9.0.**

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The comment id.
@param pullRequestId The pull request id.
@param repositorySlug The repository slug.
@return DeprecatedAPIGetLikers1Request

Deprecated

func (*DeprecatedAPIService) GetLikers1Execute ¶

Execute executes the request

@return GetLikers200Response

Deprecated

func (*DeprecatedAPIService) GetLikersExecute ¶

Execute executes the request

@return GetLikers200Response

Deprecated

func (*DeprecatedAPIService) GetMultipleBuildStatusStats ¶

GetMultipleBuildStatusStats Get build status for multiple commits

Produces a list of the build statistics for multiple commits. Commits <em>without any builds associated with them</em> will not be returned.<br> For example if the commit <code>e00cf62997a027bbf785614a93e2e55bb331d268</code> does not have any build statuses associated with it, it will not be present in the response.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DeprecatedAPIGetMultipleBuildStatusStatsRequest

func (*DeprecatedAPIService) GetMultipleBuildStatusStatsExecute ¶

func (a *DeprecatedAPIService) GetMultipleBuildStatusStatsExecute(r DeprecatedAPIGetMultipleBuildStatusStatsRequest) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*DeprecatedAPIService) GetPullRequestTasks ¶

func (a *DeprecatedAPIService) GetPullRequestTasks(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) DeprecatedAPIGetPullRequestTasksRequest

GetPullRequestTasks Get pull request tasks

Retrieve the tasks associated with a pull request.

**Removed in 8.0**. Tasks are now managed using Comments with BLOCKER severity. Use /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/blocker-comments instead

**Deprecated since 7.2, changed to 404 in 8.0, remove in 9.0.** Use /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/blocker-comments instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return DeprecatedAPIGetPullRequestTasksRequest

Deprecated

func (*DeprecatedAPIService) GetPullRequestTasksExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) GetTask ¶

GetTask Get task

Retrieve an existing task.

<strong>Removed in 8.0</strong>. Tasks are now managed using Comments with BLOCKER severity. Call <code>GET /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/comments/{commentId} </code>instead. @deprecated since 7.2, changed to 404 in 8.0, remove in 9.0. Call GET /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/comments/{commentId} instead.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId the id identifying the task
@return DeprecatedAPIGetTaskRequest

Deprecated

func (*DeprecatedAPIService) GetTaskExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) Like ¶

func (a *DeprecatedAPIService) Like(ctx context.Context, projectKey string, commentId int64, commitId string, repositorySlug string) DeprecatedAPILikeRequest

Like Like a commit comment

Like a commit comment in the specified repository, identified by <code>commitId</code> and <code>commentId</code>.

The authenticated user must have the <strong>REPO_READ</strong> (or higher) permission for the specified repository to access this resource.

<strong>Deprecated in 8.0 to be removed in 9.0.</strong> Likes have been replaced with reactions. For backwards compatibility, the <pre>thumbsup</pre> reaction is treated as a like.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId
@param commitId The commit id.
@param repositorySlug The repository slug.
@return DeprecatedAPILikeRequest

Deprecated

func (*DeprecatedAPIService) Like1 ¶

func (a *DeprecatedAPIService) Like1(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) DeprecatedAPILike1Request

Like1 Like a pull request comment

Like a pull request comment in the specified repository, identified by <code>pullRequestId</code> and <code>commentId</code>. The like will be recorded against the requesting user.

The authenticated user must have the <strong>REPO_READ</strong> (or higher) permission for the specified repository to access this resource.

**Deprecated in 8.0 to be removed in 9.0.** Likes have been replaced with reactions. For backwards compatibility, the <pre>thumbsup</pre> reaction is treated as a like.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The comment id.
@param pullRequestId The pull request id.
@param repositorySlug The repository slug.
@return DeprecatedAPILike1Request

Deprecated

func (*DeprecatedAPIService) Like1Execute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) LikeExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) OnAddonDisabled ¶

OnAddonDisabled On disable of mirror addon

This REST endpoint is retained for backwards compatibility only. It is a no-op. Starting from 4.6.0, mirrors no longer specify a disabled lifecycle callback in their addon descriptor. Prior to 4.6.0, this was the callback method that was called when the mirroring atlassian-connect add-on has been disabled in the upstream server identified by <code> upstreamId</code>.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId the upstream server ID to retrieve settings for
@return DeprecatedAPIOnAddonDisabledRequest

Deprecated

func (*DeprecatedAPIService) OnAddonDisabledExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) OnAddonEnabled ¶

OnAddonEnabled On enabled of mirror addon

This REST endpoint is retained for backwards compatibility only. It is a no-op. Starting from 4.6.0, mirrors no longer specify an enabled lifecycle callback in their addon descriptor. Prior to 4.6.0, this was the callback method that was called when the mirroring atlassian-connect add-on has been enabled in the upstream server identified by <code>upstreamId</code>.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId the upstream server ID to retrieve settings for
@return DeprecatedAPIOnAddonEnabledRequest

Deprecated

func (*DeprecatedAPIService) OnAddonEnabledExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) RemoveUserFromGroup ¶

RemoveUserFromGroup Remove user from group

<strong>Deprecated since 2.10</strong>. Use /rest/users/remove-groups instead.

Remove a user from a group.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

In the request entity, the <em>context</em> attribute is the group and the <em>itemName</em> is the user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DeprecatedAPIRemoveUserFromGroupRequest

Deprecated

func (*DeprecatedAPIService) RemoveUserFromGroupExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) SetDefaultBranch1 ¶

func (a *DeprecatedAPIService) SetDefaultBranch1(ctx context.Context, projectKey string, repositorySlug string) DeprecatedAPISetDefaultBranch1Request

SetDefaultBranch1 Update default branch

Update the default branch of a repository.

This URL is deprecated. Callers should use <code>PUT /projects/{key}/repos/{slug}/default-branch</code> instead.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return DeprecatedAPISetDefaultBranch1Request

Deprecated

func (*DeprecatedAPIService) SetDefaultBranch1Execute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) SynchronizeRepositoryWithUpstream ¶

func (a *DeprecatedAPIService) SynchronizeRepositoryWithUpstream(ctx context.Context, upstreamRepoId string, upstreamId string) DeprecatedAPISynchronizeRepositoryWithUpstreamRequest

SynchronizeRepositoryWithUpstream Get upstream settings

This method is no longer supported

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamRepoId
@param upstreamId the upstream server ID to retrieve settings for
@return DeprecatedAPISynchronizeRepositoryWithUpstreamRequest

Deprecated

func (*DeprecatedAPIService) SynchronizeRepositoryWithUpstreamExecute ¶

func (a *DeprecatedAPIService) SynchronizeRepositoryWithUpstreamExecute(r DeprecatedAPISynchronizeRepositoryWithUpstreamRequest) (*http.Response, error)

Execute executes the request Deprecated

func (*DeprecatedAPIService) SynchronizeWithUpstream ¶

func (a *DeprecatedAPIService) SynchronizeWithUpstream(ctx context.Context, upstreamId string) DeprecatedAPISynchronizeWithUpstreamRequest

SynchronizeWithUpstream Change upstream settings

This method is no longer supported

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId the upstream server ID to retrieve settings for
@return DeprecatedAPISynchronizeWithUpstreamRequest

Deprecated

func (*DeprecatedAPIService) SynchronizeWithUpstreamExecute ¶

func (a *DeprecatedAPIService) SynchronizeWithUpstreamExecute(r DeprecatedAPISynchronizeWithUpstreamRequest) (*http.Response, error)

Execute executes the request Deprecated

func (*DeprecatedAPIService) UnassignParticipantRole1 ¶

func (a *DeprecatedAPIService) UnassignParticipantRole1(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) DeprecatedAPIUnassignParticipantRole1Request

UnassignParticipantRole1 Unassign pull request participant

Unassigns a participant from the REVIEWER role they may have been given in a pull request.

If the participant has no explicit role this method has no effect.

Afterwards, the user will still remain a participant in the pull request but their role will be reduced to PARTICIPANT. This is because once made a participant of a pull request, a user will forever remain a participant. Only their role may be altered.

The authenticated user must have <strong>REPO_WRITE</strong> permission for the repository that this pull request targets to call this resource.

<strong>Deprecated since 4.2</strong>. Use /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/participants/{userSlug} instead.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return DeprecatedAPIUnassignParticipantRole1Request

Deprecated

func (*DeprecatedAPIService) UnassignParticipantRole1Execute ¶

func (a *DeprecatedAPIService) UnassignParticipantRole1Execute(r DeprecatedAPIUnassignParticipantRole1Request) (*http.Response, error)

Execute executes the request Deprecated

func (*DeprecatedAPIService) Unlike ¶

func (a *DeprecatedAPIService) Unlike(ctx context.Context, projectKey string, commentId int64, commitId string, repositorySlug string) DeprecatedAPIUnlikeRequest

Unlike Unlike a commit comment

Unlike a commit comment in the specified repository, identified by <code>commitId</code> and <code>commentId</code>.

The authenticated user must have the <strong>REPO_READ</strong> (or higher) permission for the specified repository to access this resource.

<strong>Deprecated in 8.0 to be removed in 9.0.</strong> Likes have been replaced with reactions. For backwards compatibility, the <pre>thumbsup</pre> reaction is treated as a like.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId
@param commitId The commit id.
@param repositorySlug The repository slug.
@return DeprecatedAPIUnlikeRequest

Deprecated

func (*DeprecatedAPIService) Unlike1 ¶

func (a *DeprecatedAPIService) Unlike1(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) DeprecatedAPIUnlike1Request

Unlike1 Unlike a pull request comment

Unlike a pull request comment in the specified repository, identified by <code>pullRequestId</code> and <code>commentId</code>.

The authenticated user must have the <strong>REPO_READ</strong> (or higher) permission for the specified repository to access this resource.

**Deprecated in 8.0 to be removed in 9.0.** Likes have been replaced with reactions. For backwards compatibility, the <pre>thumbsup</pre> reaction is treated as a like.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The comment id.
@param pullRequestId The pull request id.
@param repositorySlug The repository slug.
@return DeprecatedAPIUnlike1Request

Deprecated

func (*DeprecatedAPIService) Unlike1Execute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) UnlikeExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) UpdateTask ¶

UpdateTask Update task

Update an existing task.

<strong>Removed in 8.0</strong>.  Tasks are now managed using Comments with BLOCKER severity.  Call <code>PUT /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/comments/{commentId} </code> instead.  To resolve a task, pass the attribute 'state' set to 'RESOLVED'.  @deprecated since 7.2, changed to 404 in 8.0, remove in 9.0. Call <code>PUT  /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/comments/{commentId}

</code> instead.

As of Stash 3.3, only the state and text of a task can be updated.

Updating the state of a task is allowed for any user having <em>READ</em> access to the repository.  However only the task's creator, the context's author or an admin of the context's repository can update the task's text. (For a pull request task, those are the task's creator, the pull request's author or an admin on the repository containing the pull request). Additionally the task's text cannot be updated if it has been resolved.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param taskId the id identifying the task to update
@return DeprecatedAPIUpdateTaskRequest

Deprecated

func (*DeprecatedAPIService) UpdateTaskExecute ¶

Execute executes the request Deprecated

func (*DeprecatedAPIService) WithdrawApproval ¶

func (a *DeprecatedAPIService) WithdrawApproval(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) DeprecatedAPIWithdrawApprovalRequest

WithdrawApproval Unapprove pull request

Remove approval from a pull request as the current user. This does not remove the user as a participant.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

<strong>Deprecated since 4.2</strong>. Use /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/participants/{userSlug} instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return DeprecatedAPIWithdrawApprovalRequest

Deprecated

func (*DeprecatedAPIService) WithdrawApprovalExecute ¶

Execute executes the request

@return RestPullRequestParticipant

Deprecated

type DeprecatedAPISetDefaultBranch1Request ¶

type DeprecatedAPISetDefaultBranch1Request struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPISetDefaultBranch1Request) Execute ¶

func (DeprecatedAPISetDefaultBranch1Request) RestBranch ¶

The branch to set as default

type DeprecatedAPISynchronizeRepositoryWithUpstreamRequest ¶

type DeprecatedAPISynchronizeRepositoryWithUpstreamRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPISynchronizeRepositoryWithUpstreamRequest) Execute ¶

func (DeprecatedAPISynchronizeRepositoryWithUpstreamRequest) Level ¶

the level of synchronization to perform

type DeprecatedAPISynchronizeWithUpstreamRequest ¶

type DeprecatedAPISynchronizeWithUpstreamRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPISynchronizeWithUpstreamRequest) Execute ¶

func (DeprecatedAPISynchronizeWithUpstreamRequest) Level ¶

type DeprecatedAPIUnassignParticipantRole1Request ¶

type DeprecatedAPIUnassignParticipantRole1Request struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIUnassignParticipantRole1Request) Execute ¶

func (DeprecatedAPIUnassignParticipantRole1Request) Username ¶

type DeprecatedAPIUnlike1Request ¶

type DeprecatedAPIUnlike1Request struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIUnlike1Request) Execute ¶

type DeprecatedAPIUnlikeRequest ¶

type DeprecatedAPIUnlikeRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIUnlikeRequest) Execute ¶

type DeprecatedAPIUpdateTaskRequest ¶

type DeprecatedAPIUpdateTaskRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIUpdateTaskRequest) Execute ¶

type DeprecatedAPIWithdrawApprovalRequest ¶

type DeprecatedAPIWithdrawApprovalRequest struct {
	ApiService *DeprecatedAPIService
	// contains filtered or unexported fields
}

func (DeprecatedAPIWithdrawApprovalRequest) Execute ¶

type EnrichedRepository ¶

type EnrichedRepository struct {
	Properties    *EnrichedRepositoryProperties            `json:"properties,omitempty"`
	Name          *string                                  `json:"name,omitempty"`
	Id            *int32                                   `json:"id,omitempty"`
	State         *string                                  `json:"state,omitempty"`
	Public        *bool                                    `json:"public,omitempty"`
	Project       *RestPullRequestFromRefRepositoryProject `json:"project,omitempty"`
	Description   *string                                  `json:"description,omitempty"`
	DefaultBranch *string                                  `json:"defaultBranch,omitempty"`
	RelatedLinks  map[string]interface{}                   `json:"relatedLinks,omitempty"`
	Partition     *int32                                   `json:"partition,omitempty"`
	Origin        *RestPullRequestFromRefRepositoryOrigin  `json:"origin,omitempty"`
	HierarchyId   *string                                  `json:"hierarchyId,omitempty"`
	StatusMessage *string                                  `json:"statusMessage,omitempty"`
	Archived      *bool                                    `json:"archived,omitempty"`
	Forkable      *bool                                    `json:"forkable,omitempty"`
	ScmId         *string                                  `json:"scmId,omitempty"`
	Slug          *string                                  `json:"slug,omitempty"`
	Scope         *string                                  `json:"scope,omitempty"`
	Links         map[string]interface{}                   `json:"links,omitempty"`
}

EnrichedRepository struct for EnrichedRepository

func NewEnrichedRepository ¶

func NewEnrichedRepository() *EnrichedRepository

NewEnrichedRepository instantiates a new EnrichedRepository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEnrichedRepositoryWithDefaults ¶

func NewEnrichedRepositoryWithDefaults() *EnrichedRepository

NewEnrichedRepositoryWithDefaults instantiates a new EnrichedRepository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EnrichedRepository) GetArchived ¶

func (o *EnrichedRepository) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*EnrichedRepository) GetArchivedOk ¶

func (o *EnrichedRepository) GetArchivedOk() (*bool, bool)

GetArchivedOk returns a tuple with the Archived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetDefaultBranch ¶

func (o *EnrichedRepository) GetDefaultBranch() string

GetDefaultBranch returns the DefaultBranch field value if set, zero value otherwise.

func (*EnrichedRepository) GetDefaultBranchOk ¶

func (o *EnrichedRepository) GetDefaultBranchOk() (*string, bool)

GetDefaultBranchOk returns a tuple with the DefaultBranch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetDescription ¶

func (o *EnrichedRepository) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*EnrichedRepository) GetDescriptionOk ¶

func (o *EnrichedRepository) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetForkable ¶

func (o *EnrichedRepository) GetForkable() bool

GetForkable returns the Forkable field value if set, zero value otherwise.

func (*EnrichedRepository) GetForkableOk ¶

func (o *EnrichedRepository) GetForkableOk() (*bool, bool)

GetForkableOk returns a tuple with the Forkable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetHierarchyId ¶

func (o *EnrichedRepository) GetHierarchyId() string

GetHierarchyId returns the HierarchyId field value if set, zero value otherwise.

func (*EnrichedRepository) GetHierarchyIdOk ¶

func (o *EnrichedRepository) GetHierarchyIdOk() (*string, bool)

GetHierarchyIdOk returns a tuple with the HierarchyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetId ¶

func (o *EnrichedRepository) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*EnrichedRepository) GetIdOk ¶

func (o *EnrichedRepository) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *EnrichedRepository) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*EnrichedRepository) GetLinksOk ¶

func (o *EnrichedRepository) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetName ¶

func (o *EnrichedRepository) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*EnrichedRepository) GetNameOk ¶

func (o *EnrichedRepository) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetOrigin ¶

GetOrigin returns the Origin field value if set, zero value otherwise.

func (*EnrichedRepository) GetOriginOk ¶

GetOriginOk returns a tuple with the Origin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetPartition ¶

func (o *EnrichedRepository) GetPartition() int32

GetPartition returns the Partition field value if set, zero value otherwise.

func (*EnrichedRepository) GetPartitionOk ¶

func (o *EnrichedRepository) GetPartitionOk() (*int32, bool)

GetPartitionOk returns a tuple with the Partition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*EnrichedRepository) GetProjectOk ¶

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*EnrichedRepository) GetPropertiesOk ¶

func (o *EnrichedRepository) GetPropertiesOk() (*EnrichedRepositoryProperties, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetPublic ¶

func (o *EnrichedRepository) GetPublic() bool

GetPublic returns the Public field value if set, zero value otherwise.

func (*EnrichedRepository) GetPublicOk ¶

func (o *EnrichedRepository) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *EnrichedRepository) GetRelatedLinks() map[string]interface{}

GetRelatedLinks returns the RelatedLinks field value if set, zero value otherwise.

func (*EnrichedRepository) GetRelatedLinksOk ¶

func (o *EnrichedRepository) GetRelatedLinksOk() (map[string]interface{}, bool)

GetRelatedLinksOk returns a tuple with the RelatedLinks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetScmId ¶

func (o *EnrichedRepository) GetScmId() string

GetScmId returns the ScmId field value if set, zero value otherwise.

func (*EnrichedRepository) GetScmIdOk ¶

func (o *EnrichedRepository) GetScmIdOk() (*string, bool)

GetScmIdOk returns a tuple with the ScmId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetScope ¶

func (o *EnrichedRepository) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*EnrichedRepository) GetScopeOk ¶

func (o *EnrichedRepository) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetSlug ¶

func (o *EnrichedRepository) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*EnrichedRepository) GetSlugOk ¶

func (o *EnrichedRepository) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetState ¶

func (o *EnrichedRepository) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*EnrichedRepository) GetStateOk ¶

func (o *EnrichedRepository) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) GetStatusMessage ¶

func (o *EnrichedRepository) GetStatusMessage() string

GetStatusMessage returns the StatusMessage field value if set, zero value otherwise.

func (*EnrichedRepository) GetStatusMessageOk ¶

func (o *EnrichedRepository) GetStatusMessageOk() (*string, bool)

GetStatusMessageOk returns a tuple with the StatusMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepository) HasArchived ¶

func (o *EnrichedRepository) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*EnrichedRepository) HasDefaultBranch ¶

func (o *EnrichedRepository) HasDefaultBranch() bool

HasDefaultBranch returns a boolean if a field has been set.

func (*EnrichedRepository) HasDescription ¶

func (o *EnrichedRepository) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*EnrichedRepository) HasForkable ¶

func (o *EnrichedRepository) HasForkable() bool

HasForkable returns a boolean if a field has been set.

func (*EnrichedRepository) HasHierarchyId ¶

func (o *EnrichedRepository) HasHierarchyId() bool

HasHierarchyId returns a boolean if a field has been set.

func (*EnrichedRepository) HasId ¶

func (o *EnrichedRepository) HasId() bool

HasId returns a boolean if a field has been set.

func (o *EnrichedRepository) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*EnrichedRepository) HasName ¶

func (o *EnrichedRepository) HasName() bool

HasName returns a boolean if a field has been set.

func (*EnrichedRepository) HasOrigin ¶

func (o *EnrichedRepository) HasOrigin() bool

HasOrigin returns a boolean if a field has been set.

func (*EnrichedRepository) HasPartition ¶

func (o *EnrichedRepository) HasPartition() bool

HasPartition returns a boolean if a field has been set.

func (*EnrichedRepository) HasProject ¶

func (o *EnrichedRepository) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*EnrichedRepository) HasProperties ¶

func (o *EnrichedRepository) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*EnrichedRepository) HasPublic ¶

func (o *EnrichedRepository) HasPublic() bool

HasPublic returns a boolean if a field has been set.

func (o *EnrichedRepository) HasRelatedLinks() bool

HasRelatedLinks returns a boolean if a field has been set.

func (*EnrichedRepository) HasScmId ¶

func (o *EnrichedRepository) HasScmId() bool

HasScmId returns a boolean if a field has been set.

func (*EnrichedRepository) HasScope ¶

func (o *EnrichedRepository) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*EnrichedRepository) HasSlug ¶

func (o *EnrichedRepository) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*EnrichedRepository) HasState ¶

func (o *EnrichedRepository) HasState() bool

HasState returns a boolean if a field has been set.

func (*EnrichedRepository) HasStatusMessage ¶

func (o *EnrichedRepository) HasStatusMessage() bool

HasStatusMessage returns a boolean if a field has been set.

func (EnrichedRepository) MarshalJSON ¶

func (o EnrichedRepository) MarshalJSON() ([]byte, error)

func (*EnrichedRepository) SetArchived ¶

func (o *EnrichedRepository) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*EnrichedRepository) SetDefaultBranch ¶

func (o *EnrichedRepository) SetDefaultBranch(v string)

SetDefaultBranch gets a reference to the given string and assigns it to the DefaultBranch field.

func (*EnrichedRepository) SetDescription ¶

func (o *EnrichedRepository) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*EnrichedRepository) SetForkable ¶

func (o *EnrichedRepository) SetForkable(v bool)

SetForkable gets a reference to the given bool and assigns it to the Forkable field.

func (*EnrichedRepository) SetHierarchyId ¶

func (o *EnrichedRepository) SetHierarchyId(v string)

SetHierarchyId gets a reference to the given string and assigns it to the HierarchyId field.

func (*EnrichedRepository) SetId ¶

func (o *EnrichedRepository) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *EnrichedRepository) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*EnrichedRepository) SetName ¶

func (o *EnrichedRepository) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*EnrichedRepository) SetOrigin ¶

SetOrigin gets a reference to the given RestPullRequestFromRefRepositoryOrigin and assigns it to the Origin field.

func (*EnrichedRepository) SetPartition ¶

func (o *EnrichedRepository) SetPartition(v int32)

SetPartition gets a reference to the given int32 and assigns it to the Partition field.

func (*EnrichedRepository) SetProject ¶

SetProject gets a reference to the given RestPullRequestFromRefRepositoryProject and assigns it to the Project field.

func (*EnrichedRepository) SetProperties ¶

SetProperties gets a reference to the given EnrichedRepositoryProperties and assigns it to the Properties field.

func (*EnrichedRepository) SetPublic ¶

func (o *EnrichedRepository) SetPublic(v bool)

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (o *EnrichedRepository) SetRelatedLinks(v map[string]interface{})

SetRelatedLinks gets a reference to the given map[string]interface{} and assigns it to the RelatedLinks field.

func (*EnrichedRepository) SetScmId ¶

func (o *EnrichedRepository) SetScmId(v string)

SetScmId gets a reference to the given string and assigns it to the ScmId field.

func (*EnrichedRepository) SetScope ¶

func (o *EnrichedRepository) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*EnrichedRepository) SetSlug ¶

func (o *EnrichedRepository) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*EnrichedRepository) SetState ¶

func (o *EnrichedRepository) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*EnrichedRepository) SetStatusMessage ¶

func (o *EnrichedRepository) SetStatusMessage(v string)

SetStatusMessage gets a reference to the given string and assigns it to the StatusMessage field.

func (EnrichedRepository) ToMap ¶

func (o EnrichedRepository) ToMap() (map[string]interface{}, error)

type EnrichedRepositoryProperties ¶

type EnrichedRepositoryProperties struct {
	ContentHash     *string `json:"contentHash,omitempty"`
	MetadataHash    *string `json:"metadataHash,omitempty"`
	DefaultBranchId *string `json:"defaultBranchId,omitempty"`
}

EnrichedRepositoryProperties struct for EnrichedRepositoryProperties

func NewEnrichedRepositoryProperties ¶

func NewEnrichedRepositoryProperties() *EnrichedRepositoryProperties

NewEnrichedRepositoryProperties instantiates a new EnrichedRepositoryProperties object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEnrichedRepositoryPropertiesWithDefaults ¶

func NewEnrichedRepositoryPropertiesWithDefaults() *EnrichedRepositoryProperties

NewEnrichedRepositoryPropertiesWithDefaults instantiates a new EnrichedRepositoryProperties object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EnrichedRepositoryProperties) GetContentHash ¶

func (o *EnrichedRepositoryProperties) GetContentHash() string

GetContentHash returns the ContentHash field value if set, zero value otherwise.

func (*EnrichedRepositoryProperties) GetContentHashOk ¶

func (o *EnrichedRepositoryProperties) GetContentHashOk() (*string, bool)

GetContentHashOk returns a tuple with the ContentHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepositoryProperties) GetDefaultBranchId ¶

func (o *EnrichedRepositoryProperties) GetDefaultBranchId() string

GetDefaultBranchId returns the DefaultBranchId field value if set, zero value otherwise.

func (*EnrichedRepositoryProperties) GetDefaultBranchIdOk ¶

func (o *EnrichedRepositoryProperties) GetDefaultBranchIdOk() (*string, bool)

GetDefaultBranchIdOk returns a tuple with the DefaultBranchId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepositoryProperties) GetMetadataHash ¶

func (o *EnrichedRepositoryProperties) GetMetadataHash() string

GetMetadataHash returns the MetadataHash field value if set, zero value otherwise.

func (*EnrichedRepositoryProperties) GetMetadataHashOk ¶

func (o *EnrichedRepositoryProperties) GetMetadataHashOk() (*string, bool)

GetMetadataHashOk returns a tuple with the MetadataHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EnrichedRepositoryProperties) HasContentHash ¶

func (o *EnrichedRepositoryProperties) HasContentHash() bool

HasContentHash returns a boolean if a field has been set.

func (*EnrichedRepositoryProperties) HasDefaultBranchId ¶

func (o *EnrichedRepositoryProperties) HasDefaultBranchId() bool

HasDefaultBranchId returns a boolean if a field has been set.

func (*EnrichedRepositoryProperties) HasMetadataHash ¶

func (o *EnrichedRepositoryProperties) HasMetadataHash() bool

HasMetadataHash returns a boolean if a field has been set.

func (EnrichedRepositoryProperties) MarshalJSON ¶

func (o EnrichedRepositoryProperties) MarshalJSON() ([]byte, error)

func (*EnrichedRepositoryProperties) SetContentHash ¶

func (o *EnrichedRepositoryProperties) SetContentHash(v string)

SetContentHash gets a reference to the given string and assigns it to the ContentHash field.

func (*EnrichedRepositoryProperties) SetDefaultBranchId ¶

func (o *EnrichedRepositoryProperties) SetDefaultBranchId(v string)

SetDefaultBranchId gets a reference to the given string and assigns it to the DefaultBranchId field.

func (*EnrichedRepositoryProperties) SetMetadataHash ¶

func (o *EnrichedRepositoryProperties) SetMetadataHash(v string)

SetMetadataHash gets a reference to the given string and assigns it to the MetadataHash field.

func (EnrichedRepositoryProperties) ToMap ¶

func (o EnrichedRepositoryProperties) ToMap() (map[string]interface{}, error)

type EntityHolderRestPullRequestAutoMergeRequest ¶

type EntityHolderRestPullRequestAutoMergeRequest struct {
	Entity *EntityHolderRestPullRequestAutoMergeRequestEntity `json:"entity,omitempty"`
}

EntityHolderRestPullRequestAutoMergeRequest struct for EntityHolderRestPullRequestAutoMergeRequest

func NewEntityHolderRestPullRequestAutoMergeRequest ¶

func NewEntityHolderRestPullRequestAutoMergeRequest() *EntityHolderRestPullRequestAutoMergeRequest

NewEntityHolderRestPullRequestAutoMergeRequest instantiates a new EntityHolderRestPullRequestAutoMergeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEntityHolderRestPullRequestAutoMergeRequestWithDefaults ¶

func NewEntityHolderRestPullRequestAutoMergeRequestWithDefaults() *EntityHolderRestPullRequestAutoMergeRequest

NewEntityHolderRestPullRequestAutoMergeRequestWithDefaults instantiates a new EntityHolderRestPullRequestAutoMergeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EntityHolderRestPullRequestAutoMergeRequest) GetEntity ¶

GetEntity returns the Entity field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestAutoMergeRequest) GetEntityOk ¶

GetEntityOk returns a tuple with the Entity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestAutoMergeRequest) HasEntity ¶

HasEntity returns a boolean if a field has been set.

func (EntityHolderRestPullRequestAutoMergeRequest) MarshalJSON ¶

func (*EntityHolderRestPullRequestAutoMergeRequest) SetEntity ¶

SetEntity gets a reference to the given EntityHolderRestPullRequestAutoMergeRequestEntity and assigns it to the Entity field.

func (EntityHolderRestPullRequestAutoMergeRequest) ToMap ¶

func (o EntityHolderRestPullRequestAutoMergeRequest) ToMap() (map[string]interface{}, error)

type EntityHolderRestPullRequestAutoMergeRequestEntity ¶

type EntityHolderRestPullRequestAutoMergeRequestEntity struct {
	AutoSubject *string `json:"autoSubject,omitempty"`
	Message     *string `json:"message,omitempty"`
	StrategyId  *string `json:"strategyId,omitempty"`
	Version     *int32  `json:"version,omitempty"`
}

EntityHolderRestPullRequestAutoMergeRequestEntity struct for EntityHolderRestPullRequestAutoMergeRequestEntity

func NewEntityHolderRestPullRequestAutoMergeRequestEntity ¶

func NewEntityHolderRestPullRequestAutoMergeRequestEntity() *EntityHolderRestPullRequestAutoMergeRequestEntity

NewEntityHolderRestPullRequestAutoMergeRequestEntity instantiates a new EntityHolderRestPullRequestAutoMergeRequestEntity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEntityHolderRestPullRequestAutoMergeRequestEntityWithDefaults ¶

func NewEntityHolderRestPullRequestAutoMergeRequestEntityWithDefaults() *EntityHolderRestPullRequestAutoMergeRequestEntity

NewEntityHolderRestPullRequestAutoMergeRequestEntityWithDefaults instantiates a new EntityHolderRestPullRequestAutoMergeRequestEntity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) GetAutoSubject ¶

GetAutoSubject returns the AutoSubject field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) GetAutoSubjectOk ¶

GetAutoSubjectOk returns a tuple with the AutoSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) GetStrategyId ¶

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) GetStrategyIdOk ¶

GetStrategyIdOk returns a tuple with the StrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) GetVersion ¶

GetVersion returns the Version field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) GetVersionOk ¶

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) HasAutoSubject ¶

HasAutoSubject returns a boolean if a field has been set.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) HasStrategyId ¶

HasStrategyId returns a boolean if a field has been set.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) HasVersion ¶

HasVersion returns a boolean if a field has been set.

func (EntityHolderRestPullRequestAutoMergeRequestEntity) MarshalJSON ¶

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) SetAutoSubject ¶

SetAutoSubject gets a reference to the given string and assigns it to the AutoSubject field.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) SetStrategyId ¶

SetStrategyId gets a reference to the given string and assigns it to the StrategyId field.

func (*EntityHolderRestPullRequestAutoMergeRequestEntity) SetVersion ¶

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (EntityHolderRestPullRequestAutoMergeRequestEntity) ToMap ¶

func (o EntityHolderRestPullRequestAutoMergeRequestEntity) ToMap() (map[string]interface{}, error)

type EntityHolderRestPullRequestDeclineRequest ¶

type EntityHolderRestPullRequestDeclineRequest struct {
	Entity *EntityHolderRestPullRequestDeclineRequestEntity `json:"entity,omitempty"`
}

EntityHolderRestPullRequestDeclineRequest struct for EntityHolderRestPullRequestDeclineRequest

func NewEntityHolderRestPullRequestDeclineRequest ¶

func NewEntityHolderRestPullRequestDeclineRequest() *EntityHolderRestPullRequestDeclineRequest

NewEntityHolderRestPullRequestDeclineRequest instantiates a new EntityHolderRestPullRequestDeclineRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEntityHolderRestPullRequestDeclineRequestWithDefaults ¶

func NewEntityHolderRestPullRequestDeclineRequestWithDefaults() *EntityHolderRestPullRequestDeclineRequest

NewEntityHolderRestPullRequestDeclineRequestWithDefaults instantiates a new EntityHolderRestPullRequestDeclineRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EntityHolderRestPullRequestDeclineRequest) GetEntity ¶

GetEntity returns the Entity field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestDeclineRequest) GetEntityOk ¶

GetEntityOk returns a tuple with the Entity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestDeclineRequest) HasEntity ¶

HasEntity returns a boolean if a field has been set.

func (EntityHolderRestPullRequestDeclineRequest) MarshalJSON ¶

func (*EntityHolderRestPullRequestDeclineRequest) SetEntity ¶

SetEntity gets a reference to the given EntityHolderRestPullRequestDeclineRequestEntity and assigns it to the Entity field.

func (EntityHolderRestPullRequestDeclineRequest) ToMap ¶

func (o EntityHolderRestPullRequestDeclineRequest) ToMap() (map[string]interface{}, error)

type EntityHolderRestPullRequestDeclineRequestEntity ¶

type EntityHolderRestPullRequestDeclineRequestEntity struct {
	Comment *string `json:"comment,omitempty"`
	Version *int32  `json:"version,omitempty"`
}

EntityHolderRestPullRequestDeclineRequestEntity struct for EntityHolderRestPullRequestDeclineRequestEntity

func NewEntityHolderRestPullRequestDeclineRequestEntity ¶

func NewEntityHolderRestPullRequestDeclineRequestEntity() *EntityHolderRestPullRequestDeclineRequestEntity

NewEntityHolderRestPullRequestDeclineRequestEntity instantiates a new EntityHolderRestPullRequestDeclineRequestEntity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEntityHolderRestPullRequestDeclineRequestEntityWithDefaults ¶

func NewEntityHolderRestPullRequestDeclineRequestEntityWithDefaults() *EntityHolderRestPullRequestDeclineRequestEntity

NewEntityHolderRestPullRequestDeclineRequestEntityWithDefaults instantiates a new EntityHolderRestPullRequestDeclineRequestEntity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EntityHolderRestPullRequestDeclineRequestEntity) GetComment ¶

GetComment returns the Comment field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestDeclineRequestEntity) GetCommentOk ¶

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestDeclineRequestEntity) GetVersion ¶

GetVersion returns the Version field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestDeclineRequestEntity) GetVersionOk ¶

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestDeclineRequestEntity) HasComment ¶

HasComment returns a boolean if a field has been set.

func (*EntityHolderRestPullRequestDeclineRequestEntity) HasVersion ¶

HasVersion returns a boolean if a field has been set.

func (EntityHolderRestPullRequestDeclineRequestEntity) MarshalJSON ¶

func (*EntityHolderRestPullRequestDeclineRequestEntity) SetComment ¶

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*EntityHolderRestPullRequestDeclineRequestEntity) SetVersion ¶

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (EntityHolderRestPullRequestDeclineRequestEntity) ToMap ¶

func (o EntityHolderRestPullRequestDeclineRequestEntity) ToMap() (map[string]interface{}, error)

type EntityHolderRestPullRequestReopenRequest ¶

type EntityHolderRestPullRequestReopenRequest struct {
	Entity *EntityHolderRestPullRequestReopenRequestEntity `json:"entity,omitempty"`
}

EntityHolderRestPullRequestReopenRequest struct for EntityHolderRestPullRequestReopenRequest

func NewEntityHolderRestPullRequestReopenRequest ¶

func NewEntityHolderRestPullRequestReopenRequest() *EntityHolderRestPullRequestReopenRequest

NewEntityHolderRestPullRequestReopenRequest instantiates a new EntityHolderRestPullRequestReopenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEntityHolderRestPullRequestReopenRequestWithDefaults ¶

func NewEntityHolderRestPullRequestReopenRequestWithDefaults() *EntityHolderRestPullRequestReopenRequest

NewEntityHolderRestPullRequestReopenRequestWithDefaults instantiates a new EntityHolderRestPullRequestReopenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EntityHolderRestPullRequestReopenRequest) GetEntity ¶

GetEntity returns the Entity field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestReopenRequest) GetEntityOk ¶

GetEntityOk returns a tuple with the Entity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestReopenRequest) HasEntity ¶

HasEntity returns a boolean if a field has been set.

func (EntityHolderRestPullRequestReopenRequest) MarshalJSON ¶

func (*EntityHolderRestPullRequestReopenRequest) SetEntity ¶

SetEntity gets a reference to the given EntityHolderRestPullRequestReopenRequestEntity and assigns it to the Entity field.

func (EntityHolderRestPullRequestReopenRequest) ToMap ¶

func (o EntityHolderRestPullRequestReopenRequest) ToMap() (map[string]interface{}, error)

type EntityHolderRestPullRequestReopenRequestEntity ¶

type EntityHolderRestPullRequestReopenRequestEntity struct {
	Version *int32 `json:"version,omitempty"`
}

EntityHolderRestPullRequestReopenRequestEntity struct for EntityHolderRestPullRequestReopenRequestEntity

func NewEntityHolderRestPullRequestReopenRequestEntity ¶

func NewEntityHolderRestPullRequestReopenRequestEntity() *EntityHolderRestPullRequestReopenRequestEntity

NewEntityHolderRestPullRequestReopenRequestEntity instantiates a new EntityHolderRestPullRequestReopenRequestEntity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewEntityHolderRestPullRequestReopenRequestEntityWithDefaults ¶

func NewEntityHolderRestPullRequestReopenRequestEntityWithDefaults() *EntityHolderRestPullRequestReopenRequestEntity

NewEntityHolderRestPullRequestReopenRequestEntityWithDefaults instantiates a new EntityHolderRestPullRequestReopenRequestEntity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*EntityHolderRestPullRequestReopenRequestEntity) GetVersion ¶

GetVersion returns the Version field value if set, zero value otherwise.

func (*EntityHolderRestPullRequestReopenRequestEntity) GetVersionOk ¶

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*EntityHolderRestPullRequestReopenRequestEntity) HasVersion ¶

HasVersion returns a boolean if a field has been set.

func (EntityHolderRestPullRequestReopenRequestEntity) MarshalJSON ¶

func (*EntityHolderRestPullRequestReopenRequestEntity) SetVersion ¶

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (EntityHolderRestPullRequestReopenRequestEntity) ToMap ¶

func (o EntityHolderRestPullRequestReopenRequestEntity) ToMap() (map[string]interface{}, error)

type ExampleFiles ¶

type ExampleFiles struct {
	Files *ExampleJsonLastModifiedCallback `json:"files,omitempty"`
}

ExampleFiles struct for ExampleFiles

func NewExampleFiles ¶

func NewExampleFiles() *ExampleFiles

NewExampleFiles instantiates a new ExampleFiles object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExampleFilesWithDefaults ¶

func NewExampleFilesWithDefaults() *ExampleFiles

NewExampleFilesWithDefaults instantiates a new ExampleFiles object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExampleFiles) GetFiles ¶

GetFiles returns the Files field value if set, zero value otherwise.

func (*ExampleFiles) GetFilesOk ¶

GetFilesOk returns a tuple with the Files field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleFiles) HasFiles ¶

func (o *ExampleFiles) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (ExampleFiles) MarshalJSON ¶

func (o ExampleFiles) MarshalJSON() ([]byte, error)

func (*ExampleFiles) SetFiles ¶

SetFiles gets a reference to the given ExampleJsonLastModifiedCallback and assigns it to the Files field.

func (ExampleFiles) ToMap ¶

func (o ExampleFiles) ToMap() (map[string]interface{}, error)

type ExampleJsonLastModifiedCallback ¶

type ExampleJsonLastModifiedCallback struct {
	PomXml       *RestChangesetToCommit `json:"pomXml,omitempty"`
	ReadmeMd     *RestChangesetToCommit `json:"readmeMd,omitempty"`
	LatestCommit *RestChangesetToCommit `json:"latestCommit,omitempty"`
}

ExampleJsonLastModifiedCallback struct for ExampleJsonLastModifiedCallback

func NewExampleJsonLastModifiedCallback ¶

func NewExampleJsonLastModifiedCallback() *ExampleJsonLastModifiedCallback

NewExampleJsonLastModifiedCallback instantiates a new ExampleJsonLastModifiedCallback object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExampleJsonLastModifiedCallbackWithDefaults ¶

func NewExampleJsonLastModifiedCallbackWithDefaults() *ExampleJsonLastModifiedCallback

NewExampleJsonLastModifiedCallbackWithDefaults instantiates a new ExampleJsonLastModifiedCallback object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExampleJsonLastModifiedCallback) GetLatestCommit ¶

GetLatestCommit returns the LatestCommit field value if set, zero value otherwise.

func (*ExampleJsonLastModifiedCallback) GetLatestCommitOk ¶

func (o *ExampleJsonLastModifiedCallback) GetLatestCommitOk() (*RestChangesetToCommit, bool)

GetLatestCommitOk returns a tuple with the LatestCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleJsonLastModifiedCallback) GetPomXml ¶

GetPomXml returns the PomXml field value if set, zero value otherwise.

func (*ExampleJsonLastModifiedCallback) GetPomXmlOk ¶

GetPomXmlOk returns a tuple with the PomXml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleJsonLastModifiedCallback) GetReadmeMd ¶

GetReadmeMd returns the ReadmeMd field value if set, zero value otherwise.

func (*ExampleJsonLastModifiedCallback) GetReadmeMdOk ¶

GetReadmeMdOk returns a tuple with the ReadmeMd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleJsonLastModifiedCallback) HasLatestCommit ¶

func (o *ExampleJsonLastModifiedCallback) HasLatestCommit() bool

HasLatestCommit returns a boolean if a field has been set.

func (*ExampleJsonLastModifiedCallback) HasPomXml ¶

func (o *ExampleJsonLastModifiedCallback) HasPomXml() bool

HasPomXml returns a boolean if a field has been set.

func (*ExampleJsonLastModifiedCallback) HasReadmeMd ¶

func (o *ExampleJsonLastModifiedCallback) HasReadmeMd() bool

HasReadmeMd returns a boolean if a field has been set.

func (ExampleJsonLastModifiedCallback) MarshalJSON ¶

func (o ExampleJsonLastModifiedCallback) MarshalJSON() ([]byte, error)

func (*ExampleJsonLastModifiedCallback) SetLatestCommit ¶

SetLatestCommit gets a reference to the given RestChangesetToCommit and assigns it to the LatestCommit field.

func (*ExampleJsonLastModifiedCallback) SetPomXml ¶

SetPomXml gets a reference to the given RestChangesetToCommit and assigns it to the PomXml field.

func (*ExampleJsonLastModifiedCallback) SetReadmeMd ¶

SetReadmeMd gets a reference to the given RestChangesetToCommit and assigns it to the ReadmeMd field.

func (ExampleJsonLastModifiedCallback) ToMap ¶

func (o ExampleJsonLastModifiedCallback) ToMap() (map[string]interface{}, error)

type ExamplePreviewMigration ¶

type ExamplePreviewMigration struct {
	Repositories []RestRepository `json:"repositories,omitempty"`
}

ExamplePreviewMigration struct for ExamplePreviewMigration

func NewExamplePreviewMigration ¶

func NewExamplePreviewMigration() *ExamplePreviewMigration

NewExamplePreviewMigration instantiates a new ExamplePreviewMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExamplePreviewMigrationWithDefaults ¶

func NewExamplePreviewMigrationWithDefaults() *ExamplePreviewMigration

NewExamplePreviewMigrationWithDefaults instantiates a new ExamplePreviewMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExamplePreviewMigration) GetRepositories ¶

func (o *ExamplePreviewMigration) GetRepositories() []RestRepository

GetRepositories returns the Repositories field value if set, zero value otherwise.

func (*ExamplePreviewMigration) GetRepositoriesOk ¶

func (o *ExamplePreviewMigration) GetRepositoriesOk() ([]RestRepository, bool)

GetRepositoriesOk returns a tuple with the Repositories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExamplePreviewMigration) HasRepositories ¶

func (o *ExamplePreviewMigration) HasRepositories() bool

HasRepositories returns a boolean if a field has been set.

func (ExamplePreviewMigration) MarshalJSON ¶

func (o ExamplePreviewMigration) MarshalJSON() ([]byte, error)

func (*ExamplePreviewMigration) SetRepositories ¶

func (o *ExamplePreviewMigration) SetRepositories(v []RestRepository)

SetRepositories gets a reference to the given []RestRepository and assigns it to the Repositories field.

func (ExamplePreviewMigration) ToMap ¶

func (o ExamplePreviewMigration) ToMap() (map[string]interface{}, error)

type ExamplePutMultipartFormData ¶

type ExamplePutMultipartFormData struct {
	// The hook script contents.
	Content *string `json:"content,omitempty"`
	// A description of the hook script (useful when querying registered hook scripts).
	Description *string `json:"description,omitempty"`
	// The name of the hook script (useful when querying registered hook scripts).
	Name *string `json:"name,omitempty"`
}

ExamplePutMultipartFormData struct for ExamplePutMultipartFormData

func NewExamplePutMultipartFormData ¶

func NewExamplePutMultipartFormData() *ExamplePutMultipartFormData

NewExamplePutMultipartFormData instantiates a new ExamplePutMultipartFormData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExamplePutMultipartFormDataWithDefaults ¶

func NewExamplePutMultipartFormDataWithDefaults() *ExamplePutMultipartFormData

NewExamplePutMultipartFormDataWithDefaults instantiates a new ExamplePutMultipartFormData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExamplePutMultipartFormData) GetContent ¶

func (o *ExamplePutMultipartFormData) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*ExamplePutMultipartFormData) GetContentOk ¶

func (o *ExamplePutMultipartFormData) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExamplePutMultipartFormData) GetDescription ¶

func (o *ExamplePutMultipartFormData) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ExamplePutMultipartFormData) GetDescriptionOk ¶

func (o *ExamplePutMultipartFormData) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExamplePutMultipartFormData) GetName ¶

func (o *ExamplePutMultipartFormData) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ExamplePutMultipartFormData) GetNameOk ¶

func (o *ExamplePutMultipartFormData) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExamplePutMultipartFormData) HasContent ¶

func (o *ExamplePutMultipartFormData) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*ExamplePutMultipartFormData) HasDescription ¶

func (o *ExamplePutMultipartFormData) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ExamplePutMultipartFormData) HasName ¶

func (o *ExamplePutMultipartFormData) HasName() bool

HasName returns a boolean if a field has been set.

func (ExamplePutMultipartFormData) MarshalJSON ¶

func (o ExamplePutMultipartFormData) MarshalJSON() ([]byte, error)

func (*ExamplePutMultipartFormData) SetContent ¶

func (o *ExamplePutMultipartFormData) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*ExamplePutMultipartFormData) SetDescription ¶

func (o *ExamplePutMultipartFormData) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ExamplePutMultipartFormData) SetName ¶

func (o *ExamplePutMultipartFormData) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ExamplePutMultipartFormData) ToMap ¶

func (o ExamplePutMultipartFormData) ToMap() (map[string]interface{}, error)

type ExampleRequirements ¶

type ExampleRequirements struct {
	Enabled *bool   `json:"enabled,omitempty"`
	Count   *string `json:"count,omitempty"`
}

ExampleRequirements struct for ExampleRequirements

func NewExampleRequirements ¶

func NewExampleRequirements() *ExampleRequirements

NewExampleRequirements instantiates a new ExampleRequirements object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExampleRequirementsWithDefaults ¶

func NewExampleRequirementsWithDefaults() *ExampleRequirements

NewExampleRequirementsWithDefaults instantiates a new ExampleRequirements object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExampleRequirements) GetCount ¶

func (o *ExampleRequirements) GetCount() string

GetCount returns the Count field value if set, zero value otherwise.

func (*ExampleRequirements) GetCountOk ¶

func (o *ExampleRequirements) GetCountOk() (*string, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleRequirements) GetEnabled ¶

func (o *ExampleRequirements) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*ExampleRequirements) GetEnabledOk ¶

func (o *ExampleRequirements) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleRequirements) HasCount ¶

func (o *ExampleRequirements) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ExampleRequirements) HasEnabled ¶

func (o *ExampleRequirements) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (ExampleRequirements) MarshalJSON ¶

func (o ExampleRequirements) MarshalJSON() ([]byte, error)

func (*ExampleRequirements) SetCount ¶

func (o *ExampleRequirements) SetCount(v string)

SetCount gets a reference to the given string and assigns it to the Count field.

func (*ExampleRequirements) SetEnabled ¶

func (o *ExampleRequirements) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (ExampleRequirements) ToMap ¶

func (o ExampleRequirements) ToMap() (map[string]interface{}, error)

type ExampleSettings ¶

type ExampleSettings struct {
	StringValue  *string  `json:"stringValue,omitempty"`
	BooleanValue *bool    `json:"booleanValue,omitempty"`
	DoubleValue  *float64 `json:"doubleValue,omitempty"`
	IntegerValue *int32   `json:"integerValue,omitempty"`
	LongValue    *int64   `json:"longValue,omitempty"`
}

ExampleSettings struct for ExampleSettings

func NewExampleSettings ¶

func NewExampleSettings() *ExampleSettings

NewExampleSettings instantiates a new ExampleSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExampleSettingsWithDefaults ¶

func NewExampleSettingsWithDefaults() *ExampleSettings

NewExampleSettingsWithDefaults instantiates a new ExampleSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExampleSettings) GetBooleanValue ¶

func (o *ExampleSettings) GetBooleanValue() bool

GetBooleanValue returns the BooleanValue field value if set, zero value otherwise.

func (*ExampleSettings) GetBooleanValueOk ¶

func (o *ExampleSettings) GetBooleanValueOk() (*bool, bool)

GetBooleanValueOk returns a tuple with the BooleanValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSettings) GetDoubleValue ¶

func (o *ExampleSettings) GetDoubleValue() float64

GetDoubleValue returns the DoubleValue field value if set, zero value otherwise.

func (*ExampleSettings) GetDoubleValueOk ¶

func (o *ExampleSettings) GetDoubleValueOk() (*float64, bool)

GetDoubleValueOk returns a tuple with the DoubleValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSettings) GetIntegerValue ¶

func (o *ExampleSettings) GetIntegerValue() int32

GetIntegerValue returns the IntegerValue field value if set, zero value otherwise.

func (*ExampleSettings) GetIntegerValueOk ¶

func (o *ExampleSettings) GetIntegerValueOk() (*int32, bool)

GetIntegerValueOk returns a tuple with the IntegerValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSettings) GetLongValue ¶

func (o *ExampleSettings) GetLongValue() int64

GetLongValue returns the LongValue field value if set, zero value otherwise.

func (*ExampleSettings) GetLongValueOk ¶

func (o *ExampleSettings) GetLongValueOk() (*int64, bool)

GetLongValueOk returns a tuple with the LongValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSettings) GetStringValue ¶

func (o *ExampleSettings) GetStringValue() string

GetStringValue returns the StringValue field value if set, zero value otherwise.

func (*ExampleSettings) GetStringValueOk ¶

func (o *ExampleSettings) GetStringValueOk() (*string, bool)

GetStringValueOk returns a tuple with the StringValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSettings) HasBooleanValue ¶

func (o *ExampleSettings) HasBooleanValue() bool

HasBooleanValue returns a boolean if a field has been set.

func (*ExampleSettings) HasDoubleValue ¶

func (o *ExampleSettings) HasDoubleValue() bool

HasDoubleValue returns a boolean if a field has been set.

func (*ExampleSettings) HasIntegerValue ¶

func (o *ExampleSettings) HasIntegerValue() bool

HasIntegerValue returns a boolean if a field has been set.

func (*ExampleSettings) HasLongValue ¶

func (o *ExampleSettings) HasLongValue() bool

HasLongValue returns a boolean if a field has been set.

func (*ExampleSettings) HasStringValue ¶

func (o *ExampleSettings) HasStringValue() bool

HasStringValue returns a boolean if a field has been set.

func (ExampleSettings) MarshalJSON ¶

func (o ExampleSettings) MarshalJSON() ([]byte, error)

func (*ExampleSettings) SetBooleanValue ¶

func (o *ExampleSettings) SetBooleanValue(v bool)

SetBooleanValue gets a reference to the given bool and assigns it to the BooleanValue field.

func (*ExampleSettings) SetDoubleValue ¶

func (o *ExampleSettings) SetDoubleValue(v float64)

SetDoubleValue gets a reference to the given float64 and assigns it to the DoubleValue field.

func (*ExampleSettings) SetIntegerValue ¶

func (o *ExampleSettings) SetIntegerValue(v int32)

SetIntegerValue gets a reference to the given int32 and assigns it to the IntegerValue field.

func (*ExampleSettings) SetLongValue ¶

func (o *ExampleSettings) SetLongValue(v int64)

SetLongValue gets a reference to the given int64 and assigns it to the LongValue field.

func (*ExampleSettings) SetStringValue ¶

func (o *ExampleSettings) SetStringValue(v string)

SetStringValue gets a reference to the given string and assigns it to the StringValue field.

func (ExampleSettings) ToMap ¶

func (o ExampleSettings) ToMap() (map[string]interface{}, error)

type ExampleSettingsMap ¶

type ExampleSettingsMap struct {
	StringKey  *string  `json:"string key,omitempty"`
	BooleanKey *bool    `json:"boolean key,omitempty"`
	LongKey    *float32 `json:"long key,omitempty"`
}

ExampleSettingsMap struct for ExampleSettingsMap

func NewExampleSettingsMap ¶

func NewExampleSettingsMap() *ExampleSettingsMap

NewExampleSettingsMap instantiates a new ExampleSettingsMap object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExampleSettingsMapWithDefaults ¶

func NewExampleSettingsMapWithDefaults() *ExampleSettingsMap

NewExampleSettingsMapWithDefaults instantiates a new ExampleSettingsMap object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExampleSettingsMap) GetBooleanKey ¶

func (o *ExampleSettingsMap) GetBooleanKey() bool

GetBooleanKey returns the BooleanKey field value if set, zero value otherwise.

func (*ExampleSettingsMap) GetBooleanKeyOk ¶

func (o *ExampleSettingsMap) GetBooleanKeyOk() (*bool, bool)

GetBooleanKeyOk returns a tuple with the BooleanKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSettingsMap) GetLongKey ¶

func (o *ExampleSettingsMap) GetLongKey() float32

GetLongKey returns the LongKey field value if set, zero value otherwise.

func (*ExampleSettingsMap) GetLongKeyOk ¶

func (o *ExampleSettingsMap) GetLongKeyOk() (*float32, bool)

GetLongKeyOk returns a tuple with the LongKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSettingsMap) GetStringKey ¶

func (o *ExampleSettingsMap) GetStringKey() string

GetStringKey returns the StringKey field value if set, zero value otherwise.

func (*ExampleSettingsMap) GetStringKeyOk ¶

func (o *ExampleSettingsMap) GetStringKeyOk() (*string, bool)

GetStringKeyOk returns a tuple with the StringKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSettingsMap) HasBooleanKey ¶

func (o *ExampleSettingsMap) HasBooleanKey() bool

HasBooleanKey returns a boolean if a field has been set.

func (*ExampleSettingsMap) HasLongKey ¶

func (o *ExampleSettingsMap) HasLongKey() bool

HasLongKey returns a boolean if a field has been set.

func (*ExampleSettingsMap) HasStringKey ¶

func (o *ExampleSettingsMap) HasStringKey() bool

HasStringKey returns a boolean if a field has been set.

func (ExampleSettingsMap) MarshalJSON ¶

func (o ExampleSettingsMap) MarshalJSON() ([]byte, error)

func (*ExampleSettingsMap) SetBooleanKey ¶

func (o *ExampleSettingsMap) SetBooleanKey(v bool)

SetBooleanKey gets a reference to the given bool and assigns it to the BooleanKey field.

func (*ExampleSettingsMap) SetLongKey ¶

func (o *ExampleSettingsMap) SetLongKey(v float32)

SetLongKey gets a reference to the given float32 and assigns it to the LongKey field.

func (*ExampleSettingsMap) SetStringKey ¶

func (o *ExampleSettingsMap) SetStringKey(v string)

SetStringKey gets a reference to the given string and assigns it to the StringKey field.

func (ExampleSettingsMap) ToMap ¶

func (o ExampleSettingsMap) ToMap() (map[string]interface{}, error)

type ExampleSocketAddress ¶

type ExampleSocketAddress struct {
	Address *string `json:"address,omitempty"`
	Port    *int32  `json:"port,omitempty"`
}

ExampleSocketAddress struct for ExampleSocketAddress

func NewExampleSocketAddress ¶

func NewExampleSocketAddress() *ExampleSocketAddress

NewExampleSocketAddress instantiates a new ExampleSocketAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExampleSocketAddressWithDefaults ¶

func NewExampleSocketAddressWithDefaults() *ExampleSocketAddress

NewExampleSocketAddressWithDefaults instantiates a new ExampleSocketAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExampleSocketAddress) GetAddress ¶

func (o *ExampleSocketAddress) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*ExampleSocketAddress) GetAddressOk ¶

func (o *ExampleSocketAddress) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSocketAddress) GetPort ¶

func (o *ExampleSocketAddress) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*ExampleSocketAddress) GetPortOk ¶

func (o *ExampleSocketAddress) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleSocketAddress) HasAddress ¶

func (o *ExampleSocketAddress) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*ExampleSocketAddress) HasPort ¶

func (o *ExampleSocketAddress) HasPort() bool

HasPort returns a boolean if a field has been set.

func (ExampleSocketAddress) MarshalJSON ¶

func (o ExampleSocketAddress) MarshalJSON() ([]byte, error)

func (*ExampleSocketAddress) SetAddress ¶

func (o *ExampleSocketAddress) SetAddress(v string)

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*ExampleSocketAddress) SetPort ¶

func (o *ExampleSocketAddress) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (ExampleSocketAddress) ToMap ¶

func (o ExampleSocketAddress) ToMap() (map[string]interface{}, error)

type ExampleStatus ¶

type ExampleStatus struct {
	ServerId             *string `json:"serverId,omitempty"`
	CurrentNumberOfUsers *int32  `json:"currentNumberOfUsers,omitempty"`
}

ExampleStatus struct for ExampleStatus

func NewExampleStatus ¶

func NewExampleStatus() *ExampleStatus

NewExampleStatus instantiates a new ExampleStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExampleStatusWithDefaults ¶

func NewExampleStatusWithDefaults() *ExampleStatus

NewExampleStatusWithDefaults instantiates a new ExampleStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExampleStatus) GetCurrentNumberOfUsers ¶

func (o *ExampleStatus) GetCurrentNumberOfUsers() int32

GetCurrentNumberOfUsers returns the CurrentNumberOfUsers field value if set, zero value otherwise.

func (*ExampleStatus) GetCurrentNumberOfUsersOk ¶

func (o *ExampleStatus) GetCurrentNumberOfUsersOk() (*int32, bool)

GetCurrentNumberOfUsersOk returns a tuple with the CurrentNumberOfUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleStatus) GetServerId ¶

func (o *ExampleStatus) GetServerId() string

GetServerId returns the ServerId field value if set, zero value otherwise.

func (*ExampleStatus) GetServerIdOk ¶

func (o *ExampleStatus) GetServerIdOk() (*string, bool)

GetServerIdOk returns a tuple with the ServerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExampleStatus) HasCurrentNumberOfUsers ¶

func (o *ExampleStatus) HasCurrentNumberOfUsers() bool

HasCurrentNumberOfUsers returns a boolean if a field has been set.

func (*ExampleStatus) HasServerId ¶

func (o *ExampleStatus) HasServerId() bool

HasServerId returns a boolean if a field has been set.

func (ExampleStatus) MarshalJSON ¶

func (o ExampleStatus) MarshalJSON() ([]byte, error)

func (*ExampleStatus) SetCurrentNumberOfUsers ¶

func (o *ExampleStatus) SetCurrentNumberOfUsers(v int32)

SetCurrentNumberOfUsers gets a reference to the given int32 and assigns it to the CurrentNumberOfUsers field.

func (*ExampleStatus) SetServerId ¶

func (o *ExampleStatus) SetServerId(v string)

SetServerId gets a reference to the given string and assigns it to the ServerId field.

func (ExampleStatus) ToMap ¶

func (o ExampleStatus) ToMap() (map[string]interface{}, error)

type FilePart ¶

type FilePart struct {
	ContentType *string                `json:"contentType,omitempty"`
	FormField   *bool                  `json:"formField,omitempty"`
	InputStream map[string]interface{} `json:"inputStream,omitempty"`
	Name        *string                `json:"name,omitempty"`
	Size        *int64                 `json:"size,omitempty"`
	Value       *string                `json:"value,omitempty"`
}

FilePart struct for FilePart

func NewFilePart ¶

func NewFilePart() *FilePart

NewFilePart instantiates a new FilePart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFilePartWithDefaults ¶

func NewFilePartWithDefaults() *FilePart

NewFilePartWithDefaults instantiates a new FilePart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FilePart) GetContentType ¶

func (o *FilePart) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*FilePart) GetContentTypeOk ¶

func (o *FilePart) GetContentTypeOk() (*string, bool)

GetContentTypeOk returns a tuple with the ContentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePart) GetFormField ¶

func (o *FilePart) GetFormField() bool

GetFormField returns the FormField field value if set, zero value otherwise.

func (*FilePart) GetFormFieldOk ¶

func (o *FilePart) GetFormFieldOk() (*bool, bool)

GetFormFieldOk returns a tuple with the FormField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePart) GetInputStream ¶

func (o *FilePart) GetInputStream() map[string]interface{}

GetInputStream returns the InputStream field value if set, zero value otherwise.

func (*FilePart) GetInputStreamOk ¶

func (o *FilePart) GetInputStreamOk() (map[string]interface{}, bool)

GetInputStreamOk returns a tuple with the InputStream field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePart) GetName ¶

func (o *FilePart) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*FilePart) GetNameOk ¶

func (o *FilePart) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePart) GetSize ¶

func (o *FilePart) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise.

func (*FilePart) GetSizeOk ¶

func (o *FilePart) GetSizeOk() (*int64, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePart) GetValue ¶

func (o *FilePart) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*FilePart) GetValueOk ¶

func (o *FilePart) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FilePart) HasContentType ¶

func (o *FilePart) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*FilePart) HasFormField ¶

func (o *FilePart) HasFormField() bool

HasFormField returns a boolean if a field has been set.

func (*FilePart) HasInputStream ¶

func (o *FilePart) HasInputStream() bool

HasInputStream returns a boolean if a field has been set.

func (*FilePart) HasName ¶

func (o *FilePart) HasName() bool

HasName returns a boolean if a field has been set.

func (*FilePart) HasSize ¶

func (o *FilePart) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*FilePart) HasValue ¶

func (o *FilePart) HasValue() bool

HasValue returns a boolean if a field has been set.

func (FilePart) MarshalJSON ¶

func (o FilePart) MarshalJSON() ([]byte, error)

func (*FilePart) SetContentType ¶

func (o *FilePart) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*FilePart) SetFormField ¶

func (o *FilePart) SetFormField(v bool)

SetFormField gets a reference to the given bool and assigns it to the FormField field.

func (*FilePart) SetInputStream ¶

func (o *FilePart) SetInputStream(v map[string]interface{})

SetInputStream gets a reference to the given map[string]interface{} and assigns it to the InputStream field.

func (*FilePart) SetName ¶

func (o *FilePart) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*FilePart) SetSize ¶

func (o *FilePart) SetSize(v int64)

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (*FilePart) SetValue ¶

func (o *FilePart) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (FilePart) ToMap ¶

func (o FilePart) ToMap() (map[string]interface{}, error)

type FindByCommit200Response ¶

type FindByCommit200Response struct {
	Values        []RestMinimalRef `json:"values,omitempty"`
	Size          *float32         `json:"size,omitempty"`
	Limit         *float32         `json:"limit,omitempty"`
	IsLastPage    *bool            `json:"isLastPage,omitempty"`
	NextPageStart *int32           `json:"nextPageStart,omitempty"`
	Start         *int32           `json:"start,omitempty"`
}

FindByCommit200Response struct for FindByCommit200Response

func NewFindByCommit200Response ¶

func NewFindByCommit200Response() *FindByCommit200Response

NewFindByCommit200Response instantiates a new FindByCommit200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFindByCommit200ResponseWithDefaults ¶

func NewFindByCommit200ResponseWithDefaults() *FindByCommit200Response

NewFindByCommit200ResponseWithDefaults instantiates a new FindByCommit200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FindByCommit200Response) GetIsLastPage ¶

func (o *FindByCommit200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*FindByCommit200Response) GetIsLastPageOk ¶

func (o *FindByCommit200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindByCommit200Response) GetLimit ¶

func (o *FindByCommit200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*FindByCommit200Response) GetLimitOk ¶

func (o *FindByCommit200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindByCommit200Response) GetNextPageStart ¶

func (o *FindByCommit200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*FindByCommit200Response) GetNextPageStartOk ¶

func (o *FindByCommit200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindByCommit200Response) GetSize ¶

func (o *FindByCommit200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*FindByCommit200Response) GetSizeOk ¶

func (o *FindByCommit200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindByCommit200Response) GetStart ¶

func (o *FindByCommit200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*FindByCommit200Response) GetStartOk ¶

func (o *FindByCommit200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindByCommit200Response) GetValues ¶

func (o *FindByCommit200Response) GetValues() []RestMinimalRef

GetValues returns the Values field value if set, zero value otherwise.

func (*FindByCommit200Response) GetValuesOk ¶

func (o *FindByCommit200Response) GetValuesOk() ([]RestMinimalRef, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindByCommit200Response) HasIsLastPage ¶

func (o *FindByCommit200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*FindByCommit200Response) HasLimit ¶

func (o *FindByCommit200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*FindByCommit200Response) HasNextPageStart ¶

func (o *FindByCommit200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*FindByCommit200Response) HasSize ¶

func (o *FindByCommit200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*FindByCommit200Response) HasStart ¶

func (o *FindByCommit200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*FindByCommit200Response) HasValues ¶

func (o *FindByCommit200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (FindByCommit200Response) MarshalJSON ¶

func (o FindByCommit200Response) MarshalJSON() ([]byte, error)

func (*FindByCommit200Response) SetIsLastPage ¶

func (o *FindByCommit200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*FindByCommit200Response) SetLimit ¶

func (o *FindByCommit200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*FindByCommit200Response) SetNextPageStart ¶

func (o *FindByCommit200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*FindByCommit200Response) SetSize ¶

func (o *FindByCommit200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*FindByCommit200Response) SetStart ¶

func (o *FindByCommit200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*FindByCommit200Response) SetValues ¶

func (o *FindByCommit200Response) SetValues(v []RestMinimalRef)

SetValues gets a reference to the given []RestMinimalRef and assigns it to the Values field.

func (FindByCommit200Response) ToMap ¶

func (o FindByCommit200Response) ToMap() (map[string]interface{}, error)

type FindUsersInGroup200Response ¶

type FindUsersInGroup200Response struct {
	Values        []RestDetailedUser `json:"values,omitempty"`
	Size          *float32           `json:"size,omitempty"`
	Limit         *float32           `json:"limit,omitempty"`
	IsLastPage    *bool              `json:"isLastPage,omitempty"`
	NextPageStart *int32             `json:"nextPageStart,omitempty"`
	Start         *int32             `json:"start,omitempty"`
}

FindUsersInGroup200Response struct for FindUsersInGroup200Response

func NewFindUsersInGroup200Response ¶

func NewFindUsersInGroup200Response() *FindUsersInGroup200Response

NewFindUsersInGroup200Response instantiates a new FindUsersInGroup200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFindUsersInGroup200ResponseWithDefaults ¶

func NewFindUsersInGroup200ResponseWithDefaults() *FindUsersInGroup200Response

NewFindUsersInGroup200ResponseWithDefaults instantiates a new FindUsersInGroup200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*FindUsersInGroup200Response) GetIsLastPage ¶

func (o *FindUsersInGroup200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*FindUsersInGroup200Response) GetIsLastPageOk ¶

func (o *FindUsersInGroup200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindUsersInGroup200Response) GetLimit ¶

func (o *FindUsersInGroup200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*FindUsersInGroup200Response) GetLimitOk ¶

func (o *FindUsersInGroup200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindUsersInGroup200Response) GetNextPageStart ¶

func (o *FindUsersInGroup200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*FindUsersInGroup200Response) GetNextPageStartOk ¶

func (o *FindUsersInGroup200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindUsersInGroup200Response) GetSize ¶

func (o *FindUsersInGroup200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*FindUsersInGroup200Response) GetSizeOk ¶

func (o *FindUsersInGroup200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindUsersInGroup200Response) GetStart ¶

func (o *FindUsersInGroup200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*FindUsersInGroup200Response) GetStartOk ¶

func (o *FindUsersInGroup200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindUsersInGroup200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*FindUsersInGroup200Response) GetValuesOk ¶

func (o *FindUsersInGroup200Response) GetValuesOk() ([]RestDetailedUser, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*FindUsersInGroup200Response) HasIsLastPage ¶

func (o *FindUsersInGroup200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*FindUsersInGroup200Response) HasLimit ¶

func (o *FindUsersInGroup200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*FindUsersInGroup200Response) HasNextPageStart ¶

func (o *FindUsersInGroup200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*FindUsersInGroup200Response) HasSize ¶

func (o *FindUsersInGroup200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*FindUsersInGroup200Response) HasStart ¶

func (o *FindUsersInGroup200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*FindUsersInGroup200Response) HasValues ¶

func (o *FindUsersInGroup200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (FindUsersInGroup200Response) MarshalJSON ¶

func (o FindUsersInGroup200Response) MarshalJSON() ([]byte, error)

func (*FindUsersInGroup200Response) SetIsLastPage ¶

func (o *FindUsersInGroup200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*FindUsersInGroup200Response) SetLimit ¶

func (o *FindUsersInGroup200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*FindUsersInGroup200Response) SetNextPageStart ¶

func (o *FindUsersInGroup200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*FindUsersInGroup200Response) SetSize ¶

func (o *FindUsersInGroup200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*FindUsersInGroup200Response) SetStart ¶

func (o *FindUsersInGroup200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*FindUsersInGroup200Response) SetValues ¶

SetValues gets a reference to the given []RestDetailedUser and assigns it to the Values field.

func (FindUsersInGroup200Response) ToMap ¶

func (o FindUsersInGroup200Response) ToMap() (map[string]interface{}, error)

type GenericOpenAPIError ¶

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body ¶

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error ¶

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model ¶

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetActivities200Response ¶

type GetActivities200Response struct {
	Values        []RestPullRequestActivity `json:"values,omitempty"`
	Size          *float32                  `json:"size,omitempty"`
	Limit         *float32                  `json:"limit,omitempty"`
	IsLastPage    *bool                     `json:"isLastPage,omitempty"`
	NextPageStart *int32                    `json:"nextPageStart,omitempty"`
	Start         *int32                    `json:"start,omitempty"`
}

GetActivities200Response struct for GetActivities200Response

func NewGetActivities200Response ¶

func NewGetActivities200Response() *GetActivities200Response

NewGetActivities200Response instantiates a new GetActivities200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetActivities200ResponseWithDefaults ¶

func NewGetActivities200ResponseWithDefaults() *GetActivities200Response

NewGetActivities200ResponseWithDefaults instantiates a new GetActivities200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetActivities200Response) GetIsLastPage ¶

func (o *GetActivities200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetActivities200Response) GetIsLastPageOk ¶

func (o *GetActivities200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetActivities200Response) GetLimit ¶

func (o *GetActivities200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetActivities200Response) GetLimitOk ¶

func (o *GetActivities200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetActivities200Response) GetNextPageStart ¶

func (o *GetActivities200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetActivities200Response) GetNextPageStartOk ¶

func (o *GetActivities200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetActivities200Response) GetSize ¶

func (o *GetActivities200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetActivities200Response) GetSizeOk ¶

func (o *GetActivities200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetActivities200Response) GetStart ¶

func (o *GetActivities200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetActivities200Response) GetStartOk ¶

func (o *GetActivities200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetActivities200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetActivities200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetActivities200Response) HasIsLastPage ¶

func (o *GetActivities200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetActivities200Response) HasLimit ¶

func (o *GetActivities200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetActivities200Response) HasNextPageStart ¶

func (o *GetActivities200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetActivities200Response) HasSize ¶

func (o *GetActivities200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetActivities200Response) HasStart ¶

func (o *GetActivities200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetActivities200Response) HasValues ¶

func (o *GetActivities200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetActivities200Response) MarshalJSON ¶

func (o GetActivities200Response) MarshalJSON() ([]byte, error)

func (*GetActivities200Response) SetIsLastPage ¶

func (o *GetActivities200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetActivities200Response) SetLimit ¶

func (o *GetActivities200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetActivities200Response) SetNextPageStart ¶

func (o *GetActivities200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetActivities200Response) SetSize ¶

func (o *GetActivities200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetActivities200Response) SetStart ¶

func (o *GetActivities200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetActivities200Response) SetValues ¶

SetValues gets a reference to the given []RestPullRequestActivity and assigns it to the Values field.

func (GetActivities200Response) ToMap ¶

func (o GetActivities200Response) ToMap() (map[string]interface{}, error)

type GetAll200Response ¶

type GetAll200Response struct {
	Values        []RestProjectSettingsRestriction `json:"values,omitempty"`
	Size          *float32                         `json:"size,omitempty"`
	Limit         *float32                         `json:"limit,omitempty"`
	IsLastPage    *bool                            `json:"isLastPage,omitempty"`
	NextPageStart *int32                           `json:"nextPageStart,omitempty"`
	Start         *int32                           `json:"start,omitempty"`
}

GetAll200Response struct for GetAll200Response

func NewGetAll200Response ¶

func NewGetAll200Response() *GetAll200Response

NewGetAll200Response instantiates a new GetAll200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetAll200ResponseWithDefaults ¶

func NewGetAll200ResponseWithDefaults() *GetAll200Response

NewGetAll200ResponseWithDefaults instantiates a new GetAll200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetAll200Response) GetIsLastPage ¶

func (o *GetAll200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetAll200Response) GetIsLastPageOk ¶

func (o *GetAll200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAll200Response) GetLimit ¶

func (o *GetAll200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetAll200Response) GetLimitOk ¶

func (o *GetAll200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAll200Response) GetNextPageStart ¶

func (o *GetAll200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetAll200Response) GetNextPageStartOk ¶

func (o *GetAll200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAll200Response) GetSize ¶

func (o *GetAll200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetAll200Response) GetSizeOk ¶

func (o *GetAll200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAll200Response) GetStart ¶

func (o *GetAll200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetAll200Response) GetStartOk ¶

func (o *GetAll200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAll200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetAll200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAll200Response) HasIsLastPage ¶

func (o *GetAll200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetAll200Response) HasLimit ¶

func (o *GetAll200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetAll200Response) HasNextPageStart ¶

func (o *GetAll200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetAll200Response) HasSize ¶

func (o *GetAll200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetAll200Response) HasStart ¶

func (o *GetAll200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetAll200Response) HasValues ¶

func (o *GetAll200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetAll200Response) MarshalJSON ¶

func (o GetAll200Response) MarshalJSON() ([]byte, error)

func (*GetAll200Response) SetIsLastPage ¶

func (o *GetAll200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetAll200Response) SetLimit ¶

func (o *GetAll200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetAll200Response) SetNextPageStart ¶

func (o *GetAll200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetAll200Response) SetSize ¶

func (o *GetAll200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetAll200Response) SetStart ¶

func (o *GetAll200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetAll200Response) SetValues ¶

SetValues gets a reference to the given []RestProjectSettingsRestriction and assigns it to the Values field.

func (GetAll200Response) ToMap ¶

func (o GetAll200Response) ToMap() (map[string]interface{}, error)

type GetAllAccessTokens200Response ¶

type GetAllAccessTokens200Response struct {
	Values        []RestAccessToken `json:"values,omitempty"`
	Size          *float32          `json:"size,omitempty"`
	Limit         *float32          `json:"limit,omitempty"`
	IsLastPage    *bool             `json:"isLastPage,omitempty"`
	NextPageStart *int32            `json:"nextPageStart,omitempty"`
	Start         *int32            `json:"start,omitempty"`
}

GetAllAccessTokens200Response struct for GetAllAccessTokens200Response

func NewGetAllAccessTokens200Response ¶

func NewGetAllAccessTokens200Response() *GetAllAccessTokens200Response

NewGetAllAccessTokens200Response instantiates a new GetAllAccessTokens200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetAllAccessTokens200ResponseWithDefaults ¶

func NewGetAllAccessTokens200ResponseWithDefaults() *GetAllAccessTokens200Response

NewGetAllAccessTokens200ResponseWithDefaults instantiates a new GetAllAccessTokens200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetAllAccessTokens200Response) GetIsLastPage ¶

func (o *GetAllAccessTokens200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetAllAccessTokens200Response) GetIsLastPageOk ¶

func (o *GetAllAccessTokens200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllAccessTokens200Response) GetLimit ¶

func (o *GetAllAccessTokens200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetAllAccessTokens200Response) GetLimitOk ¶

func (o *GetAllAccessTokens200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllAccessTokens200Response) GetNextPageStart ¶

func (o *GetAllAccessTokens200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetAllAccessTokens200Response) GetNextPageStartOk ¶

func (o *GetAllAccessTokens200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllAccessTokens200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetAllAccessTokens200Response) GetSizeOk ¶

func (o *GetAllAccessTokens200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllAccessTokens200Response) GetStart ¶

func (o *GetAllAccessTokens200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetAllAccessTokens200Response) GetStartOk ¶

func (o *GetAllAccessTokens200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllAccessTokens200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetAllAccessTokens200Response) GetValuesOk ¶

func (o *GetAllAccessTokens200Response) GetValuesOk() ([]RestAccessToken, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllAccessTokens200Response) HasIsLastPage ¶

func (o *GetAllAccessTokens200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetAllAccessTokens200Response) HasLimit ¶

func (o *GetAllAccessTokens200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetAllAccessTokens200Response) HasNextPageStart ¶

func (o *GetAllAccessTokens200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetAllAccessTokens200Response) HasSize ¶

func (o *GetAllAccessTokens200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetAllAccessTokens200Response) HasStart ¶

func (o *GetAllAccessTokens200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetAllAccessTokens200Response) HasValues ¶

func (o *GetAllAccessTokens200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetAllAccessTokens200Response) MarshalJSON ¶

func (o GetAllAccessTokens200Response) MarshalJSON() ([]byte, error)

func (*GetAllAccessTokens200Response) SetIsLastPage ¶

func (o *GetAllAccessTokens200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetAllAccessTokens200Response) SetLimit ¶

func (o *GetAllAccessTokens200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetAllAccessTokens200Response) SetNextPageStart ¶

func (o *GetAllAccessTokens200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetAllAccessTokens200Response) SetSize ¶

func (o *GetAllAccessTokens200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetAllAccessTokens200Response) SetStart ¶

func (o *GetAllAccessTokens200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetAllAccessTokens200Response) SetValues ¶

SetValues gets a reference to the given []RestAccessToken and assigns it to the Values field.

func (GetAllAccessTokens200Response) ToMap ¶

func (o GetAllAccessTokens200Response) ToMap() (map[string]interface{}, error)

type GetAllAccessTokens401Response ¶

type GetAllAccessTokens401Response struct {
	Errors []RestErrorMessage `json:"errors,omitempty"`
}

GetAllAccessTokens401Response struct for GetAllAccessTokens401Response

func NewGetAllAccessTokens401Response ¶

func NewGetAllAccessTokens401Response() *GetAllAccessTokens401Response

NewGetAllAccessTokens401Response instantiates a new GetAllAccessTokens401Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetAllAccessTokens401ResponseWithDefaults ¶

func NewGetAllAccessTokens401ResponseWithDefaults() *GetAllAccessTokens401Response

NewGetAllAccessTokens401ResponseWithDefaults instantiates a new GetAllAccessTokens401Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetAllAccessTokens401Response) GetErrors ¶

GetErrors returns the Errors field value if set, zero value otherwise.

func (*GetAllAccessTokens401Response) GetErrorsOk ¶

func (o *GetAllAccessTokens401Response) GetErrorsOk() ([]RestErrorMessage, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllAccessTokens401Response) HasErrors ¶

func (o *GetAllAccessTokens401Response) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (GetAllAccessTokens401Response) MarshalJSON ¶

func (o GetAllAccessTokens401Response) MarshalJSON() ([]byte, error)

func (*GetAllAccessTokens401Response) SetErrors ¶

SetErrors gets a reference to the given []RestErrorMessage and assigns it to the Errors field.

func (GetAllAccessTokens401Response) ToMap ¶

func (o GetAllAccessTokens401Response) ToMap() (map[string]interface{}, error)

type GetAllMeshMigrationSummaries200Response ¶

type GetAllMeshMigrationSummaries200Response struct {
	Values        []RestMeshMigrationSummary `json:"values,omitempty"`
	Size          *float32                   `json:"size,omitempty"`
	Limit         *float32                   `json:"limit,omitempty"`
	IsLastPage    *bool                      `json:"isLastPage,omitempty"`
	NextPageStart *int32                     `json:"nextPageStart,omitempty"`
	Start         *int32                     `json:"start,omitempty"`
}

GetAllMeshMigrationSummaries200Response struct for GetAllMeshMigrationSummaries200Response

func NewGetAllMeshMigrationSummaries200Response ¶

func NewGetAllMeshMigrationSummaries200Response() *GetAllMeshMigrationSummaries200Response

NewGetAllMeshMigrationSummaries200Response instantiates a new GetAllMeshMigrationSummaries200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetAllMeshMigrationSummaries200ResponseWithDefaults ¶

func NewGetAllMeshMigrationSummaries200ResponseWithDefaults() *GetAllMeshMigrationSummaries200Response

NewGetAllMeshMigrationSummaries200ResponseWithDefaults instantiates a new GetAllMeshMigrationSummaries200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetAllMeshMigrationSummaries200Response) GetIsLastPage ¶

func (o *GetAllMeshMigrationSummaries200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetAllMeshMigrationSummaries200Response) GetIsLastPageOk ¶

func (o *GetAllMeshMigrationSummaries200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllMeshMigrationSummaries200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetAllMeshMigrationSummaries200Response) GetLimitOk ¶

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllMeshMigrationSummaries200Response) GetNextPageStart ¶

func (o *GetAllMeshMigrationSummaries200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetAllMeshMigrationSummaries200Response) GetNextPageStartOk ¶

func (o *GetAllMeshMigrationSummaries200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllMeshMigrationSummaries200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetAllMeshMigrationSummaries200Response) GetSizeOk ¶

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllMeshMigrationSummaries200Response) GetStart ¶

GetStart returns the Start field value if set, zero value otherwise.

func (*GetAllMeshMigrationSummaries200Response) GetStartOk ¶

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllMeshMigrationSummaries200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetAllMeshMigrationSummaries200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllMeshMigrationSummaries200Response) HasIsLastPage ¶

func (o *GetAllMeshMigrationSummaries200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetAllMeshMigrationSummaries200Response) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*GetAllMeshMigrationSummaries200Response) HasNextPageStart ¶

func (o *GetAllMeshMigrationSummaries200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetAllMeshMigrationSummaries200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetAllMeshMigrationSummaries200Response) HasStart ¶

HasStart returns a boolean if a field has been set.

func (*GetAllMeshMigrationSummaries200Response) HasValues ¶

HasValues returns a boolean if a field has been set.

func (GetAllMeshMigrationSummaries200Response) MarshalJSON ¶

func (o GetAllMeshMigrationSummaries200Response) MarshalJSON() ([]byte, error)

func (*GetAllMeshMigrationSummaries200Response) SetIsLastPage ¶

func (o *GetAllMeshMigrationSummaries200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetAllMeshMigrationSummaries200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetAllMeshMigrationSummaries200Response) SetNextPageStart ¶

func (o *GetAllMeshMigrationSummaries200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetAllMeshMigrationSummaries200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetAllMeshMigrationSummaries200Response) SetStart ¶

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetAllMeshMigrationSummaries200Response) SetValues ¶

SetValues gets a reference to the given []RestMeshMigrationSummary and assigns it to the Values field.

func (GetAllMeshMigrationSummaries200Response) ToMap ¶

func (o GetAllMeshMigrationSummaries200Response) ToMap() (map[string]interface{}, error)

type GetAllRateLimitSettings200Response ¶

type GetAllRateLimitSettings200Response struct {
	Values        []RestUserRateLimitSettings `json:"values,omitempty"`
	Size          *float32                    `json:"size,omitempty"`
	Limit         *float32                    `json:"limit,omitempty"`
	IsLastPage    *bool                       `json:"isLastPage,omitempty"`
	NextPageStart *int32                      `json:"nextPageStart,omitempty"`
	Start         *int32                      `json:"start,omitempty"`
}

GetAllRateLimitSettings200Response struct for GetAllRateLimitSettings200Response

func NewGetAllRateLimitSettings200Response ¶

func NewGetAllRateLimitSettings200Response() *GetAllRateLimitSettings200Response

NewGetAllRateLimitSettings200Response instantiates a new GetAllRateLimitSettings200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetAllRateLimitSettings200ResponseWithDefaults ¶

func NewGetAllRateLimitSettings200ResponseWithDefaults() *GetAllRateLimitSettings200Response

NewGetAllRateLimitSettings200ResponseWithDefaults instantiates a new GetAllRateLimitSettings200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetAllRateLimitSettings200Response) GetIsLastPage ¶

func (o *GetAllRateLimitSettings200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetAllRateLimitSettings200Response) GetIsLastPageOk ¶

func (o *GetAllRateLimitSettings200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllRateLimitSettings200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetAllRateLimitSettings200Response) GetLimitOk ¶

func (o *GetAllRateLimitSettings200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllRateLimitSettings200Response) GetNextPageStart ¶

func (o *GetAllRateLimitSettings200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetAllRateLimitSettings200Response) GetNextPageStartOk ¶

func (o *GetAllRateLimitSettings200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllRateLimitSettings200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetAllRateLimitSettings200Response) GetSizeOk ¶

func (o *GetAllRateLimitSettings200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllRateLimitSettings200Response) GetStart ¶

GetStart returns the Start field value if set, zero value otherwise.

func (*GetAllRateLimitSettings200Response) GetStartOk ¶

func (o *GetAllRateLimitSettings200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllRateLimitSettings200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetAllRateLimitSettings200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllRateLimitSettings200Response) HasIsLastPage ¶

func (o *GetAllRateLimitSettings200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetAllRateLimitSettings200Response) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*GetAllRateLimitSettings200Response) HasNextPageStart ¶

func (o *GetAllRateLimitSettings200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetAllRateLimitSettings200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetAllRateLimitSettings200Response) HasStart ¶

HasStart returns a boolean if a field has been set.

func (*GetAllRateLimitSettings200Response) HasValues ¶

HasValues returns a boolean if a field has been set.

func (GetAllRateLimitSettings200Response) MarshalJSON ¶

func (o GetAllRateLimitSettings200Response) MarshalJSON() ([]byte, error)

func (*GetAllRateLimitSettings200Response) SetIsLastPage ¶

func (o *GetAllRateLimitSettings200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetAllRateLimitSettings200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetAllRateLimitSettings200Response) SetNextPageStart ¶

func (o *GetAllRateLimitSettings200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetAllRateLimitSettings200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetAllRateLimitSettings200Response) SetStart ¶

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetAllRateLimitSettings200Response) SetValues ¶

SetValues gets a reference to the given []RestUserRateLimitSettings and assigns it to the Values field.

func (GetAllRateLimitSettings200Response) ToMap ¶

func (o GetAllRateLimitSettings200Response) ToMap() (map[string]interface{}, error)

type GetAllReposForProject200Response ¶

type GetAllReposForProject200Response struct {
	Values        []EnrichedRepository `json:"values,omitempty"`
	Size          *float32             `json:"size,omitempty"`
	Limit         *float32             `json:"limit,omitempty"`
	IsLastPage    *bool                `json:"isLastPage,omitempty"`
	NextPageStart *int32               `json:"nextPageStart,omitempty"`
	Start         *int32               `json:"start,omitempty"`
}

GetAllReposForProject200Response struct for GetAllReposForProject200Response

func NewGetAllReposForProject200Response ¶

func NewGetAllReposForProject200Response() *GetAllReposForProject200Response

NewGetAllReposForProject200Response instantiates a new GetAllReposForProject200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetAllReposForProject200ResponseWithDefaults ¶

func NewGetAllReposForProject200ResponseWithDefaults() *GetAllReposForProject200Response

NewGetAllReposForProject200ResponseWithDefaults instantiates a new GetAllReposForProject200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetAllReposForProject200Response) GetIsLastPage ¶

func (o *GetAllReposForProject200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetAllReposForProject200Response) GetIsLastPageOk ¶

func (o *GetAllReposForProject200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllReposForProject200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetAllReposForProject200Response) GetLimitOk ¶

func (o *GetAllReposForProject200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllReposForProject200Response) GetNextPageStart ¶

func (o *GetAllReposForProject200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetAllReposForProject200Response) GetNextPageStartOk ¶

func (o *GetAllReposForProject200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllReposForProject200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetAllReposForProject200Response) GetSizeOk ¶

func (o *GetAllReposForProject200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllReposForProject200Response) GetStart ¶

GetStart returns the Start field value if set, zero value otherwise.

func (*GetAllReposForProject200Response) GetStartOk ¶

func (o *GetAllReposForProject200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllReposForProject200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetAllReposForProject200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetAllReposForProject200Response) HasIsLastPage ¶

func (o *GetAllReposForProject200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetAllReposForProject200Response) HasLimit ¶

func (o *GetAllReposForProject200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetAllReposForProject200Response) HasNextPageStart ¶

func (o *GetAllReposForProject200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetAllReposForProject200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetAllReposForProject200Response) HasStart ¶

func (o *GetAllReposForProject200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetAllReposForProject200Response) HasValues ¶

func (o *GetAllReposForProject200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetAllReposForProject200Response) MarshalJSON ¶

func (o GetAllReposForProject200Response) MarshalJSON() ([]byte, error)

func (*GetAllReposForProject200Response) SetIsLastPage ¶

func (o *GetAllReposForProject200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetAllReposForProject200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetAllReposForProject200Response) SetNextPageStart ¶

func (o *GetAllReposForProject200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetAllReposForProject200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetAllReposForProject200Response) SetStart ¶

func (o *GetAllReposForProject200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetAllReposForProject200Response) SetValues ¶

SetValues gets a reference to the given []EnrichedRepository and assigns it to the Values field.

func (GetAllReposForProject200Response) ToMap ¶

func (o GetAllReposForProject200Response) ToMap() (map[string]interface{}, error)

type GetBranches200Response ¶

type GetBranches200Response struct {
	Values        []RestBranch `json:"values,omitempty"`
	Size          *float32     `json:"size,omitempty"`
	Limit         *float32     `json:"limit,omitempty"`
	IsLastPage    *bool        `json:"isLastPage,omitempty"`
	NextPageStart *int32       `json:"nextPageStart,omitempty"`
	Start         *int32       `json:"start,omitempty"`
}

GetBranches200Response struct for GetBranches200Response

func NewGetBranches200Response ¶

func NewGetBranches200Response() *GetBranches200Response

NewGetBranches200Response instantiates a new GetBranches200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetBranches200ResponseWithDefaults ¶

func NewGetBranches200ResponseWithDefaults() *GetBranches200Response

NewGetBranches200ResponseWithDefaults instantiates a new GetBranches200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetBranches200Response) GetIsLastPage ¶

func (o *GetBranches200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetBranches200Response) GetIsLastPageOk ¶

func (o *GetBranches200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBranches200Response) GetLimit ¶

func (o *GetBranches200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetBranches200Response) GetLimitOk ¶

func (o *GetBranches200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBranches200Response) GetNextPageStart ¶

func (o *GetBranches200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetBranches200Response) GetNextPageStartOk ¶

func (o *GetBranches200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBranches200Response) GetSize ¶

func (o *GetBranches200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetBranches200Response) GetSizeOk ¶

func (o *GetBranches200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBranches200Response) GetStart ¶

func (o *GetBranches200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetBranches200Response) GetStartOk ¶

func (o *GetBranches200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBranches200Response) GetValues ¶

func (o *GetBranches200Response) GetValues() []RestBranch

GetValues returns the Values field value if set, zero value otherwise.

func (*GetBranches200Response) GetValuesOk ¶

func (o *GetBranches200Response) GetValuesOk() ([]RestBranch, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBranches200Response) HasIsLastPage ¶

func (o *GetBranches200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetBranches200Response) HasLimit ¶

func (o *GetBranches200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetBranches200Response) HasNextPageStart ¶

func (o *GetBranches200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetBranches200Response) HasSize ¶

func (o *GetBranches200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetBranches200Response) HasStart ¶

func (o *GetBranches200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetBranches200Response) HasValues ¶

func (o *GetBranches200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetBranches200Response) MarshalJSON ¶

func (o GetBranches200Response) MarshalJSON() ([]byte, error)

func (*GetBranches200Response) SetIsLastPage ¶

func (o *GetBranches200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetBranches200Response) SetLimit ¶

func (o *GetBranches200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetBranches200Response) SetNextPageStart ¶

func (o *GetBranches200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetBranches200Response) SetSize ¶

func (o *GetBranches200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetBranches200Response) SetStart ¶

func (o *GetBranches200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetBranches200Response) SetValues ¶

func (o *GetBranches200Response) SetValues(v []RestBranch)

SetValues gets a reference to the given []RestBranch and assigns it to the Values field.

func (GetBranches200Response) ToMap ¶

func (o GetBranches200Response) ToMap() (map[string]interface{}, error)

type GetBuildStatus200Response ¶

type GetBuildStatus200Response struct {
	Values        []RestBuildStatus `json:"values,omitempty"`
	Size          *float32          `json:"size,omitempty"`
	Limit         *float32          `json:"limit,omitempty"`
	IsLastPage    *bool             `json:"isLastPage,omitempty"`
	NextPageStart *int32            `json:"nextPageStart,omitempty"`
	Start         *int32            `json:"start,omitempty"`
}

GetBuildStatus200Response struct for GetBuildStatus200Response

func NewGetBuildStatus200Response ¶

func NewGetBuildStatus200Response() *GetBuildStatus200Response

NewGetBuildStatus200Response instantiates a new GetBuildStatus200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetBuildStatus200ResponseWithDefaults ¶

func NewGetBuildStatus200ResponseWithDefaults() *GetBuildStatus200Response

NewGetBuildStatus200ResponseWithDefaults instantiates a new GetBuildStatus200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetBuildStatus200Response) GetIsLastPage ¶

func (o *GetBuildStatus200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetBuildStatus200Response) GetIsLastPageOk ¶

func (o *GetBuildStatus200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBuildStatus200Response) GetLimit ¶

func (o *GetBuildStatus200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetBuildStatus200Response) GetLimitOk ¶

func (o *GetBuildStatus200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBuildStatus200Response) GetNextPageStart ¶

func (o *GetBuildStatus200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetBuildStatus200Response) GetNextPageStartOk ¶

func (o *GetBuildStatus200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBuildStatus200Response) GetSize ¶

func (o *GetBuildStatus200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetBuildStatus200Response) GetSizeOk ¶

func (o *GetBuildStatus200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBuildStatus200Response) GetStart ¶

func (o *GetBuildStatus200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetBuildStatus200Response) GetStartOk ¶

func (o *GetBuildStatus200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBuildStatus200Response) GetValues ¶

func (o *GetBuildStatus200Response) GetValues() []RestBuildStatus

GetValues returns the Values field value if set, zero value otherwise.

func (*GetBuildStatus200Response) GetValuesOk ¶

func (o *GetBuildStatus200Response) GetValuesOk() ([]RestBuildStatus, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetBuildStatus200Response) HasIsLastPage ¶

func (o *GetBuildStatus200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetBuildStatus200Response) HasLimit ¶

func (o *GetBuildStatus200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetBuildStatus200Response) HasNextPageStart ¶

func (o *GetBuildStatus200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetBuildStatus200Response) HasSize ¶

func (o *GetBuildStatus200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetBuildStatus200Response) HasStart ¶

func (o *GetBuildStatus200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetBuildStatus200Response) HasValues ¶

func (o *GetBuildStatus200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetBuildStatus200Response) MarshalJSON ¶

func (o GetBuildStatus200Response) MarshalJSON() ([]byte, error)

func (*GetBuildStatus200Response) SetIsLastPage ¶

func (o *GetBuildStatus200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetBuildStatus200Response) SetLimit ¶

func (o *GetBuildStatus200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetBuildStatus200Response) SetNextPageStart ¶

func (o *GetBuildStatus200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetBuildStatus200Response) SetSize ¶

func (o *GetBuildStatus200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetBuildStatus200Response) SetStart ¶

func (o *GetBuildStatus200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetBuildStatus200Response) SetValues ¶

func (o *GetBuildStatus200Response) SetValues(v []RestBuildStatus)

SetValues gets a reference to the given []RestBuildStatus and assigns it to the Values field.

func (GetBuildStatus200Response) ToMap ¶

func (o GetBuildStatus200Response) ToMap() (map[string]interface{}, error)

type GetChanges1200Response ¶

type GetChanges1200Response struct {
	Values        []RestChange `json:"values,omitempty"`
	Size          *float32     `json:"size,omitempty"`
	Limit         *float32     `json:"limit,omitempty"`
	IsLastPage    *bool        `json:"isLastPage,omitempty"`
	NextPageStart *int32       `json:"nextPageStart,omitempty"`
	Start         *int32       `json:"start,omitempty"`
}

GetChanges1200Response struct for GetChanges1200Response

func NewGetChanges1200Response ¶

func NewGetChanges1200Response() *GetChanges1200Response

NewGetChanges1200Response instantiates a new GetChanges1200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetChanges1200ResponseWithDefaults ¶

func NewGetChanges1200ResponseWithDefaults() *GetChanges1200Response

NewGetChanges1200ResponseWithDefaults instantiates a new GetChanges1200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetChanges1200Response) GetIsLastPage ¶

func (o *GetChanges1200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetChanges1200Response) GetIsLastPageOk ¶

func (o *GetChanges1200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetChanges1200Response) GetLimit ¶

func (o *GetChanges1200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetChanges1200Response) GetLimitOk ¶

func (o *GetChanges1200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetChanges1200Response) GetNextPageStart ¶

func (o *GetChanges1200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetChanges1200Response) GetNextPageStartOk ¶

func (o *GetChanges1200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetChanges1200Response) GetSize ¶

func (o *GetChanges1200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetChanges1200Response) GetSizeOk ¶

func (o *GetChanges1200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetChanges1200Response) GetStart ¶

func (o *GetChanges1200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetChanges1200Response) GetStartOk ¶

func (o *GetChanges1200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetChanges1200Response) GetValues ¶

func (o *GetChanges1200Response) GetValues() []RestChange

GetValues returns the Values field value if set, zero value otherwise.

func (*GetChanges1200Response) GetValuesOk ¶

func (o *GetChanges1200Response) GetValuesOk() ([]RestChange, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetChanges1200Response) HasIsLastPage ¶

func (o *GetChanges1200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetChanges1200Response) HasLimit ¶

func (o *GetChanges1200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetChanges1200Response) HasNextPageStart ¶

func (o *GetChanges1200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetChanges1200Response) HasSize ¶

func (o *GetChanges1200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetChanges1200Response) HasStart ¶

func (o *GetChanges1200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetChanges1200Response) HasValues ¶

func (o *GetChanges1200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetChanges1200Response) MarshalJSON ¶

func (o GetChanges1200Response) MarshalJSON() ([]byte, error)

func (*GetChanges1200Response) SetIsLastPage ¶

func (o *GetChanges1200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetChanges1200Response) SetLimit ¶

func (o *GetChanges1200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetChanges1200Response) SetNextPageStart ¶

func (o *GetChanges1200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetChanges1200Response) SetSize ¶

func (o *GetChanges1200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetChanges1200Response) SetStart ¶

func (o *GetChanges1200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetChanges1200Response) SetValues ¶

func (o *GetChanges1200Response) SetValues(v []RestChange)

SetValues gets a reference to the given []RestChange and assigns it to the Values field.

func (GetChanges1200Response) ToMap ¶

func (o GetChanges1200Response) ToMap() (map[string]interface{}, error)

type GetComments200Response ¶

type GetComments200Response struct {
	Values        []RestComment `json:"values,omitempty"`
	Size          *float32      `json:"size,omitempty"`
	Limit         *float32      `json:"limit,omitempty"`
	IsLastPage    *bool         `json:"isLastPage,omitempty"`
	NextPageStart *int32        `json:"nextPageStart,omitempty"`
	Start         *int32        `json:"start,omitempty"`
}

GetComments200Response struct for GetComments200Response

func NewGetComments200Response ¶

func NewGetComments200Response() *GetComments200Response

NewGetComments200Response instantiates a new GetComments200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetComments200ResponseWithDefaults ¶

func NewGetComments200ResponseWithDefaults() *GetComments200Response

NewGetComments200ResponseWithDefaults instantiates a new GetComments200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetComments200Response) GetIsLastPage ¶

func (o *GetComments200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetComments200Response) GetIsLastPageOk ¶

func (o *GetComments200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetComments200Response) GetLimit ¶

func (o *GetComments200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetComments200Response) GetLimitOk ¶

func (o *GetComments200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetComments200Response) GetNextPageStart ¶

func (o *GetComments200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetComments200Response) GetNextPageStartOk ¶

func (o *GetComments200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetComments200Response) GetSize ¶

func (o *GetComments200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetComments200Response) GetSizeOk ¶

func (o *GetComments200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetComments200Response) GetStart ¶

func (o *GetComments200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetComments200Response) GetStartOk ¶

func (o *GetComments200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetComments200Response) GetValues ¶

func (o *GetComments200Response) GetValues() []RestComment

GetValues returns the Values field value if set, zero value otherwise.

func (*GetComments200Response) GetValuesOk ¶

func (o *GetComments200Response) GetValuesOk() ([]RestComment, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetComments200Response) HasIsLastPage ¶

func (o *GetComments200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetComments200Response) HasLimit ¶

func (o *GetComments200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetComments200Response) HasNextPageStart ¶

func (o *GetComments200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetComments200Response) HasSize ¶

func (o *GetComments200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetComments200Response) HasStart ¶

func (o *GetComments200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetComments200Response) HasValues ¶

func (o *GetComments200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetComments200Response) MarshalJSON ¶

func (o GetComments200Response) MarshalJSON() ([]byte, error)

func (*GetComments200Response) SetIsLastPage ¶

func (o *GetComments200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetComments200Response) SetLimit ¶

func (o *GetComments200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetComments200Response) SetNextPageStart ¶

func (o *GetComments200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetComments200Response) SetSize ¶

func (o *GetComments200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetComments200Response) SetStart ¶

func (o *GetComments200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetComments200Response) SetValues ¶

func (o *GetComments200Response) SetValues(v []RestComment)

SetValues gets a reference to the given []RestComment and assigns it to the Values field.

func (GetComments200Response) ToMap ¶

func (o GetComments200Response) ToMap() (map[string]interface{}, error)

type GetCommits200Response ¶

type GetCommits200Response struct {
	Values        []RestCommit `json:"values,omitempty"`
	Size          *float32     `json:"size,omitempty"`
	Limit         *float32     `json:"limit,omitempty"`
	IsLastPage    *bool        `json:"isLastPage,omitempty"`
	NextPageStart *int32       `json:"nextPageStart,omitempty"`
	Start         *int32       `json:"start,omitempty"`
}

GetCommits200Response struct for GetCommits200Response

func NewGetCommits200Response ¶

func NewGetCommits200Response() *GetCommits200Response

NewGetCommits200Response instantiates a new GetCommits200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetCommits200ResponseWithDefaults ¶

func NewGetCommits200ResponseWithDefaults() *GetCommits200Response

NewGetCommits200ResponseWithDefaults instantiates a new GetCommits200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetCommits200Response) GetIsLastPage ¶

func (o *GetCommits200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetCommits200Response) GetIsLastPageOk ¶

func (o *GetCommits200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommits200Response) GetLimit ¶

func (o *GetCommits200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetCommits200Response) GetLimitOk ¶

func (o *GetCommits200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommits200Response) GetNextPageStart ¶

func (o *GetCommits200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetCommits200Response) GetNextPageStartOk ¶

func (o *GetCommits200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommits200Response) GetSize ¶

func (o *GetCommits200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetCommits200Response) GetSizeOk ¶

func (o *GetCommits200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommits200Response) GetStart ¶

func (o *GetCommits200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetCommits200Response) GetStartOk ¶

func (o *GetCommits200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommits200Response) GetValues ¶

func (o *GetCommits200Response) GetValues() []RestCommit

GetValues returns the Values field value if set, zero value otherwise.

func (*GetCommits200Response) GetValuesOk ¶

func (o *GetCommits200Response) GetValuesOk() ([]RestCommit, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommits200Response) HasIsLastPage ¶

func (o *GetCommits200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetCommits200Response) HasLimit ¶

func (o *GetCommits200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetCommits200Response) HasNextPageStart ¶

func (o *GetCommits200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetCommits200Response) HasSize ¶

func (o *GetCommits200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetCommits200Response) HasStart ¶

func (o *GetCommits200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetCommits200Response) HasValues ¶

func (o *GetCommits200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetCommits200Response) MarshalJSON ¶

func (o GetCommits200Response) MarshalJSON() ([]byte, error)

func (*GetCommits200Response) SetIsLastPage ¶

func (o *GetCommits200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetCommits200Response) SetLimit ¶

func (o *GetCommits200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetCommits200Response) SetNextPageStart ¶

func (o *GetCommits200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetCommits200Response) SetSize ¶

func (o *GetCommits200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetCommits200Response) SetStart ¶

func (o *GetCommits200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetCommits200Response) SetValues ¶

func (o *GetCommits200Response) SetValues(v []RestCommit)

SetValues gets a reference to the given []RestCommit and assigns it to the Values field.

func (GetCommits200Response) ToMap ¶

func (o GetCommits200Response) ToMap() (map[string]interface{}, error)

type GetCommitsByIssueKey200Response ¶

type GetCommitsByIssueKey200Response struct {
	Values        []RestChangeset `json:"values,omitempty"`
	Size          *float32        `json:"size,omitempty"`
	Limit         *float32        `json:"limit,omitempty"`
	IsLastPage    *bool           `json:"isLastPage,omitempty"`
	NextPageStart *int32          `json:"nextPageStart,omitempty"`
	Start         *int32          `json:"start,omitempty"`
}

GetCommitsByIssueKey200Response struct for GetCommitsByIssueKey200Response

func NewGetCommitsByIssueKey200Response ¶

func NewGetCommitsByIssueKey200Response() *GetCommitsByIssueKey200Response

NewGetCommitsByIssueKey200Response instantiates a new GetCommitsByIssueKey200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetCommitsByIssueKey200ResponseWithDefaults ¶

func NewGetCommitsByIssueKey200ResponseWithDefaults() *GetCommitsByIssueKey200Response

NewGetCommitsByIssueKey200ResponseWithDefaults instantiates a new GetCommitsByIssueKey200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetCommitsByIssueKey200Response) GetIsLastPage ¶

func (o *GetCommitsByIssueKey200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetCommitsByIssueKey200Response) GetIsLastPageOk ¶

func (o *GetCommitsByIssueKey200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommitsByIssueKey200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetCommitsByIssueKey200Response) GetLimitOk ¶

func (o *GetCommitsByIssueKey200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommitsByIssueKey200Response) GetNextPageStart ¶

func (o *GetCommitsByIssueKey200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetCommitsByIssueKey200Response) GetNextPageStartOk ¶

func (o *GetCommitsByIssueKey200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommitsByIssueKey200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetCommitsByIssueKey200Response) GetSizeOk ¶

func (o *GetCommitsByIssueKey200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommitsByIssueKey200Response) GetStart ¶

func (o *GetCommitsByIssueKey200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetCommitsByIssueKey200Response) GetStartOk ¶

func (o *GetCommitsByIssueKey200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommitsByIssueKey200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetCommitsByIssueKey200Response) GetValuesOk ¶

func (o *GetCommitsByIssueKey200Response) GetValuesOk() ([]RestChangeset, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommitsByIssueKey200Response) HasIsLastPage ¶

func (o *GetCommitsByIssueKey200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetCommitsByIssueKey200Response) HasLimit ¶

func (o *GetCommitsByIssueKey200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetCommitsByIssueKey200Response) HasNextPageStart ¶

func (o *GetCommitsByIssueKey200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetCommitsByIssueKey200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetCommitsByIssueKey200Response) HasStart ¶

func (o *GetCommitsByIssueKey200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetCommitsByIssueKey200Response) HasValues ¶

func (o *GetCommitsByIssueKey200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetCommitsByIssueKey200Response) MarshalJSON ¶

func (o GetCommitsByIssueKey200Response) MarshalJSON() ([]byte, error)

func (*GetCommitsByIssueKey200Response) SetIsLastPage ¶

func (o *GetCommitsByIssueKey200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetCommitsByIssueKey200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetCommitsByIssueKey200Response) SetNextPageStart ¶

func (o *GetCommitsByIssueKey200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetCommitsByIssueKey200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetCommitsByIssueKey200Response) SetStart ¶

func (o *GetCommitsByIssueKey200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetCommitsByIssueKey200Response) SetValues ¶

SetValues gets a reference to the given []RestChangeset and assigns it to the Values field.

func (GetCommitsByIssueKey200Response) ToMap ¶

func (o GetCommitsByIssueKey200Response) ToMap() (map[string]interface{}, error)

type GetConfigurations200Response ¶

type GetConfigurations200Response struct {
	Values        []RestHookScriptConfig `json:"values,omitempty"`
	Size          *float32               `json:"size,omitempty"`
	Limit         *float32               `json:"limit,omitempty"`
	IsLastPage    *bool                  `json:"isLastPage,omitempty"`
	NextPageStart *int32                 `json:"nextPageStart,omitempty"`
	Start         *int32                 `json:"start,omitempty"`
}

GetConfigurations200Response struct for GetConfigurations200Response

func NewGetConfigurations200Response ¶

func NewGetConfigurations200Response() *GetConfigurations200Response

NewGetConfigurations200Response instantiates a new GetConfigurations200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetConfigurations200ResponseWithDefaults ¶

func NewGetConfigurations200ResponseWithDefaults() *GetConfigurations200Response

NewGetConfigurations200ResponseWithDefaults instantiates a new GetConfigurations200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetConfigurations200Response) GetIsLastPage ¶

func (o *GetConfigurations200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetConfigurations200Response) GetIsLastPageOk ¶

func (o *GetConfigurations200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetConfigurations200Response) GetLimit ¶

func (o *GetConfigurations200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetConfigurations200Response) GetLimitOk ¶

func (o *GetConfigurations200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetConfigurations200Response) GetNextPageStart ¶

func (o *GetConfigurations200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetConfigurations200Response) GetNextPageStartOk ¶

func (o *GetConfigurations200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetConfigurations200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetConfigurations200Response) GetSizeOk ¶

func (o *GetConfigurations200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetConfigurations200Response) GetStart ¶

func (o *GetConfigurations200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetConfigurations200Response) GetStartOk ¶

func (o *GetConfigurations200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetConfigurations200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetConfigurations200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetConfigurations200Response) HasIsLastPage ¶

func (o *GetConfigurations200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetConfigurations200Response) HasLimit ¶

func (o *GetConfigurations200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetConfigurations200Response) HasNextPageStart ¶

func (o *GetConfigurations200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetConfigurations200Response) HasSize ¶

func (o *GetConfigurations200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetConfigurations200Response) HasStart ¶

func (o *GetConfigurations200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetConfigurations200Response) HasValues ¶

func (o *GetConfigurations200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetConfigurations200Response) MarshalJSON ¶

func (o GetConfigurations200Response) MarshalJSON() ([]byte, error)

func (*GetConfigurations200Response) SetIsLastPage ¶

func (o *GetConfigurations200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetConfigurations200Response) SetLimit ¶

func (o *GetConfigurations200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetConfigurations200Response) SetNextPageStart ¶

func (o *GetConfigurations200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetConfigurations200Response) SetSize ¶

func (o *GetConfigurations200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetConfigurations200Response) SetStart ¶

func (o *GetConfigurations200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetConfigurations200Response) SetValues ¶

SetValues gets a reference to the given []RestHookScriptConfig and assigns it to the Values field.

func (GetConfigurations200Response) ToMap ¶

func (o GetConfigurations200Response) ToMap() (map[string]interface{}, error)

type GetExportJobMessages200Response ¶

type GetExportJobMessages200Response struct {
	Values        []RestJobMessage `json:"values,omitempty"`
	Size          *float32         `json:"size,omitempty"`
	Limit         *float32         `json:"limit,omitempty"`
	IsLastPage    *bool            `json:"isLastPage,omitempty"`
	NextPageStart *int32           `json:"nextPageStart,omitempty"`
	Start         *int32           `json:"start,omitempty"`
}

GetExportJobMessages200Response struct for GetExportJobMessages200Response

func NewGetExportJobMessages200Response ¶

func NewGetExportJobMessages200Response() *GetExportJobMessages200Response

NewGetExportJobMessages200Response instantiates a new GetExportJobMessages200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetExportJobMessages200ResponseWithDefaults ¶

func NewGetExportJobMessages200ResponseWithDefaults() *GetExportJobMessages200Response

NewGetExportJobMessages200ResponseWithDefaults instantiates a new GetExportJobMessages200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetExportJobMessages200Response) GetIsLastPage ¶

func (o *GetExportJobMessages200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetExportJobMessages200Response) GetIsLastPageOk ¶

func (o *GetExportJobMessages200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetExportJobMessages200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetExportJobMessages200Response) GetLimitOk ¶

func (o *GetExportJobMessages200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetExportJobMessages200Response) GetNextPageStart ¶

func (o *GetExportJobMessages200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetExportJobMessages200Response) GetNextPageStartOk ¶

func (o *GetExportJobMessages200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetExportJobMessages200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetExportJobMessages200Response) GetSizeOk ¶

func (o *GetExportJobMessages200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetExportJobMessages200Response) GetStart ¶

func (o *GetExportJobMessages200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetExportJobMessages200Response) GetStartOk ¶

func (o *GetExportJobMessages200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetExportJobMessages200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetExportJobMessages200Response) GetValuesOk ¶

func (o *GetExportJobMessages200Response) GetValuesOk() ([]RestJobMessage, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetExportJobMessages200Response) HasIsLastPage ¶

func (o *GetExportJobMessages200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetExportJobMessages200Response) HasLimit ¶

func (o *GetExportJobMessages200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetExportJobMessages200Response) HasNextPageStart ¶

func (o *GetExportJobMessages200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetExportJobMessages200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetExportJobMessages200Response) HasStart ¶

func (o *GetExportJobMessages200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetExportJobMessages200Response) HasValues ¶

func (o *GetExportJobMessages200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetExportJobMessages200Response) MarshalJSON ¶

func (o GetExportJobMessages200Response) MarshalJSON() ([]byte, error)

func (*GetExportJobMessages200Response) SetIsLastPage ¶

func (o *GetExportJobMessages200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetExportJobMessages200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetExportJobMessages200Response) SetNextPageStart ¶

func (o *GetExportJobMessages200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetExportJobMessages200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetExportJobMessages200Response) SetStart ¶

func (o *GetExportJobMessages200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetExportJobMessages200Response) SetValues ¶

SetValues gets a reference to the given []RestJobMessage and assigns it to the Values field.

func (GetExportJobMessages200Response) ToMap ¶

func (o GetExportJobMessages200Response) ToMap() (map[string]interface{}, error)

type GetGroups1200Response ¶

type GetGroups1200Response struct {
	Values        []RestDetailedGroup `json:"values,omitempty"`
	Size          *float32            `json:"size,omitempty"`
	Limit         *float32            `json:"limit,omitempty"`
	IsLastPage    *bool               `json:"isLastPage,omitempty"`
	NextPageStart *int32              `json:"nextPageStart,omitempty"`
	Start         *int32              `json:"start,omitempty"`
}

GetGroups1200Response struct for GetGroups1200Response

func NewGetGroups1200Response ¶

func NewGetGroups1200Response() *GetGroups1200Response

NewGetGroups1200Response instantiates a new GetGroups1200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetGroups1200ResponseWithDefaults ¶

func NewGetGroups1200ResponseWithDefaults() *GetGroups1200Response

NewGetGroups1200ResponseWithDefaults instantiates a new GetGroups1200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetGroups1200Response) GetIsLastPage ¶

func (o *GetGroups1200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetGroups1200Response) GetIsLastPageOk ¶

func (o *GetGroups1200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups1200Response) GetLimit ¶

func (o *GetGroups1200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetGroups1200Response) GetLimitOk ¶

func (o *GetGroups1200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups1200Response) GetNextPageStart ¶

func (o *GetGroups1200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetGroups1200Response) GetNextPageStartOk ¶

func (o *GetGroups1200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups1200Response) GetSize ¶

func (o *GetGroups1200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetGroups1200Response) GetSizeOk ¶

func (o *GetGroups1200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups1200Response) GetStart ¶

func (o *GetGroups1200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetGroups1200Response) GetStartOk ¶

func (o *GetGroups1200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups1200Response) GetValues ¶

func (o *GetGroups1200Response) GetValues() []RestDetailedGroup

GetValues returns the Values field value if set, zero value otherwise.

func (*GetGroups1200Response) GetValuesOk ¶

func (o *GetGroups1200Response) GetValuesOk() ([]RestDetailedGroup, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups1200Response) HasIsLastPage ¶

func (o *GetGroups1200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetGroups1200Response) HasLimit ¶

func (o *GetGroups1200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetGroups1200Response) HasNextPageStart ¶

func (o *GetGroups1200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetGroups1200Response) HasSize ¶

func (o *GetGroups1200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetGroups1200Response) HasStart ¶

func (o *GetGroups1200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetGroups1200Response) HasValues ¶

func (o *GetGroups1200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetGroups1200Response) MarshalJSON ¶

func (o GetGroups1200Response) MarshalJSON() ([]byte, error)

func (*GetGroups1200Response) SetIsLastPage ¶

func (o *GetGroups1200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetGroups1200Response) SetLimit ¶

func (o *GetGroups1200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetGroups1200Response) SetNextPageStart ¶

func (o *GetGroups1200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetGroups1200Response) SetSize ¶

func (o *GetGroups1200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetGroups1200Response) SetStart ¶

func (o *GetGroups1200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetGroups1200Response) SetValues ¶

func (o *GetGroups1200Response) SetValues(v []RestDetailedGroup)

SetValues gets a reference to the given []RestDetailedGroup and assigns it to the Values field.

func (GetGroups1200Response) ToMap ¶

func (o GetGroups1200Response) ToMap() (map[string]interface{}, error)

type GetGroups200Response ¶

type GetGroups200Response struct {
	Values        []string `json:"values,omitempty"`
	Size          *float32 `json:"size,omitempty"`
	Limit         *float32 `json:"limit,omitempty"`
	IsLastPage    *bool    `json:"isLastPage,omitempty"`
	NextPageStart *int32   `json:"nextPageStart,omitempty"`
	Start         *int32   `json:"start,omitempty"`
}

GetGroups200Response struct for GetGroups200Response

func NewGetGroups200Response ¶

func NewGetGroups200Response() *GetGroups200Response

NewGetGroups200Response instantiates a new GetGroups200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetGroups200ResponseWithDefaults ¶

func NewGetGroups200ResponseWithDefaults() *GetGroups200Response

NewGetGroups200ResponseWithDefaults instantiates a new GetGroups200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetGroups200Response) GetIsLastPage ¶

func (o *GetGroups200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetGroups200Response) GetIsLastPageOk ¶

func (o *GetGroups200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups200Response) GetLimit ¶

func (o *GetGroups200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetGroups200Response) GetLimitOk ¶

func (o *GetGroups200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups200Response) GetNextPageStart ¶

func (o *GetGroups200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetGroups200Response) GetNextPageStartOk ¶

func (o *GetGroups200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups200Response) GetSize ¶

func (o *GetGroups200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetGroups200Response) GetSizeOk ¶

func (o *GetGroups200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups200Response) GetStart ¶

func (o *GetGroups200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetGroups200Response) GetStartOk ¶

func (o *GetGroups200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups200Response) GetValues ¶

func (o *GetGroups200Response) GetValues() []string

GetValues returns the Values field value if set, zero value otherwise.

func (*GetGroups200Response) GetValuesOk ¶

func (o *GetGroups200Response) GetValuesOk() ([]string, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroups200Response) HasIsLastPage ¶

func (o *GetGroups200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetGroups200Response) HasLimit ¶

func (o *GetGroups200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetGroups200Response) HasNextPageStart ¶

func (o *GetGroups200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetGroups200Response) HasSize ¶

func (o *GetGroups200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetGroups200Response) HasStart ¶

func (o *GetGroups200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetGroups200Response) HasValues ¶

func (o *GetGroups200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetGroups200Response) MarshalJSON ¶

func (o GetGroups200Response) MarshalJSON() ([]byte, error)

func (*GetGroups200Response) SetIsLastPage ¶

func (o *GetGroups200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetGroups200Response) SetLimit ¶

func (o *GetGroups200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetGroups200Response) SetNextPageStart ¶

func (o *GetGroups200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetGroups200Response) SetSize ¶

func (o *GetGroups200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetGroups200Response) SetStart ¶

func (o *GetGroups200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetGroups200Response) SetValues ¶

func (o *GetGroups200Response) SetValues(v []string)

SetValues gets a reference to the given []string and assigns it to the Values field.

func (GetGroups200Response) ToMap ¶

func (o GetGroups200Response) ToMap() (map[string]interface{}, error)

type GetGroupsWithAnyPermission200Response ¶

type GetGroupsWithAnyPermission200Response struct {
	Values        []RestPermittedGroup `json:"values,omitempty"`
	Size          *float32             `json:"size,omitempty"`
	Limit         *float32             `json:"limit,omitempty"`
	IsLastPage    *bool                `json:"isLastPage,omitempty"`
	NextPageStart *int32               `json:"nextPageStart,omitempty"`
	Start         *int32               `json:"start,omitempty"`
}

GetGroupsWithAnyPermission200Response struct for GetGroupsWithAnyPermission200Response

func NewGetGroupsWithAnyPermission200Response ¶

func NewGetGroupsWithAnyPermission200Response() *GetGroupsWithAnyPermission200Response

NewGetGroupsWithAnyPermission200Response instantiates a new GetGroupsWithAnyPermission200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetGroupsWithAnyPermission200ResponseWithDefaults ¶

func NewGetGroupsWithAnyPermission200ResponseWithDefaults() *GetGroupsWithAnyPermission200Response

NewGetGroupsWithAnyPermission200ResponseWithDefaults instantiates a new GetGroupsWithAnyPermission200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetGroupsWithAnyPermission200Response) GetIsLastPage ¶

func (o *GetGroupsWithAnyPermission200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetGroupsWithAnyPermission200Response) GetIsLastPageOk ¶

func (o *GetGroupsWithAnyPermission200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroupsWithAnyPermission200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetGroupsWithAnyPermission200Response) GetLimitOk ¶

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroupsWithAnyPermission200Response) GetNextPageStart ¶

func (o *GetGroupsWithAnyPermission200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetGroupsWithAnyPermission200Response) GetNextPageStartOk ¶

func (o *GetGroupsWithAnyPermission200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroupsWithAnyPermission200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetGroupsWithAnyPermission200Response) GetSizeOk ¶

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroupsWithAnyPermission200Response) GetStart ¶

GetStart returns the Start field value if set, zero value otherwise.

func (*GetGroupsWithAnyPermission200Response) GetStartOk ¶

func (o *GetGroupsWithAnyPermission200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroupsWithAnyPermission200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetGroupsWithAnyPermission200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetGroupsWithAnyPermission200Response) HasIsLastPage ¶

func (o *GetGroupsWithAnyPermission200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetGroupsWithAnyPermission200Response) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*GetGroupsWithAnyPermission200Response) HasNextPageStart ¶

func (o *GetGroupsWithAnyPermission200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetGroupsWithAnyPermission200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetGroupsWithAnyPermission200Response) HasStart ¶

HasStart returns a boolean if a field has been set.

func (*GetGroupsWithAnyPermission200Response) HasValues ¶

HasValues returns a boolean if a field has been set.

func (GetGroupsWithAnyPermission200Response) MarshalJSON ¶

func (o GetGroupsWithAnyPermission200Response) MarshalJSON() ([]byte, error)

func (*GetGroupsWithAnyPermission200Response) SetIsLastPage ¶

func (o *GetGroupsWithAnyPermission200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetGroupsWithAnyPermission200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetGroupsWithAnyPermission200Response) SetNextPageStart ¶

func (o *GetGroupsWithAnyPermission200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetGroupsWithAnyPermission200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetGroupsWithAnyPermission200Response) SetStart ¶

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetGroupsWithAnyPermission200Response) SetValues ¶

SetValues gets a reference to the given []RestPermittedGroup and assigns it to the Values field.

func (GetGroupsWithAnyPermission200Response) ToMap ¶

func (o GetGroupsWithAnyPermission200Response) ToMap() (map[string]interface{}, error)

type GetHistory200Response ¶

type GetHistory200Response struct {
	Values        []RestAggregateRejectCounter `json:"values,omitempty"`
	Size          *float32                     `json:"size,omitempty"`
	Limit         *float32                     `json:"limit,omitempty"`
	IsLastPage    *bool                        `json:"isLastPage,omitempty"`
	NextPageStart *int32                       `json:"nextPageStart,omitempty"`
	Start         *int32                       `json:"start,omitempty"`
}

GetHistory200Response struct for GetHistory200Response

func NewGetHistory200Response ¶

func NewGetHistory200Response() *GetHistory200Response

NewGetHistory200Response instantiates a new GetHistory200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetHistory200ResponseWithDefaults ¶

func NewGetHistory200ResponseWithDefaults() *GetHistory200Response

NewGetHistory200ResponseWithDefaults instantiates a new GetHistory200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetHistory200Response) GetIsLastPage ¶

func (o *GetHistory200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetHistory200Response) GetIsLastPageOk ¶

func (o *GetHistory200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetHistory200Response) GetLimit ¶

func (o *GetHistory200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetHistory200Response) GetLimitOk ¶

func (o *GetHistory200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetHistory200Response) GetNextPageStart ¶

func (o *GetHistory200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetHistory200Response) GetNextPageStartOk ¶

func (o *GetHistory200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetHistory200Response) GetSize ¶

func (o *GetHistory200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetHistory200Response) GetSizeOk ¶

func (o *GetHistory200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetHistory200Response) GetStart ¶

func (o *GetHistory200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetHistory200Response) GetStartOk ¶

func (o *GetHistory200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetHistory200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetHistory200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetHistory200Response) HasIsLastPage ¶

func (o *GetHistory200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetHistory200Response) HasLimit ¶

func (o *GetHistory200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetHistory200Response) HasNextPageStart ¶

func (o *GetHistory200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetHistory200Response) HasSize ¶

func (o *GetHistory200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetHistory200Response) HasStart ¶

func (o *GetHistory200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetHistory200Response) HasValues ¶

func (o *GetHistory200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetHistory200Response) MarshalJSON ¶

func (o GetHistory200Response) MarshalJSON() ([]byte, error)

func (*GetHistory200Response) SetIsLastPage ¶

func (o *GetHistory200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetHistory200Response) SetLimit ¶

func (o *GetHistory200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetHistory200Response) SetNextPageStart ¶

func (o *GetHistory200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetHistory200Response) SetSize ¶

func (o *GetHistory200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetHistory200Response) SetStart ¶

func (o *GetHistory200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetHistory200Response) SetValues ¶

SetValues gets a reference to the given []RestAggregateRejectCounter and assigns it to the Values field.

func (GetHistory200Response) ToMap ¶

func (o GetHistory200Response) ToMap() (map[string]interface{}, error)

type GetKeysForUser200Response ¶

type GetKeysForUser200Response struct {
	Values        []RestGpgKey `json:"values,omitempty"`
	Size          *float32     `json:"size,omitempty"`
	Limit         *float32     `json:"limit,omitempty"`
	IsLastPage    *bool        `json:"isLastPage,omitempty"`
	NextPageStart *int32       `json:"nextPageStart,omitempty"`
	Start         *int32       `json:"start,omitempty"`
}

GetKeysForUser200Response struct for GetKeysForUser200Response

func NewGetKeysForUser200Response ¶

func NewGetKeysForUser200Response() *GetKeysForUser200Response

NewGetKeysForUser200Response instantiates a new GetKeysForUser200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetKeysForUser200ResponseWithDefaults ¶

func NewGetKeysForUser200ResponseWithDefaults() *GetKeysForUser200Response

NewGetKeysForUser200ResponseWithDefaults instantiates a new GetKeysForUser200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetKeysForUser200Response) GetIsLastPage ¶

func (o *GetKeysForUser200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetKeysForUser200Response) GetIsLastPageOk ¶

func (o *GetKeysForUser200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetKeysForUser200Response) GetLimit ¶

func (o *GetKeysForUser200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetKeysForUser200Response) GetLimitOk ¶

func (o *GetKeysForUser200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetKeysForUser200Response) GetNextPageStart ¶

func (o *GetKeysForUser200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetKeysForUser200Response) GetNextPageStartOk ¶

func (o *GetKeysForUser200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetKeysForUser200Response) GetSize ¶

func (o *GetKeysForUser200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetKeysForUser200Response) GetSizeOk ¶

func (o *GetKeysForUser200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetKeysForUser200Response) GetStart ¶

func (o *GetKeysForUser200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetKeysForUser200Response) GetStartOk ¶

func (o *GetKeysForUser200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetKeysForUser200Response) GetValues ¶

func (o *GetKeysForUser200Response) GetValues() []RestGpgKey

GetValues returns the Values field value if set, zero value otherwise.

func (*GetKeysForUser200Response) GetValuesOk ¶

func (o *GetKeysForUser200Response) GetValuesOk() ([]RestGpgKey, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetKeysForUser200Response) HasIsLastPage ¶

func (o *GetKeysForUser200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetKeysForUser200Response) HasLimit ¶

func (o *GetKeysForUser200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetKeysForUser200Response) HasNextPageStart ¶

func (o *GetKeysForUser200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetKeysForUser200Response) HasSize ¶

func (o *GetKeysForUser200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetKeysForUser200Response) HasStart ¶

func (o *GetKeysForUser200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetKeysForUser200Response) HasValues ¶

func (o *GetKeysForUser200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetKeysForUser200Response) MarshalJSON ¶

func (o GetKeysForUser200Response) MarshalJSON() ([]byte, error)

func (*GetKeysForUser200Response) SetIsLastPage ¶

func (o *GetKeysForUser200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetKeysForUser200Response) SetLimit ¶

func (o *GetKeysForUser200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetKeysForUser200Response) SetNextPageStart ¶

func (o *GetKeysForUser200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetKeysForUser200Response) SetSize ¶

func (o *GetKeysForUser200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetKeysForUser200Response) SetStart ¶

func (o *GetKeysForUser200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetKeysForUser200Response) SetValues ¶

func (o *GetKeysForUser200Response) SetValues(v []RestGpgKey)

SetValues gets a reference to the given []RestGpgKey and assigns it to the Values field.

func (GetKeysForUser200Response) ToMap ¶

func (o GetKeysForUser200Response) ToMap() (map[string]interface{}, error)

type GetLabelables200Response ¶

type GetLabelables200Response struct {
	Values        []RestLabelable `json:"values,omitempty"`
	Size          *float32        `json:"size,omitempty"`
	Limit         *float32        `json:"limit,omitempty"`
	IsLastPage    *bool           `json:"isLastPage,omitempty"`
	NextPageStart *int32          `json:"nextPageStart,omitempty"`
	Start         *int32          `json:"start,omitempty"`
}

GetLabelables200Response struct for GetLabelables200Response

func NewGetLabelables200Response ¶

func NewGetLabelables200Response() *GetLabelables200Response

NewGetLabelables200Response instantiates a new GetLabelables200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetLabelables200ResponseWithDefaults ¶

func NewGetLabelables200ResponseWithDefaults() *GetLabelables200Response

NewGetLabelables200ResponseWithDefaults instantiates a new GetLabelables200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetLabelables200Response) GetIsLastPage ¶

func (o *GetLabelables200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetLabelables200Response) GetIsLastPageOk ¶

func (o *GetLabelables200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabelables200Response) GetLimit ¶

func (o *GetLabelables200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetLabelables200Response) GetLimitOk ¶

func (o *GetLabelables200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabelables200Response) GetNextPageStart ¶

func (o *GetLabelables200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetLabelables200Response) GetNextPageStartOk ¶

func (o *GetLabelables200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabelables200Response) GetSize ¶

func (o *GetLabelables200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetLabelables200Response) GetSizeOk ¶

func (o *GetLabelables200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabelables200Response) GetStart ¶

func (o *GetLabelables200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetLabelables200Response) GetStartOk ¶

func (o *GetLabelables200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabelables200Response) GetValues ¶

func (o *GetLabelables200Response) GetValues() []RestLabelable

GetValues returns the Values field value if set, zero value otherwise.

func (*GetLabelables200Response) GetValuesOk ¶

func (o *GetLabelables200Response) GetValuesOk() ([]RestLabelable, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabelables200Response) HasIsLastPage ¶

func (o *GetLabelables200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetLabelables200Response) HasLimit ¶

func (o *GetLabelables200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetLabelables200Response) HasNextPageStart ¶

func (o *GetLabelables200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetLabelables200Response) HasSize ¶

func (o *GetLabelables200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetLabelables200Response) HasStart ¶

func (o *GetLabelables200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetLabelables200Response) HasValues ¶

func (o *GetLabelables200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetLabelables200Response) MarshalJSON ¶

func (o GetLabelables200Response) MarshalJSON() ([]byte, error)

func (*GetLabelables200Response) SetIsLastPage ¶

func (o *GetLabelables200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetLabelables200Response) SetLimit ¶

func (o *GetLabelables200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetLabelables200Response) SetNextPageStart ¶

func (o *GetLabelables200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetLabelables200Response) SetSize ¶

func (o *GetLabelables200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetLabelables200Response) SetStart ¶

func (o *GetLabelables200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetLabelables200Response) SetValues ¶

func (o *GetLabelables200Response) SetValues(v []RestLabelable)

SetValues gets a reference to the given []RestLabelable and assigns it to the Values field.

func (GetLabelables200Response) ToMap ¶

func (o GetLabelables200Response) ToMap() (map[string]interface{}, error)

type GetLabels200Response ¶

type GetLabels200Response struct {
	Values        []RestLabel `json:"values,omitempty"`
	Size          *float32    `json:"size,omitempty"`
	Limit         *float32    `json:"limit,omitempty"`
	IsLastPage    *bool       `json:"isLastPage,omitempty"`
	NextPageStart *int32      `json:"nextPageStart,omitempty"`
	Start         *int32      `json:"start,omitempty"`
}

GetLabels200Response struct for GetLabels200Response

func NewGetLabels200Response ¶

func NewGetLabels200Response() *GetLabels200Response

NewGetLabels200Response instantiates a new GetLabels200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetLabels200ResponseWithDefaults ¶

func NewGetLabels200ResponseWithDefaults() *GetLabels200Response

NewGetLabels200ResponseWithDefaults instantiates a new GetLabels200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetLabels200Response) GetIsLastPage ¶

func (o *GetLabels200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetLabels200Response) GetIsLastPageOk ¶

func (o *GetLabels200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabels200Response) GetLimit ¶

func (o *GetLabels200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetLabels200Response) GetLimitOk ¶

func (o *GetLabels200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabels200Response) GetNextPageStart ¶

func (o *GetLabels200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetLabels200Response) GetNextPageStartOk ¶

func (o *GetLabels200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabels200Response) GetSize ¶

func (o *GetLabels200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetLabels200Response) GetSizeOk ¶

func (o *GetLabels200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabels200Response) GetStart ¶

func (o *GetLabels200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetLabels200Response) GetStartOk ¶

func (o *GetLabels200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabels200Response) GetValues ¶

func (o *GetLabels200Response) GetValues() []RestLabel

GetValues returns the Values field value if set, zero value otherwise.

func (*GetLabels200Response) GetValuesOk ¶

func (o *GetLabels200Response) GetValuesOk() ([]RestLabel, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLabels200Response) HasIsLastPage ¶

func (o *GetLabels200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetLabels200Response) HasLimit ¶

func (o *GetLabels200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetLabels200Response) HasNextPageStart ¶

func (o *GetLabels200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetLabels200Response) HasSize ¶

func (o *GetLabels200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetLabels200Response) HasStart ¶

func (o *GetLabels200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetLabels200Response) HasValues ¶

func (o *GetLabels200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetLabels200Response) MarshalJSON ¶

func (o GetLabels200Response) MarshalJSON() ([]byte, error)

func (*GetLabels200Response) SetIsLastPage ¶

func (o *GetLabels200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetLabels200Response) SetLimit ¶

func (o *GetLabels200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetLabels200Response) SetNextPageStart ¶

func (o *GetLabels200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetLabels200Response) SetSize ¶

func (o *GetLabels200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetLabels200Response) SetStart ¶

func (o *GetLabels200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetLabels200Response) SetValues ¶

func (o *GetLabels200Response) SetValues(v []RestLabel)

SetValues gets a reference to the given []RestLabel and assigns it to the Values field.

func (GetLabels200Response) ToMap ¶

func (o GetLabels200Response) ToMap() (map[string]interface{}, error)

type GetLikers200Response ¶

type GetLikers200Response struct {
	Values        []RestApplicationUser `json:"values,omitempty"`
	Size          *float32              `json:"size,omitempty"`
	Limit         *float32              `json:"limit,omitempty"`
	IsLastPage    *bool                 `json:"isLastPage,omitempty"`
	NextPageStart *int32                `json:"nextPageStart,omitempty"`
	Start         *int32                `json:"start,omitempty"`
}

GetLikers200Response struct for GetLikers200Response

func NewGetLikers200Response ¶

func NewGetLikers200Response() *GetLikers200Response

NewGetLikers200Response instantiates a new GetLikers200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetLikers200ResponseWithDefaults ¶

func NewGetLikers200ResponseWithDefaults() *GetLikers200Response

NewGetLikers200ResponseWithDefaults instantiates a new GetLikers200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetLikers200Response) GetIsLastPage ¶

func (o *GetLikers200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetLikers200Response) GetIsLastPageOk ¶

func (o *GetLikers200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLikers200Response) GetLimit ¶

func (o *GetLikers200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetLikers200Response) GetLimitOk ¶

func (o *GetLikers200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLikers200Response) GetNextPageStart ¶

func (o *GetLikers200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetLikers200Response) GetNextPageStartOk ¶

func (o *GetLikers200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLikers200Response) GetSize ¶

func (o *GetLikers200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetLikers200Response) GetSizeOk ¶

func (o *GetLikers200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLikers200Response) GetStart ¶

func (o *GetLikers200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetLikers200Response) GetStartOk ¶

func (o *GetLikers200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLikers200Response) GetValues ¶

func (o *GetLikers200Response) GetValues() []RestApplicationUser

GetValues returns the Values field value if set, zero value otherwise.

func (*GetLikers200Response) GetValuesOk ¶

func (o *GetLikers200Response) GetValuesOk() ([]RestApplicationUser, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetLikers200Response) HasIsLastPage ¶

func (o *GetLikers200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetLikers200Response) HasLimit ¶

func (o *GetLikers200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetLikers200Response) HasNextPageStart ¶

func (o *GetLikers200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetLikers200Response) HasSize ¶

func (o *GetLikers200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetLikers200Response) HasStart ¶

func (o *GetLikers200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetLikers200Response) HasValues ¶

func (o *GetLikers200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetLikers200Response) MarshalJSON ¶

func (o GetLikers200Response) MarshalJSON() ([]byte, error)

func (*GetLikers200Response) SetIsLastPage ¶

func (o *GetLikers200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetLikers200Response) SetLimit ¶

func (o *GetLikers200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetLikers200Response) SetNextPageStart ¶

func (o *GetLikers200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetLikers200Response) SetSize ¶

func (o *GetLikers200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetLikers200Response) SetStart ¶

func (o *GetLikers200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetLikers200Response) SetValues ¶

func (o *GetLikers200Response) SetValues(v []RestApplicationUser)

SetValues gets a reference to the given []RestApplicationUser and assigns it to the Values field.

func (GetLikers200Response) ToMap ¶

func (o GetLikers200Response) ToMap() (map[string]interface{}, error)

type GetPageOfRequiredBuildsMergeChecks200Response ¶

type GetPageOfRequiredBuildsMergeChecks200Response struct {
	Values        []RestRequiredBuildCondition `json:"values,omitempty"`
	Size          *float32                     `json:"size,omitempty"`
	Limit         *float32                     `json:"limit,omitempty"`
	IsLastPage    *bool                        `json:"isLastPage,omitempty"`
	NextPageStart *int32                       `json:"nextPageStart,omitempty"`
	Start         *int32                       `json:"start,omitempty"`
}

GetPageOfRequiredBuildsMergeChecks200Response struct for GetPageOfRequiredBuildsMergeChecks200Response

func NewGetPageOfRequiredBuildsMergeChecks200Response ¶

func NewGetPageOfRequiredBuildsMergeChecks200Response() *GetPageOfRequiredBuildsMergeChecks200Response

NewGetPageOfRequiredBuildsMergeChecks200Response instantiates a new GetPageOfRequiredBuildsMergeChecks200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetPageOfRequiredBuildsMergeChecks200ResponseWithDefaults ¶

func NewGetPageOfRequiredBuildsMergeChecks200ResponseWithDefaults() *GetPageOfRequiredBuildsMergeChecks200Response

NewGetPageOfRequiredBuildsMergeChecks200ResponseWithDefaults instantiates a new GetPageOfRequiredBuildsMergeChecks200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetIsLastPage ¶

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetIsLastPageOk ¶

func (o *GetPageOfRequiredBuildsMergeChecks200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetLimitOk ¶

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetNextPageStart ¶

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetNextPageStartOk ¶

func (o *GetPageOfRequiredBuildsMergeChecks200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetSizeOk ¶

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetStart ¶

GetStart returns the Start field value if set, zero value otherwise.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetStartOk ¶

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetPageOfRequiredBuildsMergeChecks200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) HasIsLastPage ¶

HasIsLastPage returns a boolean if a field has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) HasNextPageStart ¶

HasNextPageStart returns a boolean if a field has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) HasStart ¶

HasStart returns a boolean if a field has been set.

func (*GetPageOfRequiredBuildsMergeChecks200Response) HasValues ¶

HasValues returns a boolean if a field has been set.

func (GetPageOfRequiredBuildsMergeChecks200Response) MarshalJSON ¶

func (*GetPageOfRequiredBuildsMergeChecks200Response) SetIsLastPage ¶

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetPageOfRequiredBuildsMergeChecks200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetPageOfRequiredBuildsMergeChecks200Response) SetNextPageStart ¶

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetPageOfRequiredBuildsMergeChecks200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetPageOfRequiredBuildsMergeChecks200Response) SetStart ¶

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetPageOfRequiredBuildsMergeChecks200Response) SetValues ¶

SetValues gets a reference to the given []RestRequiredBuildCondition and assigns it to the Values field.

func (GetPageOfRequiredBuildsMergeChecks200Response) ToMap ¶

func (o GetPageOfRequiredBuildsMergeChecks200Response) ToMap() (map[string]interface{}, error)

type GetProjects200Response ¶

type GetProjects200Response struct {
	Values        []RestProject `json:"values,omitempty"`
	Size          *float32      `json:"size,omitempty"`
	Limit         *float32      `json:"limit,omitempty"`
	IsLastPage    *bool         `json:"isLastPage,omitempty"`
	NextPageStart *int32        `json:"nextPageStart,omitempty"`
	Start         *int32        `json:"start,omitempty"`
}

GetProjects200Response struct for GetProjects200Response

func NewGetProjects200Response ¶

func NewGetProjects200Response() *GetProjects200Response

NewGetProjects200Response instantiates a new GetProjects200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetProjects200ResponseWithDefaults ¶

func NewGetProjects200ResponseWithDefaults() *GetProjects200Response

NewGetProjects200ResponseWithDefaults instantiates a new GetProjects200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetProjects200Response) GetIsLastPage ¶

func (o *GetProjects200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetProjects200Response) GetIsLastPageOk ¶

func (o *GetProjects200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjects200Response) GetLimit ¶

func (o *GetProjects200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetProjects200Response) GetLimitOk ¶

func (o *GetProjects200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjects200Response) GetNextPageStart ¶

func (o *GetProjects200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetProjects200Response) GetNextPageStartOk ¶

func (o *GetProjects200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjects200Response) GetSize ¶

func (o *GetProjects200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetProjects200Response) GetSizeOk ¶

func (o *GetProjects200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjects200Response) GetStart ¶

func (o *GetProjects200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetProjects200Response) GetStartOk ¶

func (o *GetProjects200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjects200Response) GetValues ¶

func (o *GetProjects200Response) GetValues() []RestProject

GetValues returns the Values field value if set, zero value otherwise.

func (*GetProjects200Response) GetValuesOk ¶

func (o *GetProjects200Response) GetValuesOk() ([]RestProject, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetProjects200Response) HasIsLastPage ¶

func (o *GetProjects200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetProjects200Response) HasLimit ¶

func (o *GetProjects200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetProjects200Response) HasNextPageStart ¶

func (o *GetProjects200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetProjects200Response) HasSize ¶

func (o *GetProjects200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetProjects200Response) HasStart ¶

func (o *GetProjects200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetProjects200Response) HasValues ¶

func (o *GetProjects200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetProjects200Response) MarshalJSON ¶

func (o GetProjects200Response) MarshalJSON() ([]byte, error)

func (*GetProjects200Response) SetIsLastPage ¶

func (o *GetProjects200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetProjects200Response) SetLimit ¶

func (o *GetProjects200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetProjects200Response) SetNextPageStart ¶

func (o *GetProjects200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetProjects200Response) SetSize ¶

func (o *GetProjects200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetProjects200Response) SetStart ¶

func (o *GetProjects200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetProjects200Response) SetValues ¶

func (o *GetProjects200Response) SetValues(v []RestProject)

SetValues gets a reference to the given []RestProject and assigns it to the Values field.

func (GetProjects200Response) ToMap ¶

func (o GetProjects200Response) ToMap() (map[string]interface{}, error)

type GetPullRequestSuggestions200Response ¶

type GetPullRequestSuggestions200Response struct {
	Values        []RestPullRequestSuggestion `json:"values,omitempty"`
	Size          *float32                    `json:"size,omitempty"`
	Limit         *float32                    `json:"limit,omitempty"`
	IsLastPage    *bool                       `json:"isLastPage,omitempty"`
	NextPageStart *int32                      `json:"nextPageStart,omitempty"`
	Start         *int32                      `json:"start,omitempty"`
}

GetPullRequestSuggestions200Response struct for GetPullRequestSuggestions200Response

func NewGetPullRequestSuggestions200Response ¶

func NewGetPullRequestSuggestions200Response() *GetPullRequestSuggestions200Response

NewGetPullRequestSuggestions200Response instantiates a new GetPullRequestSuggestions200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetPullRequestSuggestions200ResponseWithDefaults ¶

func NewGetPullRequestSuggestions200ResponseWithDefaults() *GetPullRequestSuggestions200Response

NewGetPullRequestSuggestions200ResponseWithDefaults instantiates a new GetPullRequestSuggestions200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetPullRequestSuggestions200Response) GetIsLastPage ¶

func (o *GetPullRequestSuggestions200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetPullRequestSuggestions200Response) GetIsLastPageOk ¶

func (o *GetPullRequestSuggestions200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequestSuggestions200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetPullRequestSuggestions200Response) GetLimitOk ¶

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequestSuggestions200Response) GetNextPageStart ¶

func (o *GetPullRequestSuggestions200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetPullRequestSuggestions200Response) GetNextPageStartOk ¶

func (o *GetPullRequestSuggestions200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequestSuggestions200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetPullRequestSuggestions200Response) GetSizeOk ¶

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequestSuggestions200Response) GetStart ¶

GetStart returns the Start field value if set, zero value otherwise.

func (*GetPullRequestSuggestions200Response) GetStartOk ¶

func (o *GetPullRequestSuggestions200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequestSuggestions200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetPullRequestSuggestions200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequestSuggestions200Response) HasIsLastPage ¶

func (o *GetPullRequestSuggestions200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetPullRequestSuggestions200Response) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*GetPullRequestSuggestions200Response) HasNextPageStart ¶

func (o *GetPullRequestSuggestions200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetPullRequestSuggestions200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetPullRequestSuggestions200Response) HasStart ¶

HasStart returns a boolean if a field has been set.

func (*GetPullRequestSuggestions200Response) HasValues ¶

HasValues returns a boolean if a field has been set.

func (GetPullRequestSuggestions200Response) MarshalJSON ¶

func (o GetPullRequestSuggestions200Response) MarshalJSON() ([]byte, error)

func (*GetPullRequestSuggestions200Response) SetIsLastPage ¶

func (o *GetPullRequestSuggestions200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetPullRequestSuggestions200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetPullRequestSuggestions200Response) SetNextPageStart ¶

func (o *GetPullRequestSuggestions200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetPullRequestSuggestions200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetPullRequestSuggestions200Response) SetStart ¶

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetPullRequestSuggestions200Response) SetValues ¶

SetValues gets a reference to the given []RestPullRequestSuggestion and assigns it to the Values field.

func (GetPullRequestSuggestions200Response) ToMap ¶

func (o GetPullRequestSuggestions200Response) ToMap() (map[string]interface{}, error)

type GetPullRequests1200Response ¶

type GetPullRequests1200Response struct {
	Values        []RestPullRequest `json:"values,omitempty"`
	Size          *float32          `json:"size,omitempty"`
	Limit         *float32          `json:"limit,omitempty"`
	IsLastPage    *bool             `json:"isLastPage,omitempty"`
	NextPageStart *int32            `json:"nextPageStart,omitempty"`
	Start         *int32            `json:"start,omitempty"`
}

GetPullRequests1200Response struct for GetPullRequests1200Response

func NewGetPullRequests1200Response ¶

func NewGetPullRequests1200Response() *GetPullRequests1200Response

NewGetPullRequests1200Response instantiates a new GetPullRequests1200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetPullRequests1200ResponseWithDefaults ¶

func NewGetPullRequests1200ResponseWithDefaults() *GetPullRequests1200Response

NewGetPullRequests1200ResponseWithDefaults instantiates a new GetPullRequests1200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetPullRequests1200Response) GetIsLastPage ¶

func (o *GetPullRequests1200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetPullRequests1200Response) GetIsLastPageOk ¶

func (o *GetPullRequests1200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequests1200Response) GetLimit ¶

func (o *GetPullRequests1200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetPullRequests1200Response) GetLimitOk ¶

func (o *GetPullRequests1200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequests1200Response) GetNextPageStart ¶

func (o *GetPullRequests1200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetPullRequests1200Response) GetNextPageStartOk ¶

func (o *GetPullRequests1200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequests1200Response) GetSize ¶

func (o *GetPullRequests1200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetPullRequests1200Response) GetSizeOk ¶

func (o *GetPullRequests1200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequests1200Response) GetStart ¶

func (o *GetPullRequests1200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetPullRequests1200Response) GetStartOk ¶

func (o *GetPullRequests1200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequests1200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetPullRequests1200Response) GetValuesOk ¶

func (o *GetPullRequests1200Response) GetValuesOk() ([]RestPullRequest, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetPullRequests1200Response) HasIsLastPage ¶

func (o *GetPullRequests1200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetPullRequests1200Response) HasLimit ¶

func (o *GetPullRequests1200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetPullRequests1200Response) HasNextPageStart ¶

func (o *GetPullRequests1200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetPullRequests1200Response) HasSize ¶

func (o *GetPullRequests1200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetPullRequests1200Response) HasStart ¶

func (o *GetPullRequests1200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetPullRequests1200Response) HasValues ¶

func (o *GetPullRequests1200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetPullRequests1200Response) MarshalJSON ¶

func (o GetPullRequests1200Response) MarshalJSON() ([]byte, error)

func (*GetPullRequests1200Response) SetIsLastPage ¶

func (o *GetPullRequests1200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetPullRequests1200Response) SetLimit ¶

func (o *GetPullRequests1200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetPullRequests1200Response) SetNextPageStart ¶

func (o *GetPullRequests1200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetPullRequests1200Response) SetSize ¶

func (o *GetPullRequests1200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetPullRequests1200Response) SetStart ¶

func (o *GetPullRequests1200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetPullRequests1200Response) SetValues ¶

func (o *GetPullRequests1200Response) SetValues(v []RestPullRequest)

SetValues gets a reference to the given []RestPullRequest and assigns it to the Values field.

func (GetPullRequests1200Response) ToMap ¶

func (o GetPullRequests1200Response) ToMap() (map[string]interface{}, error)

type GetRefChangeActivity200Response ¶

type GetRefChangeActivity200Response struct {
	Values        []RestRepositoryRefChangeActivity `json:"values,omitempty"`
	Size          *float32                          `json:"size,omitempty"`
	Limit         *float32                          `json:"limit,omitempty"`
	IsLastPage    *bool                             `json:"isLastPage,omitempty"`
	NextPageStart *int32                            `json:"nextPageStart,omitempty"`
	Start         *int32                            `json:"start,omitempty"`
}

GetRefChangeActivity200Response struct for GetRefChangeActivity200Response

func NewGetRefChangeActivity200Response ¶

func NewGetRefChangeActivity200Response() *GetRefChangeActivity200Response

NewGetRefChangeActivity200Response instantiates a new GetRefChangeActivity200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetRefChangeActivity200ResponseWithDefaults ¶

func NewGetRefChangeActivity200ResponseWithDefaults() *GetRefChangeActivity200Response

NewGetRefChangeActivity200ResponseWithDefaults instantiates a new GetRefChangeActivity200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetRefChangeActivity200Response) GetIsLastPage ¶

func (o *GetRefChangeActivity200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetRefChangeActivity200Response) GetIsLastPageOk ¶

func (o *GetRefChangeActivity200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRefChangeActivity200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetRefChangeActivity200Response) GetLimitOk ¶

func (o *GetRefChangeActivity200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRefChangeActivity200Response) GetNextPageStart ¶

func (o *GetRefChangeActivity200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetRefChangeActivity200Response) GetNextPageStartOk ¶

func (o *GetRefChangeActivity200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRefChangeActivity200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetRefChangeActivity200Response) GetSizeOk ¶

func (o *GetRefChangeActivity200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRefChangeActivity200Response) GetStart ¶

func (o *GetRefChangeActivity200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetRefChangeActivity200Response) GetStartOk ¶

func (o *GetRefChangeActivity200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRefChangeActivity200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetRefChangeActivity200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRefChangeActivity200Response) HasIsLastPage ¶

func (o *GetRefChangeActivity200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetRefChangeActivity200Response) HasLimit ¶

func (o *GetRefChangeActivity200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetRefChangeActivity200Response) HasNextPageStart ¶

func (o *GetRefChangeActivity200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetRefChangeActivity200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetRefChangeActivity200Response) HasStart ¶

func (o *GetRefChangeActivity200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetRefChangeActivity200Response) HasValues ¶

func (o *GetRefChangeActivity200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetRefChangeActivity200Response) MarshalJSON ¶

func (o GetRefChangeActivity200Response) MarshalJSON() ([]byte, error)

func (*GetRefChangeActivity200Response) SetIsLastPage ¶

func (o *GetRefChangeActivity200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetRefChangeActivity200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetRefChangeActivity200Response) SetNextPageStart ¶

func (o *GetRefChangeActivity200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetRefChangeActivity200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetRefChangeActivity200Response) SetStart ¶

func (o *GetRefChangeActivity200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetRefChangeActivity200Response) SetValues ¶

SetValues gets a reference to the given []RestRepositoryRefChangeActivity and assigns it to the Values field.

func (GetRefChangeActivity200Response) ToMap ¶

func (o GetRefChangeActivity200Response) ToMap() (map[string]interface{}, error)

type GetRepoSyncStatus200Response ¶

type GetRepoSyncStatus200Response struct {
	Values        []RestMirrorRepositorySynchronizationStatus `json:"values,omitempty"`
	Size          *float32                                    `json:"size,omitempty"`
	Limit         *float32                                    `json:"limit,omitempty"`
	IsLastPage    *bool                                       `json:"isLastPage,omitempty"`
	NextPageStart *int32                                      `json:"nextPageStart,omitempty"`
	Start         *int32                                      `json:"start,omitempty"`
}

GetRepoSyncStatus200Response struct for GetRepoSyncStatus200Response

func NewGetRepoSyncStatus200Response ¶

func NewGetRepoSyncStatus200Response() *GetRepoSyncStatus200Response

NewGetRepoSyncStatus200Response instantiates a new GetRepoSyncStatus200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetRepoSyncStatus200ResponseWithDefaults ¶

func NewGetRepoSyncStatus200ResponseWithDefaults() *GetRepoSyncStatus200Response

NewGetRepoSyncStatus200ResponseWithDefaults instantiates a new GetRepoSyncStatus200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetRepoSyncStatus200Response) GetIsLastPage ¶

func (o *GetRepoSyncStatus200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetRepoSyncStatus200Response) GetIsLastPageOk ¶

func (o *GetRepoSyncStatus200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepoSyncStatus200Response) GetLimit ¶

func (o *GetRepoSyncStatus200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetRepoSyncStatus200Response) GetLimitOk ¶

func (o *GetRepoSyncStatus200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepoSyncStatus200Response) GetNextPageStart ¶

func (o *GetRepoSyncStatus200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetRepoSyncStatus200Response) GetNextPageStartOk ¶

func (o *GetRepoSyncStatus200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepoSyncStatus200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetRepoSyncStatus200Response) GetSizeOk ¶

func (o *GetRepoSyncStatus200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepoSyncStatus200Response) GetStart ¶

func (o *GetRepoSyncStatus200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetRepoSyncStatus200Response) GetStartOk ¶

func (o *GetRepoSyncStatus200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepoSyncStatus200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetRepoSyncStatus200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepoSyncStatus200Response) HasIsLastPage ¶

func (o *GetRepoSyncStatus200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetRepoSyncStatus200Response) HasLimit ¶

func (o *GetRepoSyncStatus200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetRepoSyncStatus200Response) HasNextPageStart ¶

func (o *GetRepoSyncStatus200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetRepoSyncStatus200Response) HasSize ¶

func (o *GetRepoSyncStatus200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetRepoSyncStatus200Response) HasStart ¶

func (o *GetRepoSyncStatus200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetRepoSyncStatus200Response) HasValues ¶

func (o *GetRepoSyncStatus200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetRepoSyncStatus200Response) MarshalJSON ¶

func (o GetRepoSyncStatus200Response) MarshalJSON() ([]byte, error)

func (*GetRepoSyncStatus200Response) SetIsLastPage ¶

func (o *GetRepoSyncStatus200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetRepoSyncStatus200Response) SetLimit ¶

func (o *GetRepoSyncStatus200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetRepoSyncStatus200Response) SetNextPageStart ¶

func (o *GetRepoSyncStatus200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetRepoSyncStatus200Response) SetSize ¶

func (o *GetRepoSyncStatus200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetRepoSyncStatus200Response) SetStart ¶

func (o *GetRepoSyncStatus200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetRepoSyncStatus200Response) SetValues ¶

SetValues gets a reference to the given []RestMirrorRepositorySynchronizationStatus and assigns it to the Values field.

func (GetRepoSyncStatus200Response) ToMap ¶

func (o GetRepoSyncStatus200Response) ToMap() (map[string]interface{}, error)

type GetReports200Response ¶

type GetReports200Response struct {
	Values        []RestInsightReport `json:"values,omitempty"`
	Size          *float32            `json:"size,omitempty"`
	Limit         *float32            `json:"limit,omitempty"`
	IsLastPage    *bool               `json:"isLastPage,omitempty"`
	NextPageStart *int32              `json:"nextPageStart,omitempty"`
	Start         *int32              `json:"start,omitempty"`
}

GetReports200Response struct for GetReports200Response

func NewGetReports200Response ¶

func NewGetReports200Response() *GetReports200Response

NewGetReports200Response instantiates a new GetReports200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetReports200ResponseWithDefaults ¶

func NewGetReports200ResponseWithDefaults() *GetReports200Response

NewGetReports200ResponseWithDefaults instantiates a new GetReports200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetReports200Response) GetIsLastPage ¶

func (o *GetReports200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetReports200Response) GetIsLastPageOk ¶

func (o *GetReports200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReports200Response) GetLimit ¶

func (o *GetReports200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetReports200Response) GetLimitOk ¶

func (o *GetReports200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReports200Response) GetNextPageStart ¶

func (o *GetReports200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetReports200Response) GetNextPageStartOk ¶

func (o *GetReports200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReports200Response) GetSize ¶

func (o *GetReports200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetReports200Response) GetSizeOk ¶

func (o *GetReports200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReports200Response) GetStart ¶

func (o *GetReports200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetReports200Response) GetStartOk ¶

func (o *GetReports200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReports200Response) GetValues ¶

func (o *GetReports200Response) GetValues() []RestInsightReport

GetValues returns the Values field value if set, zero value otherwise.

func (*GetReports200Response) GetValuesOk ¶

func (o *GetReports200Response) GetValuesOk() ([]RestInsightReport, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReports200Response) HasIsLastPage ¶

func (o *GetReports200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetReports200Response) HasLimit ¶

func (o *GetReports200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetReports200Response) HasNextPageStart ¶

func (o *GetReports200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetReports200Response) HasSize ¶

func (o *GetReports200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetReports200Response) HasStart ¶

func (o *GetReports200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetReports200Response) HasValues ¶

func (o *GetReports200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetReports200Response) MarshalJSON ¶

func (o GetReports200Response) MarshalJSON() ([]byte, error)

func (*GetReports200Response) SetIsLastPage ¶

func (o *GetReports200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetReports200Response) SetLimit ¶

func (o *GetReports200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetReports200Response) SetNextPageStart ¶

func (o *GetReports200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetReports200Response) SetSize ¶

func (o *GetReports200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetReports200Response) SetStart ¶

func (o *GetReports200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetReports200Response) SetValues ¶

func (o *GetReports200Response) SetValues(v []RestInsightReport)

SetValues gets a reference to the given []RestInsightReport and assigns it to the Values field.

func (GetReports200Response) ToMap ¶

func (o GetReports200Response) ToMap() (map[string]interface{}, error)

type GetRepositoriesRecentlyAccessed200Response ¶

type GetRepositoriesRecentlyAccessed200Response struct {
	Values        []RestRepository `json:"values,omitempty"`
	Size          *float32         `json:"size,omitempty"`
	Limit         *float32         `json:"limit,omitempty"`
	IsLastPage    *bool            `json:"isLastPage,omitempty"`
	NextPageStart *int32           `json:"nextPageStart,omitempty"`
	Start         *int32           `json:"start,omitempty"`
}

GetRepositoriesRecentlyAccessed200Response struct for GetRepositoriesRecentlyAccessed200Response

func NewGetRepositoriesRecentlyAccessed200Response ¶

func NewGetRepositoriesRecentlyAccessed200Response() *GetRepositoriesRecentlyAccessed200Response

NewGetRepositoriesRecentlyAccessed200Response instantiates a new GetRepositoriesRecentlyAccessed200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetRepositoriesRecentlyAccessed200ResponseWithDefaults ¶

func NewGetRepositoriesRecentlyAccessed200ResponseWithDefaults() *GetRepositoriesRecentlyAccessed200Response

NewGetRepositoriesRecentlyAccessed200ResponseWithDefaults instantiates a new GetRepositoriesRecentlyAccessed200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetRepositoriesRecentlyAccessed200Response) GetIsLastPage ¶

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetRepositoriesRecentlyAccessed200Response) GetIsLastPageOk ¶

func (o *GetRepositoriesRecentlyAccessed200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoriesRecentlyAccessed200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetRepositoriesRecentlyAccessed200Response) GetLimitOk ¶

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoriesRecentlyAccessed200Response) GetNextPageStart ¶

func (o *GetRepositoriesRecentlyAccessed200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetRepositoriesRecentlyAccessed200Response) GetNextPageStartOk ¶

func (o *GetRepositoriesRecentlyAccessed200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoriesRecentlyAccessed200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetRepositoriesRecentlyAccessed200Response) GetSizeOk ¶

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoriesRecentlyAccessed200Response) GetStart ¶

GetStart returns the Start field value if set, zero value otherwise.

func (*GetRepositoriesRecentlyAccessed200Response) GetStartOk ¶

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoriesRecentlyAccessed200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetRepositoriesRecentlyAccessed200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoriesRecentlyAccessed200Response) HasIsLastPage ¶

HasIsLastPage returns a boolean if a field has been set.

func (*GetRepositoriesRecentlyAccessed200Response) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*GetRepositoriesRecentlyAccessed200Response) HasNextPageStart ¶

func (o *GetRepositoriesRecentlyAccessed200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetRepositoriesRecentlyAccessed200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetRepositoriesRecentlyAccessed200Response) HasStart ¶

HasStart returns a boolean if a field has been set.

func (*GetRepositoriesRecentlyAccessed200Response) HasValues ¶

HasValues returns a boolean if a field has been set.

func (GetRepositoriesRecentlyAccessed200Response) MarshalJSON ¶

func (*GetRepositoriesRecentlyAccessed200Response) SetIsLastPage ¶

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetRepositoriesRecentlyAccessed200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetRepositoriesRecentlyAccessed200Response) SetNextPageStart ¶

func (o *GetRepositoriesRecentlyAccessed200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetRepositoriesRecentlyAccessed200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetRepositoriesRecentlyAccessed200Response) SetStart ¶

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetRepositoriesRecentlyAccessed200Response) SetValues ¶

SetValues gets a reference to the given []RestRepository and assigns it to the Values field.

func (GetRepositoriesRecentlyAccessed200Response) ToMap ¶

func (o GetRepositoriesRecentlyAccessed200Response) ToMap() (map[string]interface{}, error)

type GetRepositoryHooks1200Response ¶

type GetRepositoryHooks1200Response struct {
	Values        []RestRepositoryHook `json:"values,omitempty"`
	Size          *float32             `json:"size,omitempty"`
	Limit         *float32             `json:"limit,omitempty"`
	IsLastPage    *bool                `json:"isLastPage,omitempty"`
	NextPageStart *int32               `json:"nextPageStart,omitempty"`
	Start         *int32               `json:"start,omitempty"`
}

GetRepositoryHooks1200Response struct for GetRepositoryHooks1200Response

func NewGetRepositoryHooks1200Response ¶

func NewGetRepositoryHooks1200Response() *GetRepositoryHooks1200Response

NewGetRepositoryHooks1200Response instantiates a new GetRepositoryHooks1200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetRepositoryHooks1200ResponseWithDefaults ¶

func NewGetRepositoryHooks1200ResponseWithDefaults() *GetRepositoryHooks1200Response

NewGetRepositoryHooks1200ResponseWithDefaults instantiates a new GetRepositoryHooks1200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetRepositoryHooks1200Response) GetIsLastPage ¶

func (o *GetRepositoryHooks1200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetRepositoryHooks1200Response) GetIsLastPageOk ¶

func (o *GetRepositoryHooks1200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoryHooks1200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetRepositoryHooks1200Response) GetLimitOk ¶

func (o *GetRepositoryHooks1200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoryHooks1200Response) GetNextPageStart ¶

func (o *GetRepositoryHooks1200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetRepositoryHooks1200Response) GetNextPageStartOk ¶

func (o *GetRepositoryHooks1200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoryHooks1200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetRepositoryHooks1200Response) GetSizeOk ¶

func (o *GetRepositoryHooks1200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoryHooks1200Response) GetStart ¶

func (o *GetRepositoryHooks1200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetRepositoryHooks1200Response) GetStartOk ¶

func (o *GetRepositoryHooks1200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoryHooks1200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetRepositoryHooks1200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRepositoryHooks1200Response) HasIsLastPage ¶

func (o *GetRepositoryHooks1200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetRepositoryHooks1200Response) HasLimit ¶

func (o *GetRepositoryHooks1200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetRepositoryHooks1200Response) HasNextPageStart ¶

func (o *GetRepositoryHooks1200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetRepositoryHooks1200Response) HasSize ¶

func (o *GetRepositoryHooks1200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetRepositoryHooks1200Response) HasStart ¶

func (o *GetRepositoryHooks1200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetRepositoryHooks1200Response) HasValues ¶

func (o *GetRepositoryHooks1200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetRepositoryHooks1200Response) MarshalJSON ¶

func (o GetRepositoryHooks1200Response) MarshalJSON() ([]byte, error)

func (*GetRepositoryHooks1200Response) SetIsLastPage ¶

func (o *GetRepositoryHooks1200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetRepositoryHooks1200Response) SetLimit ¶

func (o *GetRepositoryHooks1200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetRepositoryHooks1200Response) SetNextPageStart ¶

func (o *GetRepositoryHooks1200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetRepositoryHooks1200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetRepositoryHooks1200Response) SetStart ¶

func (o *GetRepositoryHooks1200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetRepositoryHooks1200Response) SetValues ¶

SetValues gets a reference to the given []RestRepositoryHook and assigns it to the Values field.

func (GetRepositoryHooks1200Response) ToMap ¶

func (o GetRepositoryHooks1200Response) ToMap() (map[string]interface{}, error)

type GetRestrictions1200Response ¶

type GetRestrictions1200Response struct {
	Values        []RestRefRestriction `json:"values,omitempty"`
	Size          *float32             `json:"size,omitempty"`
	Limit         *float32             `json:"limit,omitempty"`
	IsLastPage    *bool                `json:"isLastPage,omitempty"`
	NextPageStart *int32               `json:"nextPageStart,omitempty"`
	Start         *int32               `json:"start,omitempty"`
}

GetRestrictions1200Response struct for GetRestrictions1200Response

func NewGetRestrictions1200Response ¶

func NewGetRestrictions1200Response() *GetRestrictions1200Response

NewGetRestrictions1200Response instantiates a new GetRestrictions1200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetRestrictions1200ResponseWithDefaults ¶

func NewGetRestrictions1200ResponseWithDefaults() *GetRestrictions1200Response

NewGetRestrictions1200ResponseWithDefaults instantiates a new GetRestrictions1200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetRestrictions1200Response) GetIsLastPage ¶

func (o *GetRestrictions1200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetRestrictions1200Response) GetIsLastPageOk ¶

func (o *GetRestrictions1200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRestrictions1200Response) GetLimit ¶

func (o *GetRestrictions1200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetRestrictions1200Response) GetLimitOk ¶

func (o *GetRestrictions1200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRestrictions1200Response) GetNextPageStart ¶

func (o *GetRestrictions1200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetRestrictions1200Response) GetNextPageStartOk ¶

func (o *GetRestrictions1200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRestrictions1200Response) GetSize ¶

func (o *GetRestrictions1200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetRestrictions1200Response) GetSizeOk ¶

func (o *GetRestrictions1200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRestrictions1200Response) GetStart ¶

func (o *GetRestrictions1200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetRestrictions1200Response) GetStartOk ¶

func (o *GetRestrictions1200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRestrictions1200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetRestrictions1200Response) GetValuesOk ¶

func (o *GetRestrictions1200Response) GetValuesOk() ([]RestRefRestriction, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetRestrictions1200Response) HasIsLastPage ¶

func (o *GetRestrictions1200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetRestrictions1200Response) HasLimit ¶

func (o *GetRestrictions1200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetRestrictions1200Response) HasNextPageStart ¶

func (o *GetRestrictions1200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetRestrictions1200Response) HasSize ¶

func (o *GetRestrictions1200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetRestrictions1200Response) HasStart ¶

func (o *GetRestrictions1200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetRestrictions1200Response) HasValues ¶

func (o *GetRestrictions1200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetRestrictions1200Response) MarshalJSON ¶

func (o GetRestrictions1200Response) MarshalJSON() ([]byte, error)

func (*GetRestrictions1200Response) SetIsLastPage ¶

func (o *GetRestrictions1200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetRestrictions1200Response) SetLimit ¶

func (o *GetRestrictions1200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetRestrictions1200Response) SetNextPageStart ¶

func (o *GetRestrictions1200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetRestrictions1200Response) SetSize ¶

func (o *GetRestrictions1200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetRestrictions1200Response) SetStart ¶

func (o *GetRestrictions1200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetRestrictions1200Response) SetValues ¶

SetValues gets a reference to the given []RestRefRestriction and assigns it to the Values field.

func (GetRestrictions1200Response) ToMap ¶

func (o GetRestrictions1200Response) ToMap() (map[string]interface{}, error)

type GetReviewerGroups1200Response ¶

type GetReviewerGroups1200Response struct {
	Values        []RestReviewerGroup `json:"values,omitempty"`
	Size          *float32            `json:"size,omitempty"`
	Limit         *float32            `json:"limit,omitempty"`
	IsLastPage    *bool               `json:"isLastPage,omitempty"`
	NextPageStart *int32              `json:"nextPageStart,omitempty"`
	Start         *int32              `json:"start,omitempty"`
}

GetReviewerGroups1200Response struct for GetReviewerGroups1200Response

func NewGetReviewerGroups1200Response ¶

func NewGetReviewerGroups1200Response() *GetReviewerGroups1200Response

NewGetReviewerGroups1200Response instantiates a new GetReviewerGroups1200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetReviewerGroups1200ResponseWithDefaults ¶

func NewGetReviewerGroups1200ResponseWithDefaults() *GetReviewerGroups1200Response

NewGetReviewerGroups1200ResponseWithDefaults instantiates a new GetReviewerGroups1200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetReviewerGroups1200Response) GetIsLastPage ¶

func (o *GetReviewerGroups1200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetReviewerGroups1200Response) GetIsLastPageOk ¶

func (o *GetReviewerGroups1200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReviewerGroups1200Response) GetLimit ¶

func (o *GetReviewerGroups1200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetReviewerGroups1200Response) GetLimitOk ¶

func (o *GetReviewerGroups1200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReviewerGroups1200Response) GetNextPageStart ¶

func (o *GetReviewerGroups1200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetReviewerGroups1200Response) GetNextPageStartOk ¶

func (o *GetReviewerGroups1200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReviewerGroups1200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetReviewerGroups1200Response) GetSizeOk ¶

func (o *GetReviewerGroups1200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReviewerGroups1200Response) GetStart ¶

func (o *GetReviewerGroups1200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetReviewerGroups1200Response) GetStartOk ¶

func (o *GetReviewerGroups1200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReviewerGroups1200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetReviewerGroups1200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetReviewerGroups1200Response) HasIsLastPage ¶

func (o *GetReviewerGroups1200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetReviewerGroups1200Response) HasLimit ¶

func (o *GetReviewerGroups1200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetReviewerGroups1200Response) HasNextPageStart ¶

func (o *GetReviewerGroups1200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetReviewerGroups1200Response) HasSize ¶

func (o *GetReviewerGroups1200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetReviewerGroups1200Response) HasStart ¶

func (o *GetReviewerGroups1200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetReviewerGroups1200Response) HasValues ¶

func (o *GetReviewerGroups1200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetReviewerGroups1200Response) MarshalJSON ¶

func (o GetReviewerGroups1200Response) MarshalJSON() ([]byte, error)

func (*GetReviewerGroups1200Response) SetIsLastPage ¶

func (o *GetReviewerGroups1200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetReviewerGroups1200Response) SetLimit ¶

func (o *GetReviewerGroups1200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetReviewerGroups1200Response) SetNextPageStart ¶

func (o *GetReviewerGroups1200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetReviewerGroups1200Response) SetSize ¶

func (o *GetReviewerGroups1200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetReviewerGroups1200Response) SetStart ¶

func (o *GetReviewerGroups1200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetReviewerGroups1200Response) SetValues ¶

SetValues gets a reference to the given []RestReviewerGroup and assigns it to the Values field.

func (GetReviewerGroups1200Response) ToMap ¶

func (o GetReviewerGroups1200Response) ToMap() (map[string]interface{}, error)

type GetSshKeys200Response ¶

type GetSshKeys200Response struct {
	Values        []RestSshKey `json:"values,omitempty"`
	Size          *float32     `json:"size,omitempty"`
	Limit         *float32     `json:"limit,omitempty"`
	IsLastPage    *bool        `json:"isLastPage,omitempty"`
	NextPageStart *int32       `json:"nextPageStart,omitempty"`
	Start         *int32       `json:"start,omitempty"`
}

GetSshKeys200Response struct for GetSshKeys200Response

func NewGetSshKeys200Response ¶

func NewGetSshKeys200Response() *GetSshKeys200Response

NewGetSshKeys200Response instantiates a new GetSshKeys200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetSshKeys200ResponseWithDefaults ¶

func NewGetSshKeys200ResponseWithDefaults() *GetSshKeys200Response

NewGetSshKeys200ResponseWithDefaults instantiates a new GetSshKeys200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetSshKeys200Response) GetIsLastPage ¶

func (o *GetSshKeys200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetSshKeys200Response) GetIsLastPageOk ¶

func (o *GetSshKeys200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeys200Response) GetLimit ¶

func (o *GetSshKeys200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetSshKeys200Response) GetLimitOk ¶

func (o *GetSshKeys200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeys200Response) GetNextPageStart ¶

func (o *GetSshKeys200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetSshKeys200Response) GetNextPageStartOk ¶

func (o *GetSshKeys200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeys200Response) GetSize ¶

func (o *GetSshKeys200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetSshKeys200Response) GetSizeOk ¶

func (o *GetSshKeys200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeys200Response) GetStart ¶

func (o *GetSshKeys200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetSshKeys200Response) GetStartOk ¶

func (o *GetSshKeys200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeys200Response) GetValues ¶

func (o *GetSshKeys200Response) GetValues() []RestSshKey

GetValues returns the Values field value if set, zero value otherwise.

func (*GetSshKeys200Response) GetValuesOk ¶

func (o *GetSshKeys200Response) GetValuesOk() ([]RestSshKey, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeys200Response) HasIsLastPage ¶

func (o *GetSshKeys200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetSshKeys200Response) HasLimit ¶

func (o *GetSshKeys200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetSshKeys200Response) HasNextPageStart ¶

func (o *GetSshKeys200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetSshKeys200Response) HasSize ¶

func (o *GetSshKeys200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetSshKeys200Response) HasStart ¶

func (o *GetSshKeys200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetSshKeys200Response) HasValues ¶

func (o *GetSshKeys200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetSshKeys200Response) MarshalJSON ¶

func (o GetSshKeys200Response) MarshalJSON() ([]byte, error)

func (*GetSshKeys200Response) SetIsLastPage ¶

func (o *GetSshKeys200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetSshKeys200Response) SetLimit ¶

func (o *GetSshKeys200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetSshKeys200Response) SetNextPageStart ¶

func (o *GetSshKeys200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetSshKeys200Response) SetSize ¶

func (o *GetSshKeys200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetSshKeys200Response) SetStart ¶

func (o *GetSshKeys200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetSshKeys200Response) SetValues ¶

func (o *GetSshKeys200Response) SetValues(v []RestSshKey)

SetValues gets a reference to the given []RestSshKey and assigns it to the Values field.

func (GetSshKeys200Response) ToMap ¶

func (o GetSshKeys200Response) ToMap() (map[string]interface{}, error)

type GetSshKeysForProject200Response ¶

type GetSshKeysForProject200Response struct {
	Values        []RestSshAccessKey `json:"values,omitempty"`
	Size          *float32           `json:"size,omitempty"`
	Limit         *float32           `json:"limit,omitempty"`
	IsLastPage    *bool              `json:"isLastPage,omitempty"`
	NextPageStart *int32             `json:"nextPageStart,omitempty"`
	Start         *int32             `json:"start,omitempty"`
}

GetSshKeysForProject200Response struct for GetSshKeysForProject200Response

func NewGetSshKeysForProject200Response ¶

func NewGetSshKeysForProject200Response() *GetSshKeysForProject200Response

NewGetSshKeysForProject200Response instantiates a new GetSshKeysForProject200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetSshKeysForProject200ResponseWithDefaults ¶

func NewGetSshKeysForProject200ResponseWithDefaults() *GetSshKeysForProject200Response

NewGetSshKeysForProject200ResponseWithDefaults instantiates a new GetSshKeysForProject200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetSshKeysForProject200Response) GetIsLastPage ¶

func (o *GetSshKeysForProject200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetSshKeysForProject200Response) GetIsLastPageOk ¶

func (o *GetSshKeysForProject200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeysForProject200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetSshKeysForProject200Response) GetLimitOk ¶

func (o *GetSshKeysForProject200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeysForProject200Response) GetNextPageStart ¶

func (o *GetSshKeysForProject200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetSshKeysForProject200Response) GetNextPageStartOk ¶

func (o *GetSshKeysForProject200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeysForProject200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetSshKeysForProject200Response) GetSizeOk ¶

func (o *GetSshKeysForProject200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeysForProject200Response) GetStart ¶

func (o *GetSshKeysForProject200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetSshKeysForProject200Response) GetStartOk ¶

func (o *GetSshKeysForProject200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeysForProject200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetSshKeysForProject200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetSshKeysForProject200Response) HasIsLastPage ¶

func (o *GetSshKeysForProject200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetSshKeysForProject200Response) HasLimit ¶

func (o *GetSshKeysForProject200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetSshKeysForProject200Response) HasNextPageStart ¶

func (o *GetSshKeysForProject200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetSshKeysForProject200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetSshKeysForProject200Response) HasStart ¶

func (o *GetSshKeysForProject200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetSshKeysForProject200Response) HasValues ¶

func (o *GetSshKeysForProject200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetSshKeysForProject200Response) MarshalJSON ¶

func (o GetSshKeysForProject200Response) MarshalJSON() ([]byte, error)

func (*GetSshKeysForProject200Response) SetIsLastPage ¶

func (o *GetSshKeysForProject200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetSshKeysForProject200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetSshKeysForProject200Response) SetNextPageStart ¶

func (o *GetSshKeysForProject200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetSshKeysForProject200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetSshKeysForProject200Response) SetStart ¶

func (o *GetSshKeysForProject200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetSshKeysForProject200Response) SetValues ¶

SetValues gets a reference to the given []RestSshAccessKey and assigns it to the Values field.

func (GetSshKeysForProject200Response) ToMap ¶

func (o GetSshKeysForProject200Response) ToMap() (map[string]interface{}, error)

type GetTags200Response ¶

type GetTags200Response struct {
	Values        []RestTag `json:"values,omitempty"`
	Size          *float32  `json:"size,omitempty"`
	Limit         *float32  `json:"limit,omitempty"`
	IsLastPage    *bool     `json:"isLastPage,omitempty"`
	NextPageStart *int32    `json:"nextPageStart,omitempty"`
	Start         *int32    `json:"start,omitempty"`
}

GetTags200Response struct for GetTags200Response

func NewGetTags200Response ¶

func NewGetTags200Response() *GetTags200Response

NewGetTags200Response instantiates a new GetTags200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetTags200ResponseWithDefaults ¶

func NewGetTags200ResponseWithDefaults() *GetTags200Response

NewGetTags200ResponseWithDefaults instantiates a new GetTags200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetTags200Response) GetIsLastPage ¶

func (o *GetTags200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetTags200Response) GetIsLastPageOk ¶

func (o *GetTags200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetTags200Response) GetLimit ¶

func (o *GetTags200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetTags200Response) GetLimitOk ¶

func (o *GetTags200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetTags200Response) GetNextPageStart ¶

func (o *GetTags200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetTags200Response) GetNextPageStartOk ¶

func (o *GetTags200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetTags200Response) GetSize ¶

func (o *GetTags200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*GetTags200Response) GetSizeOk ¶

func (o *GetTags200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetTags200Response) GetStart ¶

func (o *GetTags200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*GetTags200Response) GetStartOk ¶

func (o *GetTags200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetTags200Response) GetValues ¶

func (o *GetTags200Response) GetValues() []RestTag

GetValues returns the Values field value if set, zero value otherwise.

func (*GetTags200Response) GetValuesOk ¶

func (o *GetTags200Response) GetValuesOk() ([]RestTag, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetTags200Response) HasIsLastPage ¶

func (o *GetTags200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetTags200Response) HasLimit ¶

func (o *GetTags200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetTags200Response) HasNextPageStart ¶

func (o *GetTags200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetTags200Response) HasSize ¶

func (o *GetTags200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*GetTags200Response) HasStart ¶

func (o *GetTags200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*GetTags200Response) HasValues ¶

func (o *GetTags200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (GetTags200Response) MarshalJSON ¶

func (o GetTags200Response) MarshalJSON() ([]byte, error)

func (*GetTags200Response) SetIsLastPage ¶

func (o *GetTags200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetTags200Response) SetLimit ¶

func (o *GetTags200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetTags200Response) SetNextPageStart ¶

func (o *GetTags200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetTags200Response) SetSize ¶

func (o *GetTags200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetTags200Response) SetStart ¶

func (o *GetTags200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetTags200Response) SetValues ¶

func (o *GetTags200Response) SetValues(v []RestTag)

SetValues gets a reference to the given []RestTag and assigns it to the Values field.

func (GetTags200Response) ToMap ¶

func (o GetTags200Response) ToMap() (map[string]interface{}, error)

type GetUsersWithAnyPermission1200Response ¶

type GetUsersWithAnyPermission1200Response struct {
	Values        []RestPermittedUser `json:"values,omitempty"`
	Size          *float32            `json:"size,omitempty"`
	Limit         *float32            `json:"limit,omitempty"`
	IsLastPage    *bool               `json:"isLastPage,omitempty"`
	NextPageStart *int32              `json:"nextPageStart,omitempty"`
	Start         *int32              `json:"start,omitempty"`
}

GetUsersWithAnyPermission1200Response struct for GetUsersWithAnyPermission1200Response

func NewGetUsersWithAnyPermission1200Response ¶

func NewGetUsersWithAnyPermission1200Response() *GetUsersWithAnyPermission1200Response

NewGetUsersWithAnyPermission1200Response instantiates a new GetUsersWithAnyPermission1200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGetUsersWithAnyPermission1200ResponseWithDefaults ¶

func NewGetUsersWithAnyPermission1200ResponseWithDefaults() *GetUsersWithAnyPermission1200Response

NewGetUsersWithAnyPermission1200ResponseWithDefaults instantiates a new GetUsersWithAnyPermission1200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GetUsersWithAnyPermission1200Response) GetIsLastPage ¶

func (o *GetUsersWithAnyPermission1200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*GetUsersWithAnyPermission1200Response) GetIsLastPageOk ¶

func (o *GetUsersWithAnyPermission1200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUsersWithAnyPermission1200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetUsersWithAnyPermission1200Response) GetLimitOk ¶

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUsersWithAnyPermission1200Response) GetNextPageStart ¶

func (o *GetUsersWithAnyPermission1200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*GetUsersWithAnyPermission1200Response) GetNextPageStartOk ¶

func (o *GetUsersWithAnyPermission1200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUsersWithAnyPermission1200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*GetUsersWithAnyPermission1200Response) GetSizeOk ¶

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUsersWithAnyPermission1200Response) GetStart ¶

GetStart returns the Start field value if set, zero value otherwise.

func (*GetUsersWithAnyPermission1200Response) GetStartOk ¶

func (o *GetUsersWithAnyPermission1200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUsersWithAnyPermission1200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*GetUsersWithAnyPermission1200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetUsersWithAnyPermission1200Response) HasIsLastPage ¶

func (o *GetUsersWithAnyPermission1200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*GetUsersWithAnyPermission1200Response) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*GetUsersWithAnyPermission1200Response) HasNextPageStart ¶

func (o *GetUsersWithAnyPermission1200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*GetUsersWithAnyPermission1200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*GetUsersWithAnyPermission1200Response) HasStart ¶

HasStart returns a boolean if a field has been set.

func (*GetUsersWithAnyPermission1200Response) HasValues ¶

HasValues returns a boolean if a field has been set.

func (GetUsersWithAnyPermission1200Response) MarshalJSON ¶

func (o GetUsersWithAnyPermission1200Response) MarshalJSON() ([]byte, error)

func (*GetUsersWithAnyPermission1200Response) SetIsLastPage ¶

func (o *GetUsersWithAnyPermission1200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*GetUsersWithAnyPermission1200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*GetUsersWithAnyPermission1200Response) SetNextPageStart ¶

func (o *GetUsersWithAnyPermission1200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*GetUsersWithAnyPermission1200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*GetUsersWithAnyPermission1200Response) SetStart ¶

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*GetUsersWithAnyPermission1200Response) SetValues ¶

SetValues gets a reference to the given []RestPermittedUser and assigns it to the Values field.

func (GetUsersWithAnyPermission1200Response) ToMap ¶

func (o GetUsersWithAnyPermission1200Response) ToMap() (map[string]interface{}, error)

type Group ¶

type Group struct {
	Name *string `json:"name,omitempty"`
}

Group struct for Group

func NewGroup ¶

func NewGroup() *Group

NewGroup instantiates a new Group object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupWithDefaults ¶

func NewGroupWithDefaults() *Group

NewGroupWithDefaults instantiates a new Group object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Group) GetName ¶

func (o *Group) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Group) GetNameOk ¶

func (o *Group) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Group) HasName ¶

func (o *Group) HasName() bool

HasName returns a boolean if a field has been set.

func (Group) MarshalJSON ¶

func (o Group) MarshalJSON() ([]byte, error)

func (*Group) SetName ¶

func (o *Group) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (Group) ToMap ¶

func (o Group) ToMap() (map[string]interface{}, error)

type GroupAndUsers ¶

type GroupAndUsers struct {
	Group *string  `json:"group,omitempty"`
	Users []string `json:"users"`
}

GroupAndUsers struct for GroupAndUsers

func NewGroupAndUsers ¶

func NewGroupAndUsers(users []string) *GroupAndUsers

NewGroupAndUsers instantiates a new GroupAndUsers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupAndUsersWithDefaults ¶

func NewGroupAndUsersWithDefaults() *GroupAndUsers

NewGroupAndUsersWithDefaults instantiates a new GroupAndUsers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupAndUsers) GetGroup ¶

func (o *GroupAndUsers) GetGroup() string

GetGroup returns the Group field value if set, zero value otherwise.

func (*GroupAndUsers) GetGroupOk ¶

func (o *GroupAndUsers) GetGroupOk() (*string, bool)

GetGroupOk returns a tuple with the Group field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupAndUsers) GetUsers ¶

func (o *GroupAndUsers) GetUsers() []string

GetUsers returns the Users field value

func (*GroupAndUsers) GetUsersOk ¶

func (o *GroupAndUsers) GetUsersOk() ([]string, bool)

GetUsersOk returns a tuple with the Users field value and a boolean to check if the value has been set.

func (*GroupAndUsers) HasGroup ¶

func (o *GroupAndUsers) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (GroupAndUsers) MarshalJSON ¶

func (o GroupAndUsers) MarshalJSON() ([]byte, error)

func (*GroupAndUsers) SetGroup ¶

func (o *GroupAndUsers) SetGroup(v string)

SetGroup gets a reference to the given string and assigns it to the Group field.

func (*GroupAndUsers) SetUsers ¶

func (o *GroupAndUsers) SetUsers(v []string)

SetUsers sets field value

func (GroupAndUsers) ToMap ¶

func (o GroupAndUsers) ToMap() (map[string]interface{}, error)

type GroupPickerContext ¶

type GroupPickerContext struct {
	Context  *string `json:"context,omitempty"`
	ItemName *string `json:"itemName,omitempty"`
}

GroupPickerContext struct for GroupPickerContext

func NewGroupPickerContext ¶

func NewGroupPickerContext() *GroupPickerContext

NewGroupPickerContext instantiates a new GroupPickerContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewGroupPickerContextWithDefaults ¶

func NewGroupPickerContextWithDefaults() *GroupPickerContext

NewGroupPickerContextWithDefaults instantiates a new GroupPickerContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*GroupPickerContext) GetContext ¶

func (o *GroupPickerContext) GetContext() string

GetContext returns the Context field value if set, zero value otherwise.

func (*GroupPickerContext) GetContextOk ¶

func (o *GroupPickerContext) GetContextOk() (*string, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupPickerContext) GetItemName ¶

func (o *GroupPickerContext) GetItemName() string

GetItemName returns the ItemName field value if set, zero value otherwise.

func (*GroupPickerContext) GetItemNameOk ¶

func (o *GroupPickerContext) GetItemNameOk() (*string, bool)

GetItemNameOk returns a tuple with the ItemName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GroupPickerContext) HasContext ¶

func (o *GroupPickerContext) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*GroupPickerContext) HasItemName ¶

func (o *GroupPickerContext) HasItemName() bool

HasItemName returns a boolean if a field has been set.

func (GroupPickerContext) MarshalJSON ¶

func (o GroupPickerContext) MarshalJSON() ([]byte, error)

func (*GroupPickerContext) SetContext ¶

func (o *GroupPickerContext) SetContext(v string)

SetContext gets a reference to the given string and assigns it to the Context field.

func (*GroupPickerContext) SetItemName ¶

func (o *GroupPickerContext) SetItemName(v string)

SetItemName gets a reference to the given string and assigns it to the ItemName field.

func (GroupPickerContext) ToMap ¶

func (o GroupPickerContext) ToMap() (map[string]interface{}, error)

type JiraIntegrationAPICreateIssueRequest ¶

type JiraIntegrationAPICreateIssueRequest struct {
	ApiService *JiraIntegrationAPIService
	// contains filtered or unexported fields
}

func (JiraIntegrationAPICreateIssueRequest) ApplicationId ¶

id of the Jira server

func (JiraIntegrationAPICreateIssueRequest) Body ¶

A String representation of the JSON format Jira create issue request see: &lt;a href&#x3D;\&quot;https://docs.atlassian.com/jira/REST/server/#api/2/issue-createIssue\&quot;&gt;Jira REST API&lt;/a&gt;

func (JiraIntegrationAPICreateIssueRequest) Execute ¶

type JiraIntegrationAPIGetCommitsByIssueKeyRequest ¶

type JiraIntegrationAPIGetCommitsByIssueKeyRequest struct {
	ApiService *JiraIntegrationAPIService
	// contains filtered or unexported fields
}

func (JiraIntegrationAPIGetCommitsByIssueKeyRequest) Execute ¶

func (JiraIntegrationAPIGetCommitsByIssueKeyRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (JiraIntegrationAPIGetCommitsByIssueKeyRequest) MaxChanges ¶

The maximum number of changes to retrieve for each changeset

func (JiraIntegrationAPIGetCommitsByIssueKeyRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type JiraIntegrationAPIGetEnhancedEntityLinkForProjectRequest ¶

type JiraIntegrationAPIGetEnhancedEntityLinkForProjectRequest struct {
	ApiService *JiraIntegrationAPIService
	// contains filtered or unexported fields
}

func (JiraIntegrationAPIGetEnhancedEntityLinkForProjectRequest) Execute ¶

type JiraIntegrationAPIGetIssueKeysForPullRequestRequest ¶

type JiraIntegrationAPIGetIssueKeysForPullRequestRequest struct {
	ApiService *JiraIntegrationAPIService
	// contains filtered or unexported fields
}

func (JiraIntegrationAPIGetIssueKeysForPullRequestRequest) Execute ¶

type JiraIntegrationAPIService ¶

type JiraIntegrationAPIService service

JiraIntegrationAPIService JiraIntegrationAPI service

func (*JiraIntegrationAPIService) CreateIssue ¶

CreateIssue Create Jira Issue

Create a Jira issue and associate it with a comment on a pull request.

This resource can only be used with comments on a pull request. Attempting to call this resource with a different type of comment (for example, a comment on a commit) will result in an error.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository containing the comment to call this resource.

The JSON structure for the create issue format is specified by Jira's REST v2 API.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param commentId the comment to associate the created Jira issue to
@return JiraIntegrationAPICreateIssueRequest

func (*JiraIntegrationAPIService) CreateIssueExecute ¶

Execute executes the request

@return RestCommentJiraIssue

func (*JiraIntegrationAPIService) GetCommitsByIssueKey ¶

GetCommitsByIssueKey Get changesets for issue key

Retrieve a page of changesets associated with the given issue key.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param issueKey The issue key to search by
@return JiraIntegrationAPIGetCommitsByIssueKeyRequest

func (*JiraIntegrationAPIService) GetCommitsByIssueKeyExecute ¶

Execute executes the request

@return GetCommitsByIssueKey200Response

func (*JiraIntegrationAPIService) GetEnhancedEntityLinkForProject ¶

GetEnhancedEntityLinkForProject Get entity link

The authenticated user must have <strong>PROJECT_READ</strong> permission for the project having the primary enhanced entitylink.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return JiraIntegrationAPIGetEnhancedEntityLinkForProjectRequest

func (*JiraIntegrationAPIService) GetEnhancedEntityLinkForProjectExecute ¶

Execute executes the request

@return RestEnhancedEntityLink

func (*JiraIntegrationAPIService) GetIssueKeysForPullRequest ¶

func (a *JiraIntegrationAPIService) GetIssueKeysForPullRequest(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) JiraIntegrationAPIGetIssueKeysForPullRequestRequest

GetIssueKeysForPullRequest Get issues for a pull request

Retrieves Jira issue keys that are associated with the commits in the specified pull request. The number of commits checked for issues is limited to a default of 100.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param pullRequestId The pull request id
@param repositorySlug The repository slug
@return JiraIntegrationAPIGetIssueKeysForPullRequestRequest

func (*JiraIntegrationAPIService) GetIssueKeysForPullRequestExecute ¶

Execute executes the request

@return []RestJiraIssue

type ListMirrors200Response ¶

type ListMirrors200Response struct {
	Values        []RestMirrorServer `json:"values,omitempty"`
	Size          *float32           `json:"size,omitempty"`
	Limit         *float32           `json:"limit,omitempty"`
	IsLastPage    *bool              `json:"isLastPage,omitempty"`
	NextPageStart *int32             `json:"nextPageStart,omitempty"`
	Start         *int32             `json:"start,omitempty"`
}

ListMirrors200Response struct for ListMirrors200Response

func NewListMirrors200Response ¶

func NewListMirrors200Response() *ListMirrors200Response

NewListMirrors200Response instantiates a new ListMirrors200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListMirrors200ResponseWithDefaults ¶

func NewListMirrors200ResponseWithDefaults() *ListMirrors200Response

NewListMirrors200ResponseWithDefaults instantiates a new ListMirrors200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListMirrors200Response) GetIsLastPage ¶

func (o *ListMirrors200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*ListMirrors200Response) GetIsLastPageOk ¶

func (o *ListMirrors200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMirrors200Response) GetLimit ¶

func (o *ListMirrors200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListMirrors200Response) GetLimitOk ¶

func (o *ListMirrors200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMirrors200Response) GetNextPageStart ¶

func (o *ListMirrors200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*ListMirrors200Response) GetNextPageStartOk ¶

func (o *ListMirrors200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMirrors200Response) GetSize ¶

func (o *ListMirrors200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*ListMirrors200Response) GetSizeOk ¶

func (o *ListMirrors200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMirrors200Response) GetStart ¶

func (o *ListMirrors200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*ListMirrors200Response) GetStartOk ¶

func (o *ListMirrors200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMirrors200Response) GetValues ¶

func (o *ListMirrors200Response) GetValues() []RestMirrorServer

GetValues returns the Values field value if set, zero value otherwise.

func (*ListMirrors200Response) GetValuesOk ¶

func (o *ListMirrors200Response) GetValuesOk() ([]RestMirrorServer, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListMirrors200Response) HasIsLastPage ¶

func (o *ListMirrors200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*ListMirrors200Response) HasLimit ¶

func (o *ListMirrors200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListMirrors200Response) HasNextPageStart ¶

func (o *ListMirrors200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*ListMirrors200Response) HasSize ¶

func (o *ListMirrors200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ListMirrors200Response) HasStart ¶

func (o *ListMirrors200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*ListMirrors200Response) HasValues ¶

func (o *ListMirrors200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (ListMirrors200Response) MarshalJSON ¶

func (o ListMirrors200Response) MarshalJSON() ([]byte, error)

func (*ListMirrors200Response) SetIsLastPage ¶

func (o *ListMirrors200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*ListMirrors200Response) SetLimit ¶

func (o *ListMirrors200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*ListMirrors200Response) SetNextPageStart ¶

func (o *ListMirrors200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*ListMirrors200Response) SetSize ¶

func (o *ListMirrors200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*ListMirrors200Response) SetStart ¶

func (o *ListMirrors200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*ListMirrors200Response) SetValues ¶

func (o *ListMirrors200Response) SetValues(v []RestMirrorServer)

SetValues gets a reference to the given []RestMirrorServer and assigns it to the Values field.

func (ListMirrors200Response) ToMap ¶

func (o ListMirrors200Response) ToMap() (map[string]interface{}, error)

type ListParticipants200Response ¶

type ListParticipants200Response struct {
	Values        []RestPullRequestParticipant `json:"values,omitempty"`
	Size          *float32                     `json:"size,omitempty"`
	Limit         *float32                     `json:"limit,omitempty"`
	IsLastPage    *bool                        `json:"isLastPage,omitempty"`
	NextPageStart *int32                       `json:"nextPageStart,omitempty"`
	Start         *int32                       `json:"start,omitempty"`
}

ListParticipants200Response struct for ListParticipants200Response

func NewListParticipants200Response ¶

func NewListParticipants200Response() *ListParticipants200Response

NewListParticipants200Response instantiates a new ListParticipants200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListParticipants200ResponseWithDefaults ¶

func NewListParticipants200ResponseWithDefaults() *ListParticipants200Response

NewListParticipants200ResponseWithDefaults instantiates a new ListParticipants200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListParticipants200Response) GetIsLastPage ¶

func (o *ListParticipants200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*ListParticipants200Response) GetIsLastPageOk ¶

func (o *ListParticipants200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListParticipants200Response) GetLimit ¶

func (o *ListParticipants200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListParticipants200Response) GetLimitOk ¶

func (o *ListParticipants200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListParticipants200Response) GetNextPageStart ¶

func (o *ListParticipants200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*ListParticipants200Response) GetNextPageStartOk ¶

func (o *ListParticipants200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListParticipants200Response) GetSize ¶

func (o *ListParticipants200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*ListParticipants200Response) GetSizeOk ¶

func (o *ListParticipants200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListParticipants200Response) GetStart ¶

func (o *ListParticipants200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*ListParticipants200Response) GetStartOk ¶

func (o *ListParticipants200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListParticipants200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*ListParticipants200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListParticipants200Response) HasIsLastPage ¶

func (o *ListParticipants200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*ListParticipants200Response) HasLimit ¶

func (o *ListParticipants200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListParticipants200Response) HasNextPageStart ¶

func (o *ListParticipants200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*ListParticipants200Response) HasSize ¶

func (o *ListParticipants200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ListParticipants200Response) HasStart ¶

func (o *ListParticipants200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*ListParticipants200Response) HasValues ¶

func (o *ListParticipants200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (ListParticipants200Response) MarshalJSON ¶

func (o ListParticipants200Response) MarshalJSON() ([]byte, error)

func (*ListParticipants200Response) SetIsLastPage ¶

func (o *ListParticipants200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*ListParticipants200Response) SetLimit ¶

func (o *ListParticipants200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*ListParticipants200Response) SetNextPageStart ¶

func (o *ListParticipants200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*ListParticipants200Response) SetSize ¶

func (o *ListParticipants200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*ListParticipants200Response) SetStart ¶

func (o *ListParticipants200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*ListParticipants200Response) SetValues ¶

SetValues gets a reference to the given []RestPullRequestParticipant and assigns it to the Values field.

func (ListParticipants200Response) ToMap ¶

func (o ListParticipants200Response) ToMap() (map[string]interface{}, error)

type ListRequests200Response ¶

type ListRequests200Response struct {
	Values        []RestMirroringRequest `json:"values,omitempty"`
	Size          *float32               `json:"size,omitempty"`
	Limit         *float32               `json:"limit,omitempty"`
	IsLastPage    *bool                  `json:"isLastPage,omitempty"`
	NextPageStart *int32                 `json:"nextPageStart,omitempty"`
	Start         *int32                 `json:"start,omitempty"`
}

ListRequests200Response struct for ListRequests200Response

func NewListRequests200Response ¶

func NewListRequests200Response() *ListRequests200Response

NewListRequests200Response instantiates a new ListRequests200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListRequests200ResponseWithDefaults ¶

func NewListRequests200ResponseWithDefaults() *ListRequests200Response

NewListRequests200ResponseWithDefaults instantiates a new ListRequests200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListRequests200Response) GetIsLastPage ¶

func (o *ListRequests200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*ListRequests200Response) GetIsLastPageOk ¶

func (o *ListRequests200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRequests200Response) GetLimit ¶

func (o *ListRequests200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListRequests200Response) GetLimitOk ¶

func (o *ListRequests200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRequests200Response) GetNextPageStart ¶

func (o *ListRequests200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*ListRequests200Response) GetNextPageStartOk ¶

func (o *ListRequests200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRequests200Response) GetSize ¶

func (o *ListRequests200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*ListRequests200Response) GetSizeOk ¶

func (o *ListRequests200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRequests200Response) GetStart ¶

func (o *ListRequests200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*ListRequests200Response) GetStartOk ¶

func (o *ListRequests200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRequests200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*ListRequests200Response) GetValuesOk ¶

func (o *ListRequests200Response) GetValuesOk() ([]RestMirroringRequest, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRequests200Response) HasIsLastPage ¶

func (o *ListRequests200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*ListRequests200Response) HasLimit ¶

func (o *ListRequests200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListRequests200Response) HasNextPageStart ¶

func (o *ListRequests200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*ListRequests200Response) HasSize ¶

func (o *ListRequests200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ListRequests200Response) HasStart ¶

func (o *ListRequests200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*ListRequests200Response) HasValues ¶

func (o *ListRequests200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (ListRequests200Response) MarshalJSON ¶

func (o ListRequests200Response) MarshalJSON() ([]byte, error)

func (*ListRequests200Response) SetIsLastPage ¶

func (o *ListRequests200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*ListRequests200Response) SetLimit ¶

func (o *ListRequests200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*ListRequests200Response) SetNextPageStart ¶

func (o *ListRequests200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*ListRequests200Response) SetSize ¶

func (o *ListRequests200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*ListRequests200Response) SetStart ¶

func (o *ListRequests200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*ListRequests200Response) SetValues ¶

SetValues gets a reference to the given []RestMirroringRequest and assigns it to the Values field.

func (ListRequests200Response) ToMap ¶

func (o ListRequests200Response) ToMap() (map[string]interface{}, error)

type ListUpstreamServers200Response ¶

type ListUpstreamServers200Response struct {
	Values        []RestUpstreamServer `json:"values,omitempty"`
	Size          *float32             `json:"size,omitempty"`
	Limit         *float32             `json:"limit,omitempty"`
	IsLastPage    *bool                `json:"isLastPage,omitempty"`
	NextPageStart *int32               `json:"nextPageStart,omitempty"`
	Start         *int32               `json:"start,omitempty"`
}

ListUpstreamServers200Response struct for ListUpstreamServers200Response

func NewListUpstreamServers200Response ¶

func NewListUpstreamServers200Response() *ListUpstreamServers200Response

NewListUpstreamServers200Response instantiates a new ListUpstreamServers200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewListUpstreamServers200ResponseWithDefaults ¶

func NewListUpstreamServers200ResponseWithDefaults() *ListUpstreamServers200Response

NewListUpstreamServers200ResponseWithDefaults instantiates a new ListUpstreamServers200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ListUpstreamServers200Response) GetIsLastPage ¶

func (o *ListUpstreamServers200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*ListUpstreamServers200Response) GetIsLastPageOk ¶

func (o *ListUpstreamServers200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUpstreamServers200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListUpstreamServers200Response) GetLimitOk ¶

func (o *ListUpstreamServers200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUpstreamServers200Response) GetNextPageStart ¶

func (o *ListUpstreamServers200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*ListUpstreamServers200Response) GetNextPageStartOk ¶

func (o *ListUpstreamServers200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUpstreamServers200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*ListUpstreamServers200Response) GetSizeOk ¶

func (o *ListUpstreamServers200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUpstreamServers200Response) GetStart ¶

func (o *ListUpstreamServers200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*ListUpstreamServers200Response) GetStartOk ¶

func (o *ListUpstreamServers200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUpstreamServers200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*ListUpstreamServers200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUpstreamServers200Response) HasIsLastPage ¶

func (o *ListUpstreamServers200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*ListUpstreamServers200Response) HasLimit ¶

func (o *ListUpstreamServers200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListUpstreamServers200Response) HasNextPageStart ¶

func (o *ListUpstreamServers200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*ListUpstreamServers200Response) HasSize ¶

func (o *ListUpstreamServers200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ListUpstreamServers200Response) HasStart ¶

func (o *ListUpstreamServers200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*ListUpstreamServers200Response) HasValues ¶

func (o *ListUpstreamServers200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (ListUpstreamServers200Response) MarshalJSON ¶

func (o ListUpstreamServers200Response) MarshalJSON() ([]byte, error)

func (*ListUpstreamServers200Response) SetIsLastPage ¶

func (o *ListUpstreamServers200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*ListUpstreamServers200Response) SetLimit ¶

func (o *ListUpstreamServers200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*ListUpstreamServers200Response) SetNextPageStart ¶

func (o *ListUpstreamServers200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*ListUpstreamServers200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*ListUpstreamServers200Response) SetStart ¶

func (o *ListUpstreamServers200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*ListUpstreamServers200Response) SetValues ¶

SetValues gets a reference to the given []RestUpstreamServer and assigns it to the Values field.

func (ListUpstreamServers200Response) ToMap ¶

func (o ListUpstreamServers200Response) ToMap() (map[string]interface{}, error)

type MappedNullable ¶

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MarkupAPIPreviewRequest ¶

type MarkupAPIPreviewRequest struct {
	ApiService *MarkupAPIService
	// contains filtered or unexported fields
}

func (MarkupAPIPreviewRequest) Body ¶

func (MarkupAPIPreviewRequest) Execute ¶

func (MarkupAPIPreviewRequest) Hardwrap ¶

(Optional) Whether the markup implementation should convert newlines to breaks. By default this is false which reflects the standard markdown specification.

func (MarkupAPIPreviewRequest) HtmlEscape ¶

func (r MarkupAPIPreviewRequest) HtmlEscape(htmlEscape string) MarkupAPIPreviewRequest

(Optional) true if HTML should be escaped in the input markup, false otherwise.

func (MarkupAPIPreviewRequest) IncludeHeadingId ¶

func (r MarkupAPIPreviewRequest) IncludeHeadingId(includeHeadingId string) MarkupAPIPreviewRequest

(Optional) true if headers should contain an ID based on the heading content.

func (MarkupAPIPreviewRequest) UrlMode ¶

(Optional) The mode to use when building URLs. One of: ABSOLUTE, RELATIVE or, CONFIGURED. By default this is RELATIVE.

type MarkupAPIService ¶

type MarkupAPIService service

MarkupAPIService MarkupAPI service

func (*MarkupAPIService) Preview ¶

Preview Preview markdown render

Preview generated HTML for the given markdown content.

Only authenticated users may call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MarkupAPIPreviewRequest

func (*MarkupAPIService) PreviewExecute ¶

Execute executes the request

@return RestMarkup

type MirroringMirrorAPIGetFarmNodesRequest ¶

type MirroringMirrorAPIGetFarmNodesRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetFarmNodesRequest) Execute ¶

type MirroringMirrorAPIGetMirrorModeRequest ¶

type MirroringMirrorAPIGetMirrorModeRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetMirrorModeRequest) Execute ¶

type MirroringMirrorAPIGetMirrorSettingsRequest ¶

type MirroringMirrorAPIGetMirrorSettingsRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetMirrorSettingsRequest) Execute ¶

type MirroringMirrorAPIGetMirroredProjectsRequest ¶

type MirroringMirrorAPIGetMirroredProjectsRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetMirroredProjectsRequest) Execute ¶

type MirroringMirrorAPIGetMirroredRepositoryRequest ¶

type MirroringMirrorAPIGetMirroredRepositoryRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetMirroredRepositoryRequest) Execute ¶

type MirroringMirrorAPIGetRefChangesQueueCountRequest ¶

type MirroringMirrorAPIGetRefChangesQueueCountRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetRefChangesQueueCountRequest) Execute ¶

type MirroringMirrorAPIGetRefChangesQueueRequest ¶

type MirroringMirrorAPIGetRefChangesQueueRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetRefChangesQueueRequest) Execute ¶

type MirroringMirrorAPIGetRepoSyncStatusRequest ¶

type MirroringMirrorAPIGetRepoSyncStatusRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetRepoSyncStatusRequest) Execute ¶

func (MirroringMirrorAPIGetRepoSyncStatusRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (MirroringMirrorAPIGetRepoSyncStatusRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type MirroringMirrorAPIGetSynchronizationProgressRequest ¶

type MirroringMirrorAPIGetSynchronizationProgressRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetSynchronizationProgressRequest) Execute ¶

type MirroringMirrorAPIGetUpstreamServerRequest ¶

type MirroringMirrorAPIGetUpstreamServerRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIGetUpstreamServerRequest) Execute ¶

type MirroringMirrorAPIListUpstreamServersRequest ¶

type MirroringMirrorAPIListUpstreamServersRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIListUpstreamServersRequest) Execute ¶

func (MirroringMirrorAPIListUpstreamServersRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (MirroringMirrorAPIListUpstreamServersRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type MirroringMirrorAPIOnAddonDisabledRequest ¶

type MirroringMirrorAPIOnAddonDisabledRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIOnAddonDisabledRequest) Execute ¶

type MirroringMirrorAPIOnAddonEnabledRequest ¶

type MirroringMirrorAPIOnAddonEnabledRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIOnAddonEnabledRequest) Execute ¶

type MirroringMirrorAPIService ¶

type MirroringMirrorAPIService service

MirroringMirrorAPIService MirroringMirrorAPI service

func (*MirroringMirrorAPIService) GetFarmNodes ¶

GetFarmNodes Get farm nodes

Retrieves the list of farm nodes in this cluster

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId the upstream server ID to retrieve settings for
@return MirroringMirrorAPIGetFarmNodesRequest

func (*MirroringMirrorAPIService) GetFarmNodesExecute ¶

Execute executes the request

@return []RestClusterNode

func (*MirroringMirrorAPIService) GetMirrorMode ¶

GetMirrorMode Get mirror mode

Gets the current mirror mode for the specified upstream

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId
@return MirroringMirrorAPIGetMirrorModeRequest

func (*MirroringMirrorAPIService) GetMirrorModeExecute ¶

Execute executes the request

func (*MirroringMirrorAPIService) GetMirrorSettings ¶

GetMirrorSettings Get upstream settings

Retrieves upstream settings

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId
@return MirroringMirrorAPIGetMirrorSettingsRequest

func (*MirroringMirrorAPIService) GetMirrorSettingsExecute ¶

Execute executes the request

@return RestUpstreamSettings

func (*MirroringMirrorAPIService) GetMirroredProjects ¶

GetMirroredProjects Get mirrored project IDs

Returns the IDs of the projects that the mirror is configured to mirror

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId
@return MirroringMirrorAPIGetMirroredProjectsRequest

func (*MirroringMirrorAPIService) GetMirroredProjectsExecute ¶

Execute executes the request

func (*MirroringMirrorAPIService) GetMirroredRepository ¶

func (a *MirroringMirrorAPIService) GetMirroredRepository(ctx context.Context, upstreamRepoId string, upstreamId string) MirroringMirrorAPIGetMirroredRepositoryRequest

GetMirroredRepository Get clone URLs

Retrieves all available clone urls for the specified repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamRepoId the repository ID
@param upstreamId the upstream server ID
@return MirroringMirrorAPIGetMirroredRepositoryRequest

func (*MirroringMirrorAPIService) GetMirroredRepositoryExecute ¶

Execute executes the request

@return RestMirroredRepository

func (*MirroringMirrorAPIService) GetRefChangesQueue ¶

GetRefChangesQueue Get items in ref changes queue

Retrieves a list of up to <code>plugin.mirroring.farm.max.ref.change.queue.dump.size</code> items currently in the ref changes queue. The ref changes queue is an internal component of every mirror farm, and is shared between all nodes. When the contents of an upstream repository changes, an item is added to this queue so that the mirror farm nodes know to synchronize. The mirror farm constantly polls and removes items from this queue for processing, so it is empty most of the time.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringMirrorAPIGetRefChangesQueueRequest

func (*MirroringMirrorAPIService) GetRefChangesQueueCount ¶

GetRefChangesQueueCount Get total number of items in ref changes queue

Retrieves the total number of items currently in the ref changes queue

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringMirrorAPIGetRefChangesQueueCountRequest

func (*MirroringMirrorAPIService) GetRefChangesQueueCountExecute ¶

Execute executes the request

func (*MirroringMirrorAPIService) GetRefChangesQueueExecute ¶

Execute executes the request

@return RestRefSyncQueue

func (*MirroringMirrorAPIService) GetRepoSyncStatus ¶

GetRepoSyncStatus Get sync status of repositories

Retrieves a page of sync statuses of the repositories on this mirror node

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringMirrorAPIGetRepoSyncStatusRequest

func (*MirroringMirrorAPIService) GetRepoSyncStatusExecute ¶

Execute executes the request

@return GetRepoSyncStatus200Response

func (*MirroringMirrorAPIService) GetSynchronizationProgress ¶

GetSynchronizationProgress Get synchronization progress state

Retrieves synchronization progress state for the specified upstream server.If there's no progress to report, this resource will return <pre><code> {"discovering":false,"syncedRepos":0,"totalRepos":0}</code></pre> If there are repositories in the process of synchronizing, but the precise number hasn't been discovered yet, this resource will return: <pre><code> {"discovering":true,"syncedRepos":3,"totalRepos":100}</code></pre> If there is progress to report and the total number of repositories is known, this resource will return: <pre> <code> {"discovering":false,"syncedRepos":242,"totalRepos":1071}</code> </pre>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId the upstream server ID to retrieve settings for
@return MirroringMirrorAPIGetSynchronizationProgressRequest

func (*MirroringMirrorAPIService) GetSynchronizationProgressExecute ¶

Execute executes the request

@return RestSyncProgress

func (*MirroringMirrorAPIService) GetUpstreamServer ¶

GetUpstreamServer Get upstream server by ID

Retrieves upstream server details by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId The upstream server ID to retrieve settings for.
@return MirroringMirrorAPIGetUpstreamServerRequest

func (*MirroringMirrorAPIService) GetUpstreamServerExecute ¶

Execute executes the request

@return RestUpstreamServer

func (*MirroringMirrorAPIService) ListUpstreamServers ¶

ListUpstreamServers Get upstream servers

Retrieves a page of upstream servers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringMirrorAPIListUpstreamServersRequest

func (*MirroringMirrorAPIService) ListUpstreamServersExecute ¶

Execute executes the request

@return ListUpstreamServers200Response

func (*MirroringMirrorAPIService) OnAddonDisabled ¶

OnAddonDisabled On disable of mirror addon

This REST endpoint is retained for backwards compatibility only. It is a no-op. Starting from 4.6.0, mirrors no longer specify a disabled lifecycle callback in their addon descriptor. Prior to 4.6.0, this was the callback method that was called when the mirroring atlassian-connect add-on has been disabled in the upstream server identified by <code> upstreamId</code>.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId the upstream server ID to retrieve settings for
@return MirroringMirrorAPIOnAddonDisabledRequest

Deprecated

func (*MirroringMirrorAPIService) OnAddonDisabledExecute ¶

Execute executes the request Deprecated

func (*MirroringMirrorAPIService) OnAddonEnabled ¶

OnAddonEnabled On enabled of mirror addon

This REST endpoint is retained for backwards compatibility only. It is a no-op. Starting from 4.6.0, mirrors no longer specify an enabled lifecycle callback in their addon descriptor. Prior to 4.6.0, this was the callback method that was called when the mirroring atlassian-connect add-on has been enabled in the upstream server identified by <code>upstreamId</code>.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId the upstream server ID to retrieve settings for
@return MirroringMirrorAPIOnAddonEnabledRequest

Deprecated

func (*MirroringMirrorAPIService) OnAddonEnabledExecute ¶

Execute executes the request Deprecated

func (*MirroringMirrorAPIService) SetMirrorMode ¶

SetMirrorMode Update mirror mode

Sets the mirror mode for the specified upstream

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId
@return MirroringMirrorAPISetMirrorModeRequest

func (*MirroringMirrorAPIService) SetMirrorModeExecute ¶

Execute executes the request

func (*MirroringMirrorAPIService) SetMirrorSettings ¶

SetMirrorSettings Update upstream settings

Sets the settings for the specified upstream

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId
@return MirroringMirrorAPISetMirrorSettingsRequest

func (*MirroringMirrorAPIService) SetMirrorSettingsExecute ¶

Execute executes the request

@return RestUpstreamSettings

func (*MirroringMirrorAPIService) StartMirroringProject ¶

func (a *MirroringMirrorAPIService) StartMirroringProject(ctx context.Context, upstreamId string, projectId string) MirroringMirrorAPIStartMirroringProjectRequest

StartMirroringProject Add project to be mirrored

Configures the mirror to mirror the provided project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId
@param projectId
@return MirroringMirrorAPIStartMirroringProjectRequest

func (*MirroringMirrorAPIService) StartMirroringProjectExecute ¶

Execute executes the request

func (*MirroringMirrorAPIService) StartMirroringProjects ¶

StartMirroringProjects Add multiple projects to be mirrored

Configures the mirror to mirror the provided projects

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId
@return MirroringMirrorAPIStartMirroringProjectsRequest

func (*MirroringMirrorAPIService) StartMirroringProjectsExecute ¶

Execute executes the request

func (*MirroringMirrorAPIService) StopMirroringProject ¶

func (a *MirroringMirrorAPIService) StopMirroringProject(ctx context.Context, upstreamId string, projectId string) MirroringMirrorAPIStopMirroringProjectRequest

StopMirroringProject Stop mirroring project

Configures the mirror to no longer mirror the provided project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId
@param projectId the project ID to stop mirroring
@return MirroringMirrorAPIStopMirroringProjectRequest

func (*MirroringMirrorAPIService) StopMirroringProjectExecute ¶

Execute executes the request

func (*MirroringMirrorAPIService) StopMirroringProjects ¶

StopMirroringProjects Stop mirroring projects

Configures the mirror to no longer mirror the provided projects

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId
@return MirroringMirrorAPIStopMirroringProjectsRequest

func (*MirroringMirrorAPIService) StopMirroringProjectsExecute ¶

Execute executes the request

func (*MirroringMirrorAPIService) SynchronizeRepositoryWithUpstream ¶

func (a *MirroringMirrorAPIService) SynchronizeRepositoryWithUpstream(ctx context.Context, upstreamRepoId string, upstreamId string) MirroringMirrorAPISynchronizeRepositoryWithUpstreamRequest

SynchronizeRepositoryWithUpstream Get upstream settings

This method is no longer supported

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamRepoId
@param upstreamId the upstream server ID to retrieve settings for
@return MirroringMirrorAPISynchronizeRepositoryWithUpstreamRequest

Deprecated

func (*MirroringMirrorAPIService) SynchronizeRepositoryWithUpstreamExecute ¶

Execute executes the request Deprecated

func (*MirroringMirrorAPIService) SynchronizeWithUpstream ¶

SynchronizeWithUpstream Change upstream settings

This method is no longer supported

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upstreamId the upstream server ID to retrieve settings for
@return MirroringMirrorAPISynchronizeWithUpstreamRequest

Deprecated

func (*MirroringMirrorAPIService) SynchronizeWithUpstreamExecute ¶

Execute executes the request Deprecated

type MirroringMirrorAPISetMirrorModeRequest ¶

type MirroringMirrorAPISetMirrorModeRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPISetMirrorModeRequest) Body ¶

func (MirroringMirrorAPISetMirrorModeRequest) Execute ¶

type MirroringMirrorAPISetMirrorSettingsRequest ¶

type MirroringMirrorAPISetMirrorSettingsRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPISetMirrorSettingsRequest) Execute ¶

func (MirroringMirrorAPISetMirrorSettingsRequest) RestUpstreamSettings ¶

the mirror settings to update to

type MirroringMirrorAPIStartMirroringProjectRequest ¶

type MirroringMirrorAPIStartMirroringProjectRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIStartMirroringProjectRequest) Execute ¶

type MirroringMirrorAPIStartMirroringProjectsRequest ¶

type MirroringMirrorAPIStartMirroringProjectsRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIStartMirroringProjectsRequest) Execute ¶

func (MirroringMirrorAPIStartMirroringProjectsRequest) RequestBody ¶

type MirroringMirrorAPIStopMirroringProjectRequest ¶

type MirroringMirrorAPIStopMirroringProjectRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIStopMirroringProjectRequest) Execute ¶

type MirroringMirrorAPIStopMirroringProjectsRequest ¶

type MirroringMirrorAPIStopMirroringProjectsRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPIStopMirroringProjectsRequest) Execute ¶

func (MirroringMirrorAPIStopMirroringProjectsRequest) RequestBody ¶

type MirroringMirrorAPISynchronizeRepositoryWithUpstreamRequest ¶

type MirroringMirrorAPISynchronizeRepositoryWithUpstreamRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPISynchronizeRepositoryWithUpstreamRequest) Execute ¶

func (MirroringMirrorAPISynchronizeRepositoryWithUpstreamRequest) Level ¶

the level of synchronization to perform

type MirroringMirrorAPISynchronizeWithUpstreamRequest ¶

type MirroringMirrorAPISynchronizeWithUpstreamRequest struct {
	ApiService *MirroringMirrorAPIService
	// contains filtered or unexported fields
}

func (MirroringMirrorAPISynchronizeWithUpstreamRequest) Execute ¶

func (MirroringMirrorAPISynchronizeWithUpstreamRequest) Level ¶

type MirroringUpstreamAPIAcceptRequest ¶

type MirroringUpstreamAPIAcceptRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIAcceptRequest) Execute ¶

type MirroringUpstreamAPIAnalyticsSettingsRequest ¶

type MirroringUpstreamAPIAnalyticsSettingsRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIAnalyticsSettingsRequest) Execute ¶

type MirroringUpstreamAPIAuthenticateRequest ¶

type MirroringUpstreamAPIAuthenticateRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIAuthenticateRequest) Execute ¶

func (MirroringUpstreamAPIAuthenticateRequest) RestAuthenticationRequest ¶

type MirroringUpstreamAPIDeleteMirroringRequestRequest ¶

type MirroringUpstreamAPIDeleteMirroringRequestRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIDeleteMirroringRequestRequest) Execute ¶

type MirroringUpstreamAPIDeletePreferredMirrorIdRequest ¶

type MirroringUpstreamAPIDeletePreferredMirrorIdRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIDeletePreferredMirrorIdRequest) Execute ¶

type MirroringUpstreamAPIGetAllContentHashesRequest ¶

type MirroringUpstreamAPIGetAllContentHashesRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetAllContentHashesRequest) Execute ¶

func (MirroringUpstreamAPIGetAllContentHashesRequest) IncludeDefaultBranch ¶

includes defaultBranchId for each repository in the response, if &lt;code&gt;true&lt;/code&gt;. Default value is &lt;code&gt;false&lt;/code&gt;.

type MirroringUpstreamAPIGetAllReposForProjectRequest ¶

type MirroringUpstreamAPIGetAllReposForProjectRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetAllReposForProjectRequest) Execute ¶

func (MirroringUpstreamAPIGetAllReposForProjectRequest) IncludeDefaultBranch ¶

includes defaultBranchId in the response, if &lt;code&gt;true&lt;/code&gt;. Default value is &lt;code&gt;false&lt;/code&gt;

func (MirroringUpstreamAPIGetAllReposForProjectRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (MirroringUpstreamAPIGetAllReposForProjectRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type MirroringUpstreamAPIGetAuthTokenRequest ¶

type MirroringUpstreamAPIGetAuthTokenRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetAuthTokenRequest) Execute ¶

func (r MirroringUpstreamAPIGetAuthTokenRequest) Execute() (interface{}, *http.Response, error)

type MirroringUpstreamAPIGetContentHashByIdRequest ¶

type MirroringUpstreamAPIGetContentHashByIdRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetContentHashByIdRequest) Execute ¶

func (MirroringUpstreamAPIGetContentHashByIdRequest) IncludeDefaultBranch ¶

type MirroringUpstreamAPIGetMirrorRequest ¶

type MirroringUpstreamAPIGetMirrorRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetMirrorRequest) Execute ¶

type MirroringUpstreamAPIGetMirroringRequestRequest ¶

type MirroringUpstreamAPIGetMirroringRequestRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetMirroringRequestRequest) Execute ¶

type MirroringUpstreamAPIGetPanelHtmlRequest ¶

type MirroringUpstreamAPIGetPanelHtmlRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetPanelHtmlRequest) Execute ¶

type MirroringUpstreamAPIGetPreferredMirrorIdRequest ¶

type MirroringUpstreamAPIGetPreferredMirrorIdRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetPreferredMirrorIdRequest) Execute ¶

type MirroringUpstreamAPIGetProjectByIdRequest ¶

type MirroringUpstreamAPIGetProjectByIdRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetProjectByIdRequest) Execute ¶

type MirroringUpstreamAPIGetRepositoryMirrorsRequest ¶

type MirroringUpstreamAPIGetRepositoryMirrorsRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIGetRepositoryMirrorsRequest) Execute ¶

type MirroringUpstreamAPIListMirrorsRequest ¶

type MirroringUpstreamAPIListMirrorsRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIListMirrorsRequest) Execute ¶

func (MirroringUpstreamAPIListMirrorsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (MirroringUpstreamAPIListMirrorsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type MirroringUpstreamAPIListRequestsRequest ¶

type MirroringUpstreamAPIListRequestsRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIListRequestsRequest) Execute ¶

func (MirroringUpstreamAPIListRequestsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (MirroringUpstreamAPIListRequestsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (MirroringUpstreamAPIListRequestsRequest) State ¶

(optional) the request state to filter on

type MirroringUpstreamAPIPublishEventRequest ¶

type MirroringUpstreamAPIPublishEventRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIPublishEventRequest) Execute ¶

func (MirroringUpstreamAPIPublishEventRequest) RestRepositoryMirrorEvent ¶

type MirroringUpstreamAPIRegisterRequest ¶

type MirroringUpstreamAPIRegisterRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIRegisterRequest) Execute ¶

func (MirroringUpstreamAPIRegisterRequest) RestMirroringRequest ¶

type MirroringUpstreamAPIRejectRequest ¶

type MirroringUpstreamAPIRejectRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIRejectRequest) Execute ¶

type MirroringUpstreamAPIRemoveRequest ¶

type MirroringUpstreamAPIRemoveRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIRemoveRequest) Execute ¶

type MirroringUpstreamAPIService ¶

type MirroringUpstreamAPIService service

MirroringUpstreamAPIService MirroringUpstreamAPI service

func (*MirroringUpstreamAPIService) Accept ¶

Accept Accept a mirroring request

Accepts a mirroring request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirroringRequestId the ID of the request to accept
@return MirroringUpstreamAPIAcceptRequest

func (*MirroringUpstreamAPIService) AcceptExecute ¶

Execute executes the request

@return RestMirrorServer

func (*MirroringUpstreamAPIService) AnalyticsSettings ¶

AnalyticsSettings Get analytics settings from upstream

Gets the analytics settings from the mirroring upstream

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringUpstreamAPIAnalyticsSettingsRequest

func (*MirroringUpstreamAPIService) AnalyticsSettingsExecute ¶

Execute executes the request

@return RestAnalyticsSettings

func (*MirroringUpstreamAPIService) Authenticate ¶

Authenticate Authenticate on behalf of a user

Authenticates on behalf of a user. Used by mirrors to check the credentials supplied to them by users. If successful a user and their effective permissions are returned as follows -

* For SSH credentials - all the effective user permissions are returned. * For all other credentials - the highest global permission is returned along with highest repository permission if repository ID is also provided in the request.

Currently only username/password, bearer token and SSH credentials are supported.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringUpstreamAPIAuthenticateRequest

func (*MirroringUpstreamAPIService) AuthenticateExecute ¶

Execute executes the request

@return RestApplicationUserWithPermissions

func (*MirroringUpstreamAPIService) DeleteMirroringRequest ¶

func (a *MirroringUpstreamAPIService) DeleteMirroringRequest(ctx context.Context, mirroringRequestId string) MirroringUpstreamAPIDeleteMirroringRequestRequest

DeleteMirroringRequest Delete a mirroring request

Deletes a mirroring request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirroringRequestId the ID of the mirroring request to delete
@return MirroringUpstreamAPIDeleteMirroringRequestRequest

func (*MirroringUpstreamAPIService) DeleteMirroringRequestExecute ¶

Execute executes the request

func (*MirroringUpstreamAPIService) DeletePreferredMirrorId ¶

DeletePreferredMirrorId Remove preferred mirror

Removes the current user's preferred mirror

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringUpstreamAPIDeletePreferredMirrorIdRequest

func (*MirroringUpstreamAPIService) DeletePreferredMirrorIdExecute ¶

Execute executes the request

func (*MirroringUpstreamAPIService) GetAllContentHashes ¶

GetAllContentHashes Get content hashes for repositories

Returns a page of repositories enriched with a content hash and default branch

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringUpstreamAPIGetAllContentHashesRequest

func (*MirroringUpstreamAPIService) GetAllContentHashesExecute ¶

Execute executes the request

@return EnrichedRepository

func (*MirroringUpstreamAPIService) GetAllReposForProject ¶

GetAllReposForProject Get hashes for repositories in project

Returns a page of repositories for a given project, enriched with a content hash

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId the id of the requested project
@return MirroringUpstreamAPIGetAllReposForProjectRequest

func (*MirroringUpstreamAPIService) GetAllReposForProjectExecute ¶

Execute executes the request

@return GetAllReposForProject200Response

func (*MirroringUpstreamAPIService) GetAuthToken ¶

GetAuthToken Get mirror auth token

Returns an authentication token for the mirror server in question

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirrorId the mirror ID
@return MirroringUpstreamAPIGetAuthTokenRequest

func (*MirroringUpstreamAPIService) GetAuthTokenExecute ¶

func (a *MirroringUpstreamAPIService) GetAuthTokenExecute(r MirroringUpstreamAPIGetAuthTokenRequest) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*MirroringUpstreamAPIService) GetContentHashById ¶

GetContentHashById Get content hash for a repository

Returns a repository enriched with a content hash and default branch

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param repoId the ID of the requested repository
@return MirroringUpstreamAPIGetContentHashByIdRequest

func (*MirroringUpstreamAPIService) GetContentHashByIdExecute ¶

Execute executes the request

@return EnrichedRepository

func (*MirroringUpstreamAPIService) GetMirror ¶

GetMirror Get mirror by ID

Returns the mirror specified by a mirror ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirrorId the mirror ID
@return MirroringUpstreamAPIGetMirrorRequest

func (*MirroringUpstreamAPIService) GetMirrorExecute ¶

Execute executes the request

@return RestMirrorServer

func (*MirroringUpstreamAPIService) GetMirroringRequest ¶

GetMirroringRequest Get a mirroring request

Retrieves a mirroring request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirroringRequestId the ID of the mirroring request to retrieve
@return MirroringUpstreamAPIGetMirroringRequestRequest

func (*MirroringUpstreamAPIService) GetMirroringRequestExecute ¶

Execute executes the request

@return RestMirroringRequest

func (*MirroringUpstreamAPIService) GetPanelHtml ¶

GetPanelHtml Get HTML for remote-connect web-panel on mirror

Gets the rendered HTML that is needed to get the remote connect web-panel on the mirror.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirrorId
@return MirroringUpstreamAPIGetPanelHtmlRequest

func (*MirroringUpstreamAPIService) GetPanelHtmlExecute ¶

Execute executes the request

func (*MirroringUpstreamAPIService) GetPreferredMirrorId ¶

GetPreferredMirrorId Get preferred mirror

Retrieves the current user's preferred mirror server

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringUpstreamAPIGetPreferredMirrorIdRequest

func (*MirroringUpstreamAPIService) GetPreferredMirrorIdExecute ¶

Execute executes the request

@return RestMirrorServer

func (*MirroringUpstreamAPIService) GetProjectById ¶

GetProjectById Get project

Returns the requested project using its primary key ID.<br> Since 6.7

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId the ID of the requested project
@return MirroringUpstreamAPIGetProjectByIdRequest

func (*MirroringUpstreamAPIService) GetProjectByIdExecute ¶

Execute executes the request

@return RestProject

func (*MirroringUpstreamAPIService) GetRepositoryMirrors ¶

GetRepositoryMirrors Get mirrors for repository

Returns a page of mirrors for a repository. This resource will return <strong>all mirrors</strong> along with authorized links to the mirror's repository REST resource. To determine if a repository is available on the mirror, the returned URL needs to be called.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param repoId the ID of the requested repository
@return MirroringUpstreamAPIGetRepositoryMirrorsRequest

func (*MirroringUpstreamAPIService) GetRepositoryMirrorsExecute ¶

Execute executes the request

@return RestMirroredRepositoryDescriptor

func (*MirroringUpstreamAPIService) ListMirrors ¶

ListMirrors Get all mirrors

Returns a list of mirrors

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringUpstreamAPIListMirrorsRequest

func (*MirroringUpstreamAPIService) ListMirrorsExecute ¶

Execute executes the request

@return ListMirrors200Response

func (*MirroringUpstreamAPIService) ListRequests ¶

ListRequests Get mirroring requests

Retrieves a mirroring request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringUpstreamAPIListRequestsRequest

func (*MirroringUpstreamAPIService) ListRequestsExecute ¶

Execute executes the request

@return ListRequests200Response

func (*MirroringUpstreamAPIService) PublishEvent ¶

PublishEvent Publish RepositoryMirrorEvent

Publishes a RepositoryMirrorEvent on the event queue.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirrorId the server id of the mirror that raised this event
@return MirroringUpstreamAPIPublishEventRequest

func (*MirroringUpstreamAPIService) PublishEventExecute ¶

Execute executes the request

func (*MirroringUpstreamAPIService) Register ¶

Register Create a mirroring request

Creates a new mirroring request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringUpstreamAPIRegisterRequest

func (*MirroringUpstreamAPIService) RegisterExecute ¶

Execute executes the request

@return RestMirroringRequest

func (*MirroringUpstreamAPIService) Reject ¶

Reject Reject a mirroring request

Rejects a mirroring request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirroringRequestId the ID of the request to reject
@return MirroringUpstreamAPIRejectRequest

func (*MirroringUpstreamAPIService) RejectExecute ¶

Execute executes the request

@return RestMirrorServer

func (*MirroringUpstreamAPIService) Remove ¶

Remove Delete mirror by ID

Removes a mirror, disabling all access and notifications for the mirror server in question

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirrorId the ID of the mirror to remove
@return MirroringUpstreamAPIRemoveRequest

func (*MirroringUpstreamAPIService) RemoveExecute ¶

Execute executes the request

func (*MirroringUpstreamAPIService) SetPreferredMirrorId ¶

SetPreferredMirrorId Set preferred mirror

Sets the mirror specified by a mirror ID as the current user's preferred mirror

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return MirroringUpstreamAPISetPreferredMirrorIdRequest

func (*MirroringUpstreamAPIService) SetPreferredMirrorIdExecute ¶

Execute executes the request

func (*MirroringUpstreamAPIService) Upgrade ¶

Upgrade Upgrade add-on for a mirror

Upgrades the add-on for the mirror server in question This endpoint can only be called by the mirror instance or system administrators<br>Since 5.8

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param mirrorId the ID of the mirror to upgrade
@return MirroringUpstreamAPIUpgradeRequest

func (*MirroringUpstreamAPIService) UpgradeExecute ¶

Execute executes the request

@return RestMirrorServer

type MirroringUpstreamAPISetPreferredMirrorIdRequest ¶

type MirroringUpstreamAPISetPreferredMirrorIdRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPISetPreferredMirrorIdRequest) Body ¶

the mirror ID

func (MirroringUpstreamAPISetPreferredMirrorIdRequest) Execute ¶

type MirroringUpstreamAPIUpgradeRequest ¶

type MirroringUpstreamAPIUpgradeRequest struct {
	ApiService *MirroringUpstreamAPIService
	// contains filtered or unexported fields
}

func (MirroringUpstreamAPIUpgradeRequest) Execute ¶

func (MirroringUpstreamAPIUpgradeRequest) RestMirrorUpgradeRequest ¶

func (r MirroringUpstreamAPIUpgradeRequest) RestMirrorUpgradeRequest(restMirrorUpgradeRequest RestMirrorUpgradeRequest) MirroringUpstreamAPIUpgradeRequest

type NullableAddSshKeyRequest ¶

type NullableAddSshKeyRequest struct {
	// contains filtered or unexported fields
}

func NewNullableAddSshKeyRequest ¶

func NewNullableAddSshKeyRequest(val *AddSshKeyRequest) *NullableAddSshKeyRequest

func (NullableAddSshKeyRequest) Get ¶

func (NullableAddSshKeyRequest) IsSet ¶

func (v NullableAddSshKeyRequest) IsSet() bool

func (NullableAddSshKeyRequest) MarshalJSON ¶

func (v NullableAddSshKeyRequest) MarshalJSON() ([]byte, error)

func (*NullableAddSshKeyRequest) Set ¶

func (*NullableAddSshKeyRequest) UnmarshalJSON ¶

func (v *NullableAddSshKeyRequest) UnmarshalJSON(src []byte) error

func (*NullableAddSshKeyRequest) Unset ¶

func (v *NullableAddSshKeyRequest) Unset()

type NullableAdminPasswordUpdate ¶

type NullableAdminPasswordUpdate struct {
	// contains filtered or unexported fields
}

func (NullableAdminPasswordUpdate) Get ¶

func (NullableAdminPasswordUpdate) IsSet ¶

func (NullableAdminPasswordUpdate) MarshalJSON ¶

func (v NullableAdminPasswordUpdate) MarshalJSON() ([]byte, error)

func (*NullableAdminPasswordUpdate) Set ¶

func (*NullableAdminPasswordUpdate) UnmarshalJSON ¶

func (v *NullableAdminPasswordUpdate) UnmarshalJSON(src []byte) error

func (*NullableAdminPasswordUpdate) Unset ¶

func (v *NullableAdminPasswordUpdate) Unset()

type NullableApplicationUser ¶

type NullableApplicationUser struct {
	// contains filtered or unexported fields
}

func NewNullableApplicationUser ¶

func NewNullableApplicationUser(val *ApplicationUser) *NullableApplicationUser

func (NullableApplicationUser) Get ¶

func (NullableApplicationUser) IsSet ¶

func (v NullableApplicationUser) IsSet() bool

func (NullableApplicationUser) MarshalJSON ¶

func (v NullableApplicationUser) MarshalJSON() ([]byte, error)

func (*NullableApplicationUser) Set ¶

func (*NullableApplicationUser) UnmarshalJSON ¶

func (v *NullableApplicationUser) UnmarshalJSON(src []byte) error

func (*NullableApplicationUser) Unset ¶

func (v *NullableApplicationUser) Unset()

type NullableBool ¶

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool ¶

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get ¶

func (v NullableBool) Get() *bool

func (NullableBool) IsSet ¶

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON ¶

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set ¶

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON ¶

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset ¶

func (v *NullableBool) Unset()

type NullableContext ¶

type NullableContext struct {
	// contains filtered or unexported fields
}

func NewNullableContext ¶

func NewNullableContext(val *Context) *NullableContext

func (NullableContext) Get ¶

func (v NullableContext) Get() *Context

func (NullableContext) IsSet ¶

func (v NullableContext) IsSet() bool

func (NullableContext) MarshalJSON ¶

func (v NullableContext) MarshalJSON() ([]byte, error)

func (*NullableContext) Set ¶

func (v *NullableContext) Set(val *Context)

func (*NullableContext) UnmarshalJSON ¶

func (v *NullableContext) UnmarshalJSON(src []byte) error

func (*NullableContext) Unset ¶

func (v *NullableContext) Unset()

type NullableCredentials ¶

type NullableCredentials struct {
	// contains filtered or unexported fields
}

func NewNullableCredentials ¶

func NewNullableCredentials(val *Credentials) *NullableCredentials

func (NullableCredentials) Get ¶

func (NullableCredentials) IsSet ¶

func (v NullableCredentials) IsSet() bool

func (NullableCredentials) MarshalJSON ¶

func (v NullableCredentials) MarshalJSON() ([]byte, error)

func (*NullableCredentials) Set ¶

func (v *NullableCredentials) Set(val *Credentials)

func (*NullableCredentials) UnmarshalJSON ¶

func (v *NullableCredentials) UnmarshalJSON(src []byte) error

func (*NullableCredentials) Unset ¶

func (v *NullableCredentials) Unset()

type NullableEnrichedRepository ¶

type NullableEnrichedRepository struct {
	// contains filtered or unexported fields
}

func NewNullableEnrichedRepository ¶

func NewNullableEnrichedRepository(val *EnrichedRepository) *NullableEnrichedRepository

func (NullableEnrichedRepository) Get ¶

func (NullableEnrichedRepository) IsSet ¶

func (v NullableEnrichedRepository) IsSet() bool

func (NullableEnrichedRepository) MarshalJSON ¶

func (v NullableEnrichedRepository) MarshalJSON() ([]byte, error)

func (*NullableEnrichedRepository) Set ¶

func (*NullableEnrichedRepository) UnmarshalJSON ¶

func (v *NullableEnrichedRepository) UnmarshalJSON(src []byte) error

func (*NullableEnrichedRepository) Unset ¶

func (v *NullableEnrichedRepository) Unset()

type NullableEnrichedRepositoryProperties ¶

type NullableEnrichedRepositoryProperties struct {
	// contains filtered or unexported fields
}

func (NullableEnrichedRepositoryProperties) Get ¶

func (NullableEnrichedRepositoryProperties) IsSet ¶

func (NullableEnrichedRepositoryProperties) MarshalJSON ¶

func (v NullableEnrichedRepositoryProperties) MarshalJSON() ([]byte, error)

func (*NullableEnrichedRepositoryProperties) Set ¶

func (*NullableEnrichedRepositoryProperties) UnmarshalJSON ¶

func (v *NullableEnrichedRepositoryProperties) UnmarshalJSON(src []byte) error

func (*NullableEnrichedRepositoryProperties) Unset ¶

type NullableEntityHolderRestPullRequestAutoMergeRequest ¶

type NullableEntityHolderRestPullRequestAutoMergeRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntityHolderRestPullRequestAutoMergeRequest) Get ¶

func (NullableEntityHolderRestPullRequestAutoMergeRequest) IsSet ¶

func (NullableEntityHolderRestPullRequestAutoMergeRequest) MarshalJSON ¶

func (*NullableEntityHolderRestPullRequestAutoMergeRequest) Set ¶

func (*NullableEntityHolderRestPullRequestAutoMergeRequest) UnmarshalJSON ¶

func (*NullableEntityHolderRestPullRequestAutoMergeRequest) Unset ¶

type NullableEntityHolderRestPullRequestAutoMergeRequestEntity ¶

type NullableEntityHolderRestPullRequestAutoMergeRequestEntity struct {
	// contains filtered or unexported fields
}

func (NullableEntityHolderRestPullRequestAutoMergeRequestEntity) Get ¶

func (NullableEntityHolderRestPullRequestAutoMergeRequestEntity) IsSet ¶

func (NullableEntityHolderRestPullRequestAutoMergeRequestEntity) MarshalJSON ¶

func (*NullableEntityHolderRestPullRequestAutoMergeRequestEntity) Set ¶

func (*NullableEntityHolderRestPullRequestAutoMergeRequestEntity) UnmarshalJSON ¶

func (*NullableEntityHolderRestPullRequestAutoMergeRequestEntity) Unset ¶

type NullableEntityHolderRestPullRequestDeclineRequest ¶

type NullableEntityHolderRestPullRequestDeclineRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntityHolderRestPullRequestDeclineRequest) Get ¶

func (NullableEntityHolderRestPullRequestDeclineRequest) IsSet ¶

func (NullableEntityHolderRestPullRequestDeclineRequest) MarshalJSON ¶

func (*NullableEntityHolderRestPullRequestDeclineRequest) Set ¶

func (*NullableEntityHolderRestPullRequestDeclineRequest) UnmarshalJSON ¶

func (*NullableEntityHolderRestPullRequestDeclineRequest) Unset ¶

type NullableEntityHolderRestPullRequestDeclineRequestEntity ¶

type NullableEntityHolderRestPullRequestDeclineRequestEntity struct {
	// contains filtered or unexported fields
}

func (NullableEntityHolderRestPullRequestDeclineRequestEntity) Get ¶

func (NullableEntityHolderRestPullRequestDeclineRequestEntity) IsSet ¶

func (NullableEntityHolderRestPullRequestDeclineRequestEntity) MarshalJSON ¶

func (*NullableEntityHolderRestPullRequestDeclineRequestEntity) Set ¶

func (*NullableEntityHolderRestPullRequestDeclineRequestEntity) UnmarshalJSON ¶

func (*NullableEntityHolderRestPullRequestDeclineRequestEntity) Unset ¶

type NullableEntityHolderRestPullRequestReopenRequest ¶

type NullableEntityHolderRestPullRequestReopenRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntityHolderRestPullRequestReopenRequest) Get ¶

func (NullableEntityHolderRestPullRequestReopenRequest) IsSet ¶

func (NullableEntityHolderRestPullRequestReopenRequest) MarshalJSON ¶

func (*NullableEntityHolderRestPullRequestReopenRequest) Set ¶

func (*NullableEntityHolderRestPullRequestReopenRequest) UnmarshalJSON ¶

func (*NullableEntityHolderRestPullRequestReopenRequest) Unset ¶

type NullableEntityHolderRestPullRequestReopenRequestEntity ¶

type NullableEntityHolderRestPullRequestReopenRequestEntity struct {
	// contains filtered or unexported fields
}

func (NullableEntityHolderRestPullRequestReopenRequestEntity) Get ¶

func (NullableEntityHolderRestPullRequestReopenRequestEntity) IsSet ¶

func (NullableEntityHolderRestPullRequestReopenRequestEntity) MarshalJSON ¶

func (*NullableEntityHolderRestPullRequestReopenRequestEntity) Set ¶

func (*NullableEntityHolderRestPullRequestReopenRequestEntity) UnmarshalJSON ¶

func (*NullableEntityHolderRestPullRequestReopenRequestEntity) Unset ¶

type NullableExampleFiles ¶

type NullableExampleFiles struct {
	// contains filtered or unexported fields
}

func NewNullableExampleFiles ¶

func NewNullableExampleFiles(val *ExampleFiles) *NullableExampleFiles

func (NullableExampleFiles) Get ¶

func (NullableExampleFiles) IsSet ¶

func (v NullableExampleFiles) IsSet() bool

func (NullableExampleFiles) MarshalJSON ¶

func (v NullableExampleFiles) MarshalJSON() ([]byte, error)

func (*NullableExampleFiles) Set ¶

func (v *NullableExampleFiles) Set(val *ExampleFiles)

func (*NullableExampleFiles) UnmarshalJSON ¶

func (v *NullableExampleFiles) UnmarshalJSON(src []byte) error

func (*NullableExampleFiles) Unset ¶

func (v *NullableExampleFiles) Unset()

type NullableExampleJsonLastModifiedCallback ¶

type NullableExampleJsonLastModifiedCallback struct {
	// contains filtered or unexported fields
}

func (NullableExampleJsonLastModifiedCallback) Get ¶

func (NullableExampleJsonLastModifiedCallback) IsSet ¶

func (NullableExampleJsonLastModifiedCallback) MarshalJSON ¶

func (v NullableExampleJsonLastModifiedCallback) MarshalJSON() ([]byte, error)

func (*NullableExampleJsonLastModifiedCallback) Set ¶

func (*NullableExampleJsonLastModifiedCallback) UnmarshalJSON ¶

func (v *NullableExampleJsonLastModifiedCallback) UnmarshalJSON(src []byte) error

func (*NullableExampleJsonLastModifiedCallback) Unset ¶

type NullableExamplePreviewMigration ¶

type NullableExamplePreviewMigration struct {
	// contains filtered or unexported fields
}

func (NullableExamplePreviewMigration) Get ¶

func (NullableExamplePreviewMigration) IsSet ¶

func (NullableExamplePreviewMigration) MarshalJSON ¶

func (v NullableExamplePreviewMigration) MarshalJSON() ([]byte, error)

func (*NullableExamplePreviewMigration) Set ¶

func (*NullableExamplePreviewMigration) UnmarshalJSON ¶

func (v *NullableExamplePreviewMigration) UnmarshalJSON(src []byte) error

func (*NullableExamplePreviewMigration) Unset ¶

type NullableExamplePutMultipartFormData ¶

type NullableExamplePutMultipartFormData struct {
	// contains filtered or unexported fields
}

func (NullableExamplePutMultipartFormData) Get ¶

func (NullableExamplePutMultipartFormData) IsSet ¶

func (NullableExamplePutMultipartFormData) MarshalJSON ¶

func (v NullableExamplePutMultipartFormData) MarshalJSON() ([]byte, error)

func (*NullableExamplePutMultipartFormData) Set ¶

func (*NullableExamplePutMultipartFormData) UnmarshalJSON ¶

func (v *NullableExamplePutMultipartFormData) UnmarshalJSON(src []byte) error

func (*NullableExamplePutMultipartFormData) Unset ¶

type NullableExampleRequirements ¶

type NullableExampleRequirements struct {
	// contains filtered or unexported fields
}

func (NullableExampleRequirements) Get ¶

func (NullableExampleRequirements) IsSet ¶

func (NullableExampleRequirements) MarshalJSON ¶

func (v NullableExampleRequirements) MarshalJSON() ([]byte, error)

func (*NullableExampleRequirements) Set ¶

func (*NullableExampleRequirements) UnmarshalJSON ¶

func (v *NullableExampleRequirements) UnmarshalJSON(src []byte) error

func (*NullableExampleRequirements) Unset ¶

func (v *NullableExampleRequirements) Unset()

type NullableExampleSettings ¶

type NullableExampleSettings struct {
	// contains filtered or unexported fields
}

func NewNullableExampleSettings ¶

func NewNullableExampleSettings(val *ExampleSettings) *NullableExampleSettings

func (NullableExampleSettings) Get ¶

func (NullableExampleSettings) IsSet ¶

func (v NullableExampleSettings) IsSet() bool

func (NullableExampleSettings) MarshalJSON ¶

func (v NullableExampleSettings) MarshalJSON() ([]byte, error)

func (*NullableExampleSettings) Set ¶

func (*NullableExampleSettings) UnmarshalJSON ¶

func (v *NullableExampleSettings) UnmarshalJSON(src []byte) error

func (*NullableExampleSettings) Unset ¶

func (v *NullableExampleSettings) Unset()

type NullableExampleSettingsMap ¶

type NullableExampleSettingsMap struct {
	// contains filtered or unexported fields
}

func NewNullableExampleSettingsMap ¶

func NewNullableExampleSettingsMap(val *ExampleSettingsMap) *NullableExampleSettingsMap

func (NullableExampleSettingsMap) Get ¶

func (NullableExampleSettingsMap) IsSet ¶

func (v NullableExampleSettingsMap) IsSet() bool

func (NullableExampleSettingsMap) MarshalJSON ¶

func (v NullableExampleSettingsMap) MarshalJSON() ([]byte, error)

func (*NullableExampleSettingsMap) Set ¶

func (*NullableExampleSettingsMap) UnmarshalJSON ¶

func (v *NullableExampleSettingsMap) UnmarshalJSON(src []byte) error

func (*NullableExampleSettingsMap) Unset ¶

func (v *NullableExampleSettingsMap) Unset()

type NullableExampleSocketAddress ¶

type NullableExampleSocketAddress struct {
	// contains filtered or unexported fields
}

func (NullableExampleSocketAddress) Get ¶

func (NullableExampleSocketAddress) IsSet ¶

func (NullableExampleSocketAddress) MarshalJSON ¶

func (v NullableExampleSocketAddress) MarshalJSON() ([]byte, error)

func (*NullableExampleSocketAddress) Set ¶

func (*NullableExampleSocketAddress) UnmarshalJSON ¶

func (v *NullableExampleSocketAddress) UnmarshalJSON(src []byte) error

func (*NullableExampleSocketAddress) Unset ¶

func (v *NullableExampleSocketAddress) Unset()

type NullableExampleStatus ¶

type NullableExampleStatus struct {
	// contains filtered or unexported fields
}

func NewNullableExampleStatus ¶

func NewNullableExampleStatus(val *ExampleStatus) *NullableExampleStatus

func (NullableExampleStatus) Get ¶

func (NullableExampleStatus) IsSet ¶

func (v NullableExampleStatus) IsSet() bool

func (NullableExampleStatus) MarshalJSON ¶

func (v NullableExampleStatus) MarshalJSON() ([]byte, error)

func (*NullableExampleStatus) Set ¶

func (v *NullableExampleStatus) Set(val *ExampleStatus)

func (*NullableExampleStatus) UnmarshalJSON ¶

func (v *NullableExampleStatus) UnmarshalJSON(src []byte) error

func (*NullableExampleStatus) Unset ¶

func (v *NullableExampleStatus) Unset()

type NullableFilePart ¶

type NullableFilePart struct {
	// contains filtered or unexported fields
}

func NewNullableFilePart ¶

func NewNullableFilePart(val *FilePart) *NullableFilePart

func (NullableFilePart) Get ¶

func (v NullableFilePart) Get() *FilePart

func (NullableFilePart) IsSet ¶

func (v NullableFilePart) IsSet() bool

func (NullableFilePart) MarshalJSON ¶

func (v NullableFilePart) MarshalJSON() ([]byte, error)

func (*NullableFilePart) Set ¶

func (v *NullableFilePart) Set(val *FilePart)

func (*NullableFilePart) UnmarshalJSON ¶

func (v *NullableFilePart) UnmarshalJSON(src []byte) error

func (*NullableFilePart) Unset ¶

func (v *NullableFilePart) Unset()

type NullableFindByCommit200Response ¶

type NullableFindByCommit200Response struct {
	// contains filtered or unexported fields
}

func (NullableFindByCommit200Response) Get ¶

func (NullableFindByCommit200Response) IsSet ¶

func (NullableFindByCommit200Response) MarshalJSON ¶

func (v NullableFindByCommit200Response) MarshalJSON() ([]byte, error)

func (*NullableFindByCommit200Response) Set ¶

func (*NullableFindByCommit200Response) UnmarshalJSON ¶

func (v *NullableFindByCommit200Response) UnmarshalJSON(src []byte) error

func (*NullableFindByCommit200Response) Unset ¶

type NullableFindUsersInGroup200Response ¶

type NullableFindUsersInGroup200Response struct {
	// contains filtered or unexported fields
}

func (NullableFindUsersInGroup200Response) Get ¶

func (NullableFindUsersInGroup200Response) IsSet ¶

func (NullableFindUsersInGroup200Response) MarshalJSON ¶

func (v NullableFindUsersInGroup200Response) MarshalJSON() ([]byte, error)

func (*NullableFindUsersInGroup200Response) Set ¶

func (*NullableFindUsersInGroup200Response) UnmarshalJSON ¶

func (v *NullableFindUsersInGroup200Response) UnmarshalJSON(src []byte) error

func (*NullableFindUsersInGroup200Response) Unset ¶

type NullableFloat32 ¶

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32 ¶

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get ¶

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet ¶

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON ¶

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set ¶

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON ¶

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset ¶

func (v *NullableFloat32) Unset()

type NullableFloat64 ¶

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64 ¶

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get ¶

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet ¶

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON ¶

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set ¶

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON ¶

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset ¶

func (v *NullableFloat64) Unset()

type NullableGetActivities200Response ¶

type NullableGetActivities200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetActivities200Response) Get ¶

func (NullableGetActivities200Response) IsSet ¶

func (NullableGetActivities200Response) MarshalJSON ¶

func (v NullableGetActivities200Response) MarshalJSON() ([]byte, error)

func (*NullableGetActivities200Response) Set ¶

func (*NullableGetActivities200Response) UnmarshalJSON ¶

func (v *NullableGetActivities200Response) UnmarshalJSON(src []byte) error

func (*NullableGetActivities200Response) Unset ¶

type NullableGetAll200Response ¶

type NullableGetAll200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetAll200Response ¶

func NewNullableGetAll200Response(val *GetAll200Response) *NullableGetAll200Response

func (NullableGetAll200Response) Get ¶

func (NullableGetAll200Response) IsSet ¶

func (v NullableGetAll200Response) IsSet() bool

func (NullableGetAll200Response) MarshalJSON ¶

func (v NullableGetAll200Response) MarshalJSON() ([]byte, error)

func (*NullableGetAll200Response) Set ¶

func (*NullableGetAll200Response) UnmarshalJSON ¶

func (v *NullableGetAll200Response) UnmarshalJSON(src []byte) error

func (*NullableGetAll200Response) Unset ¶

func (v *NullableGetAll200Response) Unset()

type NullableGetAllAccessTokens200Response ¶

type NullableGetAllAccessTokens200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetAllAccessTokens200Response) Get ¶

func (NullableGetAllAccessTokens200Response) IsSet ¶

func (NullableGetAllAccessTokens200Response) MarshalJSON ¶

func (v NullableGetAllAccessTokens200Response) MarshalJSON() ([]byte, error)

func (*NullableGetAllAccessTokens200Response) Set ¶

func (*NullableGetAllAccessTokens200Response) UnmarshalJSON ¶

func (v *NullableGetAllAccessTokens200Response) UnmarshalJSON(src []byte) error

func (*NullableGetAllAccessTokens200Response) Unset ¶

type NullableGetAllAccessTokens401Response ¶

type NullableGetAllAccessTokens401Response struct {
	// contains filtered or unexported fields
}

func (NullableGetAllAccessTokens401Response) Get ¶

func (NullableGetAllAccessTokens401Response) IsSet ¶

func (NullableGetAllAccessTokens401Response) MarshalJSON ¶

func (v NullableGetAllAccessTokens401Response) MarshalJSON() ([]byte, error)

func (*NullableGetAllAccessTokens401Response) Set ¶

func (*NullableGetAllAccessTokens401Response) UnmarshalJSON ¶

func (v *NullableGetAllAccessTokens401Response) UnmarshalJSON(src []byte) error

func (*NullableGetAllAccessTokens401Response) Unset ¶

type NullableGetAllMeshMigrationSummaries200Response ¶

type NullableGetAllMeshMigrationSummaries200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetAllMeshMigrationSummaries200Response) Get ¶

func (NullableGetAllMeshMigrationSummaries200Response) IsSet ¶

func (NullableGetAllMeshMigrationSummaries200Response) MarshalJSON ¶

func (*NullableGetAllMeshMigrationSummaries200Response) Set ¶

func (*NullableGetAllMeshMigrationSummaries200Response) UnmarshalJSON ¶

func (*NullableGetAllMeshMigrationSummaries200Response) Unset ¶

type NullableGetAllRateLimitSettings200Response ¶

type NullableGetAllRateLimitSettings200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetAllRateLimitSettings200Response) Get ¶

func (NullableGetAllRateLimitSettings200Response) IsSet ¶

func (NullableGetAllRateLimitSettings200Response) MarshalJSON ¶

func (*NullableGetAllRateLimitSettings200Response) Set ¶

func (*NullableGetAllRateLimitSettings200Response) UnmarshalJSON ¶

func (v *NullableGetAllRateLimitSettings200Response) UnmarshalJSON(src []byte) error

func (*NullableGetAllRateLimitSettings200Response) Unset ¶

type NullableGetAllReposForProject200Response ¶

type NullableGetAllReposForProject200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetAllReposForProject200Response) Get ¶

func (NullableGetAllReposForProject200Response) IsSet ¶

func (NullableGetAllReposForProject200Response) MarshalJSON ¶

func (*NullableGetAllReposForProject200Response) Set ¶

func (*NullableGetAllReposForProject200Response) UnmarshalJSON ¶

func (v *NullableGetAllReposForProject200Response) UnmarshalJSON(src []byte) error

func (*NullableGetAllReposForProject200Response) Unset ¶

type NullableGetBranches200Response ¶

type NullableGetBranches200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetBranches200Response) Get ¶

func (NullableGetBranches200Response) IsSet ¶

func (NullableGetBranches200Response) MarshalJSON ¶

func (v NullableGetBranches200Response) MarshalJSON() ([]byte, error)

func (*NullableGetBranches200Response) Set ¶

func (*NullableGetBranches200Response) UnmarshalJSON ¶

func (v *NullableGetBranches200Response) UnmarshalJSON(src []byte) error

func (*NullableGetBranches200Response) Unset ¶

func (v *NullableGetBranches200Response) Unset()

type NullableGetBuildStatus200Response ¶

type NullableGetBuildStatus200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetBuildStatus200Response) Get ¶

func (NullableGetBuildStatus200Response) IsSet ¶

func (NullableGetBuildStatus200Response) MarshalJSON ¶

func (v NullableGetBuildStatus200Response) MarshalJSON() ([]byte, error)

func (*NullableGetBuildStatus200Response) Set ¶

func (*NullableGetBuildStatus200Response) UnmarshalJSON ¶

func (v *NullableGetBuildStatus200Response) UnmarshalJSON(src []byte) error

func (*NullableGetBuildStatus200Response) Unset ¶

type NullableGetChanges1200Response ¶

type NullableGetChanges1200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetChanges1200Response) Get ¶

func (NullableGetChanges1200Response) IsSet ¶

func (NullableGetChanges1200Response) MarshalJSON ¶

func (v NullableGetChanges1200Response) MarshalJSON() ([]byte, error)

func (*NullableGetChanges1200Response) Set ¶

func (*NullableGetChanges1200Response) UnmarshalJSON ¶

func (v *NullableGetChanges1200Response) UnmarshalJSON(src []byte) error

func (*NullableGetChanges1200Response) Unset ¶

func (v *NullableGetChanges1200Response) Unset()

type NullableGetComments200Response ¶

type NullableGetComments200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetComments200Response) Get ¶

func (NullableGetComments200Response) IsSet ¶

func (NullableGetComments200Response) MarshalJSON ¶

func (v NullableGetComments200Response) MarshalJSON() ([]byte, error)

func (*NullableGetComments200Response) Set ¶

func (*NullableGetComments200Response) UnmarshalJSON ¶

func (v *NullableGetComments200Response) UnmarshalJSON(src []byte) error

func (*NullableGetComments200Response) Unset ¶

func (v *NullableGetComments200Response) Unset()

type NullableGetCommits200Response ¶

type NullableGetCommits200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetCommits200Response) Get ¶

func (NullableGetCommits200Response) IsSet ¶

func (NullableGetCommits200Response) MarshalJSON ¶

func (v NullableGetCommits200Response) MarshalJSON() ([]byte, error)

func (*NullableGetCommits200Response) Set ¶

func (*NullableGetCommits200Response) UnmarshalJSON ¶

func (v *NullableGetCommits200Response) UnmarshalJSON(src []byte) error

func (*NullableGetCommits200Response) Unset ¶

func (v *NullableGetCommits200Response) Unset()

type NullableGetCommitsByIssueKey200Response ¶

type NullableGetCommitsByIssueKey200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetCommitsByIssueKey200Response) Get ¶

func (NullableGetCommitsByIssueKey200Response) IsSet ¶

func (NullableGetCommitsByIssueKey200Response) MarshalJSON ¶

func (v NullableGetCommitsByIssueKey200Response) MarshalJSON() ([]byte, error)

func (*NullableGetCommitsByIssueKey200Response) Set ¶

func (*NullableGetCommitsByIssueKey200Response) UnmarshalJSON ¶

func (v *NullableGetCommitsByIssueKey200Response) UnmarshalJSON(src []byte) error

func (*NullableGetCommitsByIssueKey200Response) Unset ¶

type NullableGetConfigurations200Response ¶

type NullableGetConfigurations200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetConfigurations200Response) Get ¶

func (NullableGetConfigurations200Response) IsSet ¶

func (NullableGetConfigurations200Response) MarshalJSON ¶

func (v NullableGetConfigurations200Response) MarshalJSON() ([]byte, error)

func (*NullableGetConfigurations200Response) Set ¶

func (*NullableGetConfigurations200Response) UnmarshalJSON ¶

func (v *NullableGetConfigurations200Response) UnmarshalJSON(src []byte) error

func (*NullableGetConfigurations200Response) Unset ¶

type NullableGetExportJobMessages200Response ¶

type NullableGetExportJobMessages200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetExportJobMessages200Response) Get ¶

func (NullableGetExportJobMessages200Response) IsSet ¶

func (NullableGetExportJobMessages200Response) MarshalJSON ¶

func (v NullableGetExportJobMessages200Response) MarshalJSON() ([]byte, error)

func (*NullableGetExportJobMessages200Response) Set ¶

func (*NullableGetExportJobMessages200Response) UnmarshalJSON ¶

func (v *NullableGetExportJobMessages200Response) UnmarshalJSON(src []byte) error

func (*NullableGetExportJobMessages200Response) Unset ¶

type NullableGetGroups1200Response ¶

type NullableGetGroups1200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetGroups1200Response) Get ¶

func (NullableGetGroups1200Response) IsSet ¶

func (NullableGetGroups1200Response) MarshalJSON ¶

func (v NullableGetGroups1200Response) MarshalJSON() ([]byte, error)

func (*NullableGetGroups1200Response) Set ¶

func (*NullableGetGroups1200Response) UnmarshalJSON ¶

func (v *NullableGetGroups1200Response) UnmarshalJSON(src []byte) error

func (*NullableGetGroups1200Response) Unset ¶

func (v *NullableGetGroups1200Response) Unset()

type NullableGetGroups200Response ¶

type NullableGetGroups200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetGroups200Response) Get ¶

func (NullableGetGroups200Response) IsSet ¶

func (NullableGetGroups200Response) MarshalJSON ¶

func (v NullableGetGroups200Response) MarshalJSON() ([]byte, error)

func (*NullableGetGroups200Response) Set ¶

func (*NullableGetGroups200Response) UnmarshalJSON ¶

func (v *NullableGetGroups200Response) UnmarshalJSON(src []byte) error

func (*NullableGetGroups200Response) Unset ¶

func (v *NullableGetGroups200Response) Unset()

type NullableGetGroupsWithAnyPermission200Response ¶

type NullableGetGroupsWithAnyPermission200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetGroupsWithAnyPermission200Response) Get ¶

func (NullableGetGroupsWithAnyPermission200Response) IsSet ¶

func (NullableGetGroupsWithAnyPermission200Response) MarshalJSON ¶

func (*NullableGetGroupsWithAnyPermission200Response) Set ¶

func (*NullableGetGroupsWithAnyPermission200Response) UnmarshalJSON ¶

func (*NullableGetGroupsWithAnyPermission200Response) Unset ¶

type NullableGetHistory200Response ¶

type NullableGetHistory200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetHistory200Response) Get ¶

func (NullableGetHistory200Response) IsSet ¶

func (NullableGetHistory200Response) MarshalJSON ¶

func (v NullableGetHistory200Response) MarshalJSON() ([]byte, error)

func (*NullableGetHistory200Response) Set ¶

func (*NullableGetHistory200Response) UnmarshalJSON ¶

func (v *NullableGetHistory200Response) UnmarshalJSON(src []byte) error

func (*NullableGetHistory200Response) Unset ¶

func (v *NullableGetHistory200Response) Unset()

type NullableGetKeysForUser200Response ¶

type NullableGetKeysForUser200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetKeysForUser200Response) Get ¶

func (NullableGetKeysForUser200Response) IsSet ¶

func (NullableGetKeysForUser200Response) MarshalJSON ¶

func (v NullableGetKeysForUser200Response) MarshalJSON() ([]byte, error)

func (*NullableGetKeysForUser200Response) Set ¶

func (*NullableGetKeysForUser200Response) UnmarshalJSON ¶

func (v *NullableGetKeysForUser200Response) UnmarshalJSON(src []byte) error

func (*NullableGetKeysForUser200Response) Unset ¶

type NullableGetLabelables200Response ¶

type NullableGetLabelables200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetLabelables200Response) Get ¶

func (NullableGetLabelables200Response) IsSet ¶

func (NullableGetLabelables200Response) MarshalJSON ¶

func (v NullableGetLabelables200Response) MarshalJSON() ([]byte, error)

func (*NullableGetLabelables200Response) Set ¶

func (*NullableGetLabelables200Response) UnmarshalJSON ¶

func (v *NullableGetLabelables200Response) UnmarshalJSON(src []byte) error

func (*NullableGetLabelables200Response) Unset ¶

type NullableGetLabels200Response ¶

type NullableGetLabels200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetLabels200Response) Get ¶

func (NullableGetLabels200Response) IsSet ¶

func (NullableGetLabels200Response) MarshalJSON ¶

func (v NullableGetLabels200Response) MarshalJSON() ([]byte, error)

func (*NullableGetLabels200Response) Set ¶

func (*NullableGetLabels200Response) UnmarshalJSON ¶

func (v *NullableGetLabels200Response) UnmarshalJSON(src []byte) error

func (*NullableGetLabels200Response) Unset ¶

func (v *NullableGetLabels200Response) Unset()

type NullableGetLikers200Response ¶

type NullableGetLikers200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetLikers200Response) Get ¶

func (NullableGetLikers200Response) IsSet ¶

func (NullableGetLikers200Response) MarshalJSON ¶

func (v NullableGetLikers200Response) MarshalJSON() ([]byte, error)

func (*NullableGetLikers200Response) Set ¶

func (*NullableGetLikers200Response) UnmarshalJSON ¶

func (v *NullableGetLikers200Response) UnmarshalJSON(src []byte) error

func (*NullableGetLikers200Response) Unset ¶

func (v *NullableGetLikers200Response) Unset()

type NullableGetPageOfRequiredBuildsMergeChecks200Response ¶

type NullableGetPageOfRequiredBuildsMergeChecks200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetPageOfRequiredBuildsMergeChecks200Response) Get ¶

func (NullableGetPageOfRequiredBuildsMergeChecks200Response) IsSet ¶

func (NullableGetPageOfRequiredBuildsMergeChecks200Response) MarshalJSON ¶

func (*NullableGetPageOfRequiredBuildsMergeChecks200Response) Set ¶

func (*NullableGetPageOfRequiredBuildsMergeChecks200Response) UnmarshalJSON ¶

func (*NullableGetPageOfRequiredBuildsMergeChecks200Response) Unset ¶

type NullableGetProjects200Response ¶

type NullableGetProjects200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetProjects200Response) Get ¶

func (NullableGetProjects200Response) IsSet ¶

func (NullableGetProjects200Response) MarshalJSON ¶

func (v NullableGetProjects200Response) MarshalJSON() ([]byte, error)

func (*NullableGetProjects200Response) Set ¶

func (*NullableGetProjects200Response) UnmarshalJSON ¶

func (v *NullableGetProjects200Response) UnmarshalJSON(src []byte) error

func (*NullableGetProjects200Response) Unset ¶

func (v *NullableGetProjects200Response) Unset()

type NullableGetPullRequestSuggestions200Response ¶

type NullableGetPullRequestSuggestions200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetPullRequestSuggestions200Response) Get ¶

func (NullableGetPullRequestSuggestions200Response) IsSet ¶

func (NullableGetPullRequestSuggestions200Response) MarshalJSON ¶

func (*NullableGetPullRequestSuggestions200Response) Set ¶

func (*NullableGetPullRequestSuggestions200Response) UnmarshalJSON ¶

func (*NullableGetPullRequestSuggestions200Response) Unset ¶

type NullableGetPullRequests1200Response ¶

type NullableGetPullRequests1200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetPullRequests1200Response) Get ¶

func (NullableGetPullRequests1200Response) IsSet ¶

func (NullableGetPullRequests1200Response) MarshalJSON ¶

func (v NullableGetPullRequests1200Response) MarshalJSON() ([]byte, error)

func (*NullableGetPullRequests1200Response) Set ¶

func (*NullableGetPullRequests1200Response) UnmarshalJSON ¶

func (v *NullableGetPullRequests1200Response) UnmarshalJSON(src []byte) error

func (*NullableGetPullRequests1200Response) Unset ¶

type NullableGetRefChangeActivity200Response ¶

type NullableGetRefChangeActivity200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetRefChangeActivity200Response) Get ¶

func (NullableGetRefChangeActivity200Response) IsSet ¶

func (NullableGetRefChangeActivity200Response) MarshalJSON ¶

func (v NullableGetRefChangeActivity200Response) MarshalJSON() ([]byte, error)

func (*NullableGetRefChangeActivity200Response) Set ¶

func (*NullableGetRefChangeActivity200Response) UnmarshalJSON ¶

func (v *NullableGetRefChangeActivity200Response) UnmarshalJSON(src []byte) error

func (*NullableGetRefChangeActivity200Response) Unset ¶

type NullableGetRepoSyncStatus200Response ¶

type NullableGetRepoSyncStatus200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetRepoSyncStatus200Response) Get ¶

func (NullableGetRepoSyncStatus200Response) IsSet ¶

func (NullableGetRepoSyncStatus200Response) MarshalJSON ¶

func (v NullableGetRepoSyncStatus200Response) MarshalJSON() ([]byte, error)

func (*NullableGetRepoSyncStatus200Response) Set ¶

func (*NullableGetRepoSyncStatus200Response) UnmarshalJSON ¶

func (v *NullableGetRepoSyncStatus200Response) UnmarshalJSON(src []byte) error

func (*NullableGetRepoSyncStatus200Response) Unset ¶

type NullableGetReports200Response ¶

type NullableGetReports200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetReports200Response) Get ¶

func (NullableGetReports200Response) IsSet ¶

func (NullableGetReports200Response) MarshalJSON ¶

func (v NullableGetReports200Response) MarshalJSON() ([]byte, error)

func (*NullableGetReports200Response) Set ¶

func (*NullableGetReports200Response) UnmarshalJSON ¶

func (v *NullableGetReports200Response) UnmarshalJSON(src []byte) error

func (*NullableGetReports200Response) Unset ¶

func (v *NullableGetReports200Response) Unset()

type NullableGetRepositoriesRecentlyAccessed200Response ¶

type NullableGetRepositoriesRecentlyAccessed200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetRepositoriesRecentlyAccessed200Response) Get ¶

func (NullableGetRepositoriesRecentlyAccessed200Response) IsSet ¶

func (NullableGetRepositoriesRecentlyAccessed200Response) MarshalJSON ¶

func (*NullableGetRepositoriesRecentlyAccessed200Response) Set ¶

func (*NullableGetRepositoriesRecentlyAccessed200Response) UnmarshalJSON ¶

func (*NullableGetRepositoriesRecentlyAccessed200Response) Unset ¶

type NullableGetRepositoryHooks1200Response ¶

type NullableGetRepositoryHooks1200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetRepositoryHooks1200Response) Get ¶

func (NullableGetRepositoryHooks1200Response) IsSet ¶

func (NullableGetRepositoryHooks1200Response) MarshalJSON ¶

func (v NullableGetRepositoryHooks1200Response) MarshalJSON() ([]byte, error)

func (*NullableGetRepositoryHooks1200Response) Set ¶

func (*NullableGetRepositoryHooks1200Response) UnmarshalJSON ¶

func (v *NullableGetRepositoryHooks1200Response) UnmarshalJSON(src []byte) error

func (*NullableGetRepositoryHooks1200Response) Unset ¶

type NullableGetRestrictions1200Response ¶

type NullableGetRestrictions1200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetRestrictions1200Response) Get ¶

func (NullableGetRestrictions1200Response) IsSet ¶

func (NullableGetRestrictions1200Response) MarshalJSON ¶

func (v NullableGetRestrictions1200Response) MarshalJSON() ([]byte, error)

func (*NullableGetRestrictions1200Response) Set ¶

func (*NullableGetRestrictions1200Response) UnmarshalJSON ¶

func (v *NullableGetRestrictions1200Response) UnmarshalJSON(src []byte) error

func (*NullableGetRestrictions1200Response) Unset ¶

type NullableGetReviewerGroups1200Response ¶

type NullableGetReviewerGroups1200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetReviewerGroups1200Response) Get ¶

func (NullableGetReviewerGroups1200Response) IsSet ¶

func (NullableGetReviewerGroups1200Response) MarshalJSON ¶

func (v NullableGetReviewerGroups1200Response) MarshalJSON() ([]byte, error)

func (*NullableGetReviewerGroups1200Response) Set ¶

func (*NullableGetReviewerGroups1200Response) UnmarshalJSON ¶

func (v *NullableGetReviewerGroups1200Response) UnmarshalJSON(src []byte) error

func (*NullableGetReviewerGroups1200Response) Unset ¶

type NullableGetSshKeys200Response ¶

type NullableGetSshKeys200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetSshKeys200Response) Get ¶

func (NullableGetSshKeys200Response) IsSet ¶

func (NullableGetSshKeys200Response) MarshalJSON ¶

func (v NullableGetSshKeys200Response) MarshalJSON() ([]byte, error)

func (*NullableGetSshKeys200Response) Set ¶

func (*NullableGetSshKeys200Response) UnmarshalJSON ¶

func (v *NullableGetSshKeys200Response) UnmarshalJSON(src []byte) error

func (*NullableGetSshKeys200Response) Unset ¶

func (v *NullableGetSshKeys200Response) Unset()

type NullableGetSshKeysForProject200Response ¶

type NullableGetSshKeysForProject200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetSshKeysForProject200Response) Get ¶

func (NullableGetSshKeysForProject200Response) IsSet ¶

func (NullableGetSshKeysForProject200Response) MarshalJSON ¶

func (v NullableGetSshKeysForProject200Response) MarshalJSON() ([]byte, error)

func (*NullableGetSshKeysForProject200Response) Set ¶

func (*NullableGetSshKeysForProject200Response) UnmarshalJSON ¶

func (v *NullableGetSshKeysForProject200Response) UnmarshalJSON(src []byte) error

func (*NullableGetSshKeysForProject200Response) Unset ¶

type NullableGetTags200Response ¶

type NullableGetTags200Response struct {
	// contains filtered or unexported fields
}

func NewNullableGetTags200Response ¶

func NewNullableGetTags200Response(val *GetTags200Response) *NullableGetTags200Response

func (NullableGetTags200Response) Get ¶

func (NullableGetTags200Response) IsSet ¶

func (v NullableGetTags200Response) IsSet() bool

func (NullableGetTags200Response) MarshalJSON ¶

func (v NullableGetTags200Response) MarshalJSON() ([]byte, error)

func (*NullableGetTags200Response) Set ¶

func (*NullableGetTags200Response) UnmarshalJSON ¶

func (v *NullableGetTags200Response) UnmarshalJSON(src []byte) error

func (*NullableGetTags200Response) Unset ¶

func (v *NullableGetTags200Response) Unset()

type NullableGetUsersWithAnyPermission1200Response ¶

type NullableGetUsersWithAnyPermission1200Response struct {
	// contains filtered or unexported fields
}

func (NullableGetUsersWithAnyPermission1200Response) Get ¶

func (NullableGetUsersWithAnyPermission1200Response) IsSet ¶

func (NullableGetUsersWithAnyPermission1200Response) MarshalJSON ¶

func (*NullableGetUsersWithAnyPermission1200Response) Set ¶

func (*NullableGetUsersWithAnyPermission1200Response) UnmarshalJSON ¶

func (*NullableGetUsersWithAnyPermission1200Response) Unset ¶

type NullableGroup ¶

type NullableGroup struct {
	// contains filtered or unexported fields
}

func NewNullableGroup ¶

func NewNullableGroup(val *Group) *NullableGroup

func (NullableGroup) Get ¶

func (v NullableGroup) Get() *Group

func (NullableGroup) IsSet ¶

func (v NullableGroup) IsSet() bool

func (NullableGroup) MarshalJSON ¶

func (v NullableGroup) MarshalJSON() ([]byte, error)

func (*NullableGroup) Set ¶

func (v *NullableGroup) Set(val *Group)

func (*NullableGroup) UnmarshalJSON ¶

func (v *NullableGroup) UnmarshalJSON(src []byte) error

func (*NullableGroup) Unset ¶

func (v *NullableGroup) Unset()

type NullableGroupAndUsers ¶

type NullableGroupAndUsers struct {
	// contains filtered or unexported fields
}

func NewNullableGroupAndUsers ¶

func NewNullableGroupAndUsers(val *GroupAndUsers) *NullableGroupAndUsers

func (NullableGroupAndUsers) Get ¶

func (NullableGroupAndUsers) IsSet ¶

func (v NullableGroupAndUsers) IsSet() bool

func (NullableGroupAndUsers) MarshalJSON ¶

func (v NullableGroupAndUsers) MarshalJSON() ([]byte, error)

func (*NullableGroupAndUsers) Set ¶

func (v *NullableGroupAndUsers) Set(val *GroupAndUsers)

func (*NullableGroupAndUsers) UnmarshalJSON ¶

func (v *NullableGroupAndUsers) UnmarshalJSON(src []byte) error

func (*NullableGroupAndUsers) Unset ¶

func (v *NullableGroupAndUsers) Unset()

type NullableGroupPickerContext ¶

type NullableGroupPickerContext struct {
	// contains filtered or unexported fields
}

func NewNullableGroupPickerContext ¶

func NewNullableGroupPickerContext(val *GroupPickerContext) *NullableGroupPickerContext

func (NullableGroupPickerContext) Get ¶

func (NullableGroupPickerContext) IsSet ¶

func (v NullableGroupPickerContext) IsSet() bool

func (NullableGroupPickerContext) MarshalJSON ¶

func (v NullableGroupPickerContext) MarshalJSON() ([]byte, error)

func (*NullableGroupPickerContext) Set ¶

func (*NullableGroupPickerContext) UnmarshalJSON ¶

func (v *NullableGroupPickerContext) UnmarshalJSON(src []byte) error

func (*NullableGroupPickerContext) Unset ¶

func (v *NullableGroupPickerContext) Unset()

type NullableInt ¶

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt ¶

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get ¶

func (v NullableInt) Get() *int

func (NullableInt) IsSet ¶

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON ¶

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set ¶

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON ¶

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset ¶

func (v *NullableInt) Unset()

type NullableInt32 ¶

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32 ¶

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get ¶

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet ¶

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON ¶

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set ¶

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON ¶

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset ¶

func (v *NullableInt32) Unset()

type NullableInt64 ¶

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64 ¶

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get ¶

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet ¶

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON ¶

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set ¶

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON ¶

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset ¶

func (v *NullableInt64) Unset()

type NullableListMirrors200Response ¶

type NullableListMirrors200Response struct {
	// contains filtered or unexported fields
}

func (NullableListMirrors200Response) Get ¶

func (NullableListMirrors200Response) IsSet ¶

func (NullableListMirrors200Response) MarshalJSON ¶

func (v NullableListMirrors200Response) MarshalJSON() ([]byte, error)

func (*NullableListMirrors200Response) Set ¶

func (*NullableListMirrors200Response) UnmarshalJSON ¶

func (v *NullableListMirrors200Response) UnmarshalJSON(src []byte) error

func (*NullableListMirrors200Response) Unset ¶

func (v *NullableListMirrors200Response) Unset()

type NullableListParticipants200Response ¶

type NullableListParticipants200Response struct {
	// contains filtered or unexported fields
}

func (NullableListParticipants200Response) Get ¶

func (NullableListParticipants200Response) IsSet ¶

func (NullableListParticipants200Response) MarshalJSON ¶

func (v NullableListParticipants200Response) MarshalJSON() ([]byte, error)

func (*NullableListParticipants200Response) Set ¶

func (*NullableListParticipants200Response) UnmarshalJSON ¶

func (v *NullableListParticipants200Response) UnmarshalJSON(src []byte) error

func (*NullableListParticipants200Response) Unset ¶

type NullableListRequests200Response ¶

type NullableListRequests200Response struct {
	// contains filtered or unexported fields
}

func (NullableListRequests200Response) Get ¶

func (NullableListRequests200Response) IsSet ¶

func (NullableListRequests200Response) MarshalJSON ¶

func (v NullableListRequests200Response) MarshalJSON() ([]byte, error)

func (*NullableListRequests200Response) Set ¶

func (*NullableListRequests200Response) UnmarshalJSON ¶

func (v *NullableListRequests200Response) UnmarshalJSON(src []byte) error

func (*NullableListRequests200Response) Unset ¶

type NullableListUpstreamServers200Response ¶

type NullableListUpstreamServers200Response struct {
	// contains filtered or unexported fields
}

func (NullableListUpstreamServers200Response) Get ¶

func (NullableListUpstreamServers200Response) IsSet ¶

func (NullableListUpstreamServers200Response) MarshalJSON ¶

func (v NullableListUpstreamServers200Response) MarshalJSON() ([]byte, error)

func (*NullableListUpstreamServers200Response) Set ¶

func (*NullableListUpstreamServers200Response) UnmarshalJSON ¶

func (v *NullableListUpstreamServers200Response) UnmarshalJSON(src []byte) error

func (*NullableListUpstreamServers200Response) Unset ¶

type NullableRepositoryHookDetails ¶

type NullableRepositoryHookDetails struct {
	// contains filtered or unexported fields
}

func (NullableRepositoryHookDetails) Get ¶

func (NullableRepositoryHookDetails) IsSet ¶

func (NullableRepositoryHookDetails) MarshalJSON ¶

func (v NullableRepositoryHookDetails) MarshalJSON() ([]byte, error)

func (*NullableRepositoryHookDetails) Set ¶

func (*NullableRepositoryHookDetails) UnmarshalJSON ¶

func (v *NullableRepositoryHookDetails) UnmarshalJSON(src []byte) error

func (*NullableRepositoryHookDetails) Unset ¶

func (v *NullableRepositoryHookDetails) Unset()

type NullableRestAccessToken ¶

type NullableRestAccessToken struct {
	// contains filtered or unexported fields
}

func NewNullableRestAccessToken ¶

func NewNullableRestAccessToken(val *RestAccessToken) *NullableRestAccessToken

func (NullableRestAccessToken) Get ¶

func (NullableRestAccessToken) IsSet ¶

func (v NullableRestAccessToken) IsSet() bool

func (NullableRestAccessToken) MarshalJSON ¶

func (v NullableRestAccessToken) MarshalJSON() ([]byte, error)

func (*NullableRestAccessToken) Set ¶

func (*NullableRestAccessToken) UnmarshalJSON ¶

func (v *NullableRestAccessToken) UnmarshalJSON(src []byte) error

func (*NullableRestAccessToken) Unset ¶

func (v *NullableRestAccessToken) Unset()

type NullableRestAccessTokenRequest ¶

type NullableRestAccessTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestAccessTokenRequest) Get ¶

func (NullableRestAccessTokenRequest) IsSet ¶

func (NullableRestAccessTokenRequest) MarshalJSON ¶

func (v NullableRestAccessTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableRestAccessTokenRequest) Set ¶

func (*NullableRestAccessTokenRequest) UnmarshalJSON ¶

func (v *NullableRestAccessTokenRequest) UnmarshalJSON(src []byte) error

func (*NullableRestAccessTokenRequest) Unset ¶

func (v *NullableRestAccessTokenRequest) Unset()

type NullableRestAggregateRejectCounter ¶

type NullableRestAggregateRejectCounter struct {
	// contains filtered or unexported fields
}

func (NullableRestAggregateRejectCounter) Get ¶

func (NullableRestAggregateRejectCounter) IsSet ¶

func (NullableRestAggregateRejectCounter) MarshalJSON ¶

func (v NullableRestAggregateRejectCounter) MarshalJSON() ([]byte, error)

func (*NullableRestAggregateRejectCounter) Set ¶

func (*NullableRestAggregateRejectCounter) UnmarshalJSON ¶

func (v *NullableRestAggregateRejectCounter) UnmarshalJSON(src []byte) error

func (*NullableRestAggregateRejectCounter) Unset ¶

type NullableRestAnalyticsSettings ¶

type NullableRestAnalyticsSettings struct {
	// contains filtered or unexported fields
}

func (NullableRestAnalyticsSettings) Get ¶

func (NullableRestAnalyticsSettings) IsSet ¶

func (NullableRestAnalyticsSettings) MarshalJSON ¶

func (v NullableRestAnalyticsSettings) MarshalJSON() ([]byte, error)

func (*NullableRestAnalyticsSettings) Set ¶

func (*NullableRestAnalyticsSettings) UnmarshalJSON ¶

func (v *NullableRestAnalyticsSettings) UnmarshalJSON(src []byte) error

func (*NullableRestAnalyticsSettings) Unset ¶

func (v *NullableRestAnalyticsSettings) Unset()

type NullableRestAnnouncementBanner ¶

type NullableRestAnnouncementBanner struct {
	// contains filtered or unexported fields
}

func (NullableRestAnnouncementBanner) Get ¶

func (NullableRestAnnouncementBanner) IsSet ¶

func (NullableRestAnnouncementBanner) MarshalJSON ¶

func (v NullableRestAnnouncementBanner) MarshalJSON() ([]byte, error)

func (*NullableRestAnnouncementBanner) Set ¶

func (*NullableRestAnnouncementBanner) UnmarshalJSON ¶

func (v *NullableRestAnnouncementBanner) UnmarshalJSON(src []byte) error

func (*NullableRestAnnouncementBanner) Unset ¶

func (v *NullableRestAnnouncementBanner) Unset()

type NullableRestApplicationProperties ¶

type NullableRestApplicationProperties struct {
	// contains filtered or unexported fields
}

func (NullableRestApplicationProperties) Get ¶

func (NullableRestApplicationProperties) IsSet ¶

func (NullableRestApplicationProperties) MarshalJSON ¶

func (v NullableRestApplicationProperties) MarshalJSON() ([]byte, error)

func (*NullableRestApplicationProperties) Set ¶

func (*NullableRestApplicationProperties) UnmarshalJSON ¶

func (v *NullableRestApplicationProperties) UnmarshalJSON(src []byte) error

func (*NullableRestApplicationProperties) Unset ¶

type NullableRestApplicationUser ¶

type NullableRestApplicationUser struct {
	// contains filtered or unexported fields
}

func (NullableRestApplicationUser) Get ¶

func (NullableRestApplicationUser) IsSet ¶

func (NullableRestApplicationUser) MarshalJSON ¶

func (v NullableRestApplicationUser) MarshalJSON() ([]byte, error)

func (*NullableRestApplicationUser) Set ¶

func (*NullableRestApplicationUser) UnmarshalJSON ¶

func (v *NullableRestApplicationUser) UnmarshalJSON(src []byte) error

func (*NullableRestApplicationUser) Unset ¶

func (v *NullableRestApplicationUser) Unset()

type NullableRestApplicationUserWithPermissions ¶

type NullableRestApplicationUserWithPermissions struct {
	// contains filtered or unexported fields
}

func (NullableRestApplicationUserWithPermissions) Get ¶

func (NullableRestApplicationUserWithPermissions) IsSet ¶

func (NullableRestApplicationUserWithPermissions) MarshalJSON ¶

func (*NullableRestApplicationUserWithPermissions) Set ¶

func (*NullableRestApplicationUserWithPermissions) UnmarshalJSON ¶

func (v *NullableRestApplicationUserWithPermissions) UnmarshalJSON(src []byte) error

func (*NullableRestApplicationUserWithPermissions) Unset ¶

type NullableRestApplySuggestionRequest ¶

type NullableRestApplySuggestionRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestApplySuggestionRequest) Get ¶

func (NullableRestApplySuggestionRequest) IsSet ¶

func (NullableRestApplySuggestionRequest) MarshalJSON ¶

func (v NullableRestApplySuggestionRequest) MarshalJSON() ([]byte, error)

func (*NullableRestApplySuggestionRequest) Set ¶

func (*NullableRestApplySuggestionRequest) UnmarshalJSON ¶

func (v *NullableRestApplySuggestionRequest) UnmarshalJSON(src []byte) error

func (*NullableRestApplySuggestionRequest) Unset ¶

type NullableRestApplySuggestionRequestCommentVersion ¶

type NullableRestApplySuggestionRequestCommentVersion struct {
	// contains filtered or unexported fields
}

func (NullableRestApplySuggestionRequestCommentVersion) Get ¶

func (NullableRestApplySuggestionRequestCommentVersion) IsSet ¶

func (NullableRestApplySuggestionRequestCommentVersion) MarshalJSON ¶

func (*NullableRestApplySuggestionRequestCommentVersion) Set ¶

func (*NullableRestApplySuggestionRequestCommentVersion) UnmarshalJSON ¶

func (*NullableRestApplySuggestionRequestCommentVersion) Unset ¶

type NullableRestApplySuggestionRequestPullRequestVersion ¶

type NullableRestApplySuggestionRequestPullRequestVersion struct {
	// contains filtered or unexported fields
}

func (NullableRestApplySuggestionRequestPullRequestVersion) Get ¶

func (NullableRestApplySuggestionRequestPullRequestVersion) IsSet ¶

func (NullableRestApplySuggestionRequestPullRequestVersion) MarshalJSON ¶

func (*NullableRestApplySuggestionRequestPullRequestVersion) Set ¶

func (*NullableRestApplySuggestionRequestPullRequestVersion) UnmarshalJSON ¶

func (*NullableRestApplySuggestionRequestPullRequestVersion) Unset ¶

type NullableRestApplySuggestionRequestSuggestionIndex ¶

type NullableRestApplySuggestionRequestSuggestionIndex struct {
	// contains filtered or unexported fields
}

func (NullableRestApplySuggestionRequestSuggestionIndex) Get ¶

func (NullableRestApplySuggestionRequestSuggestionIndex) IsSet ¶

func (NullableRestApplySuggestionRequestSuggestionIndex) MarshalJSON ¶

func (*NullableRestApplySuggestionRequestSuggestionIndex) Set ¶

func (*NullableRestApplySuggestionRequestSuggestionIndex) UnmarshalJSON ¶

func (*NullableRestApplySuggestionRequestSuggestionIndex) Unset ¶

type NullableRestAttachmentMetadata ¶

type NullableRestAttachmentMetadata struct {
	// contains filtered or unexported fields
}

func (NullableRestAttachmentMetadata) Get ¶

func (NullableRestAttachmentMetadata) IsSet ¶

func (NullableRestAttachmentMetadata) MarshalJSON ¶

func (v NullableRestAttachmentMetadata) MarshalJSON() ([]byte, error)

func (*NullableRestAttachmentMetadata) Set ¶

func (*NullableRestAttachmentMetadata) UnmarshalJSON ¶

func (v *NullableRestAttachmentMetadata) UnmarshalJSON(src []byte) error

func (*NullableRestAttachmentMetadata) Unset ¶

func (v *NullableRestAttachmentMetadata) Unset()

type NullableRestAuthenticationRequest ¶

type NullableRestAuthenticationRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestAuthenticationRequest) Get ¶

func (NullableRestAuthenticationRequest) IsSet ¶

func (NullableRestAuthenticationRequest) MarshalJSON ¶

func (v NullableRestAuthenticationRequest) MarshalJSON() ([]byte, error)

func (*NullableRestAuthenticationRequest) Set ¶

func (*NullableRestAuthenticationRequest) UnmarshalJSON ¶

func (v *NullableRestAuthenticationRequest) UnmarshalJSON(src []byte) error

func (*NullableRestAuthenticationRequest) Unset ¶

type NullableRestAutoDeclineSettings ¶

type NullableRestAutoDeclineSettings struct {
	// contains filtered or unexported fields
}

func (NullableRestAutoDeclineSettings) Get ¶

func (NullableRestAutoDeclineSettings) IsSet ¶

func (NullableRestAutoDeclineSettings) MarshalJSON ¶

func (v NullableRestAutoDeclineSettings) MarshalJSON() ([]byte, error)

func (*NullableRestAutoDeclineSettings) Set ¶

func (*NullableRestAutoDeclineSettings) UnmarshalJSON ¶

func (v *NullableRestAutoDeclineSettings) UnmarshalJSON(src []byte) error

func (*NullableRestAutoDeclineSettings) Unset ¶

type NullableRestAutoDeclineSettingsRequest ¶

type NullableRestAutoDeclineSettingsRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestAutoDeclineSettingsRequest) Get ¶

func (NullableRestAutoDeclineSettingsRequest) IsSet ¶

func (NullableRestAutoDeclineSettingsRequest) MarshalJSON ¶

func (v NullableRestAutoDeclineSettingsRequest) MarshalJSON() ([]byte, error)

func (*NullableRestAutoDeclineSettingsRequest) Set ¶

func (*NullableRestAutoDeclineSettingsRequest) UnmarshalJSON ¶

func (v *NullableRestAutoDeclineSettingsRequest) UnmarshalJSON(src []byte) error

func (*NullableRestAutoDeclineSettingsRequest) Unset ¶

type NullableRestAutoDeclineSettingsScope ¶

type NullableRestAutoDeclineSettingsScope struct {
	// contains filtered or unexported fields
}

func (NullableRestAutoDeclineSettingsScope) Get ¶

func (NullableRestAutoDeclineSettingsScope) IsSet ¶

func (NullableRestAutoDeclineSettingsScope) MarshalJSON ¶

func (v NullableRestAutoDeclineSettingsScope) MarshalJSON() ([]byte, error)

func (*NullableRestAutoDeclineSettingsScope) Set ¶

func (*NullableRestAutoDeclineSettingsScope) UnmarshalJSON ¶

func (v *NullableRestAutoDeclineSettingsScope) UnmarshalJSON(src []byte) error

func (*NullableRestAutoDeclineSettingsScope) Unset ¶

type NullableRestBearerTokenCredentials ¶

type NullableRestBearerTokenCredentials struct {
	// contains filtered or unexported fields
}

func (NullableRestBearerTokenCredentials) Get ¶

func (NullableRestBearerTokenCredentials) IsSet ¶

func (NullableRestBearerTokenCredentials) MarshalJSON ¶

func (v NullableRestBearerTokenCredentials) MarshalJSON() ([]byte, error)

func (*NullableRestBearerTokenCredentials) Set ¶

func (*NullableRestBearerTokenCredentials) UnmarshalJSON ¶

func (v *NullableRestBearerTokenCredentials) UnmarshalJSON(src []byte) error

func (*NullableRestBearerTokenCredentials) Unset ¶

type NullableRestBitbucketLicense ¶

type NullableRestBitbucketLicense struct {
	// contains filtered or unexported fields
}

func (NullableRestBitbucketLicense) Get ¶

func (NullableRestBitbucketLicense) IsSet ¶

func (NullableRestBitbucketLicense) MarshalJSON ¶

func (v NullableRestBitbucketLicense) MarshalJSON() ([]byte, error)

func (*NullableRestBitbucketLicense) Set ¶

func (*NullableRestBitbucketLicense) UnmarshalJSON ¶

func (v *NullableRestBitbucketLicense) UnmarshalJSON(src []byte) error

func (*NullableRestBitbucketLicense) Unset ¶

func (v *NullableRestBitbucketLicense) Unset()

type NullableRestBitbucketLicenseStatus ¶

type NullableRestBitbucketLicenseStatus struct {
	// contains filtered or unexported fields
}

func (NullableRestBitbucketLicenseStatus) Get ¶

func (NullableRestBitbucketLicenseStatus) IsSet ¶

func (NullableRestBitbucketLicenseStatus) MarshalJSON ¶

func (v NullableRestBitbucketLicenseStatus) MarshalJSON() ([]byte, error)

func (*NullableRestBitbucketLicenseStatus) Set ¶

func (*NullableRestBitbucketLicenseStatus) UnmarshalJSON ¶

func (v *NullableRestBitbucketLicenseStatus) UnmarshalJSON(src []byte) error

func (*NullableRestBitbucketLicenseStatus) Unset ¶

type NullableRestBranch ¶

type NullableRestBranch struct {
	// contains filtered or unexported fields
}

func NewNullableRestBranch ¶

func NewNullableRestBranch(val *RestBranch) *NullableRestBranch

func (NullableRestBranch) Get ¶

func (v NullableRestBranch) Get() *RestBranch

func (NullableRestBranch) IsSet ¶

func (v NullableRestBranch) IsSet() bool

func (NullableRestBranch) MarshalJSON ¶

func (v NullableRestBranch) MarshalJSON() ([]byte, error)

func (*NullableRestBranch) Set ¶

func (v *NullableRestBranch) Set(val *RestBranch)

func (*NullableRestBranch) UnmarshalJSON ¶

func (v *NullableRestBranch) UnmarshalJSON(src []byte) error

func (*NullableRestBranch) Unset ¶

func (v *NullableRestBranch) Unset()

type NullableRestBranchCreateRequest ¶

type NullableRestBranchCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestBranchCreateRequest) Get ¶

func (NullableRestBranchCreateRequest) IsSet ¶

func (NullableRestBranchCreateRequest) MarshalJSON ¶

func (v NullableRestBranchCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableRestBranchCreateRequest) Set ¶

func (*NullableRestBranchCreateRequest) UnmarshalJSON ¶

func (v *NullableRestBranchCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableRestBranchCreateRequest) Unset ¶

type NullableRestBranchDeleteRequest ¶

type NullableRestBranchDeleteRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestBranchDeleteRequest) Get ¶

func (NullableRestBranchDeleteRequest) IsSet ¶

func (NullableRestBranchDeleteRequest) MarshalJSON ¶

func (v NullableRestBranchDeleteRequest) MarshalJSON() ([]byte, error)

func (*NullableRestBranchDeleteRequest) Set ¶

func (*NullableRestBranchDeleteRequest) UnmarshalJSON ¶

func (v *NullableRestBranchDeleteRequest) UnmarshalJSON(src []byte) error

func (*NullableRestBranchDeleteRequest) Unset ¶

type NullableRestBuildCapabilities ¶

type NullableRestBuildCapabilities struct {
	// contains filtered or unexported fields
}

func (NullableRestBuildCapabilities) Get ¶

func (NullableRestBuildCapabilities) IsSet ¶

func (NullableRestBuildCapabilities) MarshalJSON ¶

func (v NullableRestBuildCapabilities) MarshalJSON() ([]byte, error)

func (*NullableRestBuildCapabilities) Set ¶

func (*NullableRestBuildCapabilities) UnmarshalJSON ¶

func (v *NullableRestBuildCapabilities) UnmarshalJSON(src []byte) error

func (*NullableRestBuildCapabilities) Unset ¶

func (v *NullableRestBuildCapabilities) Unset()

type NullableRestBuildStats ¶

type NullableRestBuildStats struct {
	// contains filtered or unexported fields
}

func NewNullableRestBuildStats ¶

func NewNullableRestBuildStats(val *RestBuildStats) *NullableRestBuildStats

func (NullableRestBuildStats) Get ¶

func (NullableRestBuildStats) IsSet ¶

func (v NullableRestBuildStats) IsSet() bool

func (NullableRestBuildStats) MarshalJSON ¶

func (v NullableRestBuildStats) MarshalJSON() ([]byte, error)

func (*NullableRestBuildStats) Set ¶

func (*NullableRestBuildStats) UnmarshalJSON ¶

func (v *NullableRestBuildStats) UnmarshalJSON(src []byte) error

func (*NullableRestBuildStats) Unset ¶

func (v *NullableRestBuildStats) Unset()

type NullableRestBuildStatus ¶

type NullableRestBuildStatus struct {
	// contains filtered or unexported fields
}

func NewNullableRestBuildStatus ¶

func NewNullableRestBuildStatus(val *RestBuildStatus) *NullableRestBuildStatus

func (NullableRestBuildStatus) Get ¶

func (NullableRestBuildStatus) IsSet ¶

func (v NullableRestBuildStatus) IsSet() bool

func (NullableRestBuildStatus) MarshalJSON ¶

func (v NullableRestBuildStatus) MarshalJSON() ([]byte, error)

func (*NullableRestBuildStatus) Set ¶

func (*NullableRestBuildStatus) UnmarshalJSON ¶

func (v *NullableRestBuildStatus) UnmarshalJSON(src []byte) error

func (*NullableRestBuildStatus) Unset ¶

func (v *NullableRestBuildStatus) Unset()

type NullableRestBuildStatusSetRequest ¶

type NullableRestBuildStatusSetRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestBuildStatusSetRequest) Get ¶

func (NullableRestBuildStatusSetRequest) IsSet ¶

func (NullableRestBuildStatusSetRequest) MarshalJSON ¶

func (v NullableRestBuildStatusSetRequest) MarshalJSON() ([]byte, error)

func (*NullableRestBuildStatusSetRequest) Set ¶

func (*NullableRestBuildStatusSetRequest) UnmarshalJSON ¶

func (v *NullableRestBuildStatusSetRequest) UnmarshalJSON(src []byte) error

func (*NullableRestBuildStatusSetRequest) Unset ¶

type NullableRestBuildStatusSetRequestTestResults ¶

type NullableRestBuildStatusSetRequestTestResults struct {
	// contains filtered or unexported fields
}

func (NullableRestBuildStatusSetRequestTestResults) Get ¶

func (NullableRestBuildStatusSetRequestTestResults) IsSet ¶

func (NullableRestBuildStatusSetRequestTestResults) MarshalJSON ¶

func (*NullableRestBuildStatusSetRequestTestResults) Set ¶

func (*NullableRestBuildStatusSetRequestTestResults) UnmarshalJSON ¶

func (*NullableRestBuildStatusSetRequestTestResults) Unset ¶

type NullableRestBuildStatusTestResults ¶

type NullableRestBuildStatusTestResults struct {
	// contains filtered or unexported fields
}

func (NullableRestBuildStatusTestResults) Get ¶

func (NullableRestBuildStatusTestResults) IsSet ¶

func (NullableRestBuildStatusTestResults) MarshalJSON ¶

func (v NullableRestBuildStatusTestResults) MarshalJSON() ([]byte, error)

func (*NullableRestBuildStatusTestResults) Set ¶

func (*NullableRestBuildStatusTestResults) UnmarshalJSON ¶

func (v *NullableRestBuildStatusTestResults) UnmarshalJSON(src []byte) error

func (*NullableRestBuildStatusTestResults) Unset ¶

type NullableRestBulkAddInsightAnnotationRequest ¶

type NullableRestBulkAddInsightAnnotationRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestBulkAddInsightAnnotationRequest) Get ¶

func (NullableRestBulkAddInsightAnnotationRequest) IsSet ¶

func (NullableRestBulkAddInsightAnnotationRequest) MarshalJSON ¶

func (*NullableRestBulkAddInsightAnnotationRequest) Set ¶

func (*NullableRestBulkAddInsightAnnotationRequest) UnmarshalJSON ¶

func (v *NullableRestBulkAddInsightAnnotationRequest) UnmarshalJSON(src []byte) error

func (*NullableRestBulkAddInsightAnnotationRequest) Unset ¶

type NullableRestBulkUserRateLimitSettingsUpdateRequest ¶

type NullableRestBulkUserRateLimitSettingsUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestBulkUserRateLimitSettingsUpdateRequest) Get ¶

func (NullableRestBulkUserRateLimitSettingsUpdateRequest) IsSet ¶

func (NullableRestBulkUserRateLimitSettingsUpdateRequest) MarshalJSON ¶

func (*NullableRestBulkUserRateLimitSettingsUpdateRequest) Set ¶

func (*NullableRestBulkUserRateLimitSettingsUpdateRequest) UnmarshalJSON ¶

func (*NullableRestBulkUserRateLimitSettingsUpdateRequest) Unset ¶

type NullableRestBulkUserRateLimitSettingsUpdateRequestSettings ¶

type NullableRestBulkUserRateLimitSettingsUpdateRequestSettings struct {
	// contains filtered or unexported fields
}

func (NullableRestBulkUserRateLimitSettingsUpdateRequestSettings) Get ¶

func (NullableRestBulkUserRateLimitSettingsUpdateRequestSettings) IsSet ¶

func (NullableRestBulkUserRateLimitSettingsUpdateRequestSettings) MarshalJSON ¶

func (*NullableRestBulkUserRateLimitSettingsUpdateRequestSettings) Set ¶

func (*NullableRestBulkUserRateLimitSettingsUpdateRequestSettings) UnmarshalJSON ¶

func (*NullableRestBulkUserRateLimitSettingsUpdateRequestSettings) Unset ¶

type NullableRestChange ¶

type NullableRestChange struct {
	// contains filtered or unexported fields
}

func NewNullableRestChange ¶

func NewNullableRestChange(val *RestChange) *NullableRestChange

func (NullableRestChange) Get ¶

func (v NullableRestChange) Get() *RestChange

func (NullableRestChange) IsSet ¶

func (v NullableRestChange) IsSet() bool

func (NullableRestChange) MarshalJSON ¶

func (v NullableRestChange) MarshalJSON() ([]byte, error)

func (*NullableRestChange) Set ¶

func (v *NullableRestChange) Set(val *RestChange)

func (*NullableRestChange) UnmarshalJSON ¶

func (v *NullableRestChange) UnmarshalJSON(src []byte) error

func (*NullableRestChange) Unset ¶

func (v *NullableRestChange) Unset()

type NullableRestChangeConflict ¶

type NullableRestChangeConflict struct {
	// contains filtered or unexported fields
}

func NewNullableRestChangeConflict ¶

func NewNullableRestChangeConflict(val *RestChangeConflict) *NullableRestChangeConflict

func (NullableRestChangeConflict) Get ¶

func (NullableRestChangeConflict) IsSet ¶

func (v NullableRestChangeConflict) IsSet() bool

func (NullableRestChangeConflict) MarshalJSON ¶

func (v NullableRestChangeConflict) MarshalJSON() ([]byte, error)

func (*NullableRestChangeConflict) Set ¶

func (*NullableRestChangeConflict) UnmarshalJSON ¶

func (v *NullableRestChangeConflict) UnmarshalJSON(src []byte) error

func (*NullableRestChangeConflict) Unset ¶

func (v *NullableRestChangeConflict) Unset()

type NullableRestChangeConflictTheirChange ¶

type NullableRestChangeConflictTheirChange struct {
	// contains filtered or unexported fields
}

func (NullableRestChangeConflictTheirChange) Get ¶

func (NullableRestChangeConflictTheirChange) IsSet ¶

func (NullableRestChangeConflictTheirChange) MarshalJSON ¶

func (v NullableRestChangeConflictTheirChange) MarshalJSON() ([]byte, error)

func (*NullableRestChangeConflictTheirChange) Set ¶

func (*NullableRestChangeConflictTheirChange) UnmarshalJSON ¶

func (v *NullableRestChangeConflictTheirChange) UnmarshalJSON(src []byte) error

func (*NullableRestChangeConflictTheirChange) Unset ¶

type NullableRestChangeset ¶

type NullableRestChangeset struct {
	// contains filtered or unexported fields
}

func NewNullableRestChangeset ¶

func NewNullableRestChangeset(val *RestChangeset) *NullableRestChangeset

func (NullableRestChangeset) Get ¶

func (NullableRestChangeset) IsSet ¶

func (v NullableRestChangeset) IsSet() bool

func (NullableRestChangeset) MarshalJSON ¶

func (v NullableRestChangeset) MarshalJSON() ([]byte, error)

func (*NullableRestChangeset) Set ¶

func (v *NullableRestChangeset) Set(val *RestChangeset)

func (*NullableRestChangeset) UnmarshalJSON ¶

func (v *NullableRestChangeset) UnmarshalJSON(src []byte) error

func (*NullableRestChangeset) Unset ¶

func (v *NullableRestChangeset) Unset()

type NullableRestChangesetChanges ¶

type NullableRestChangesetChanges struct {
	// contains filtered or unexported fields
}

func (NullableRestChangesetChanges) Get ¶

func (NullableRestChangesetChanges) IsSet ¶

func (NullableRestChangesetChanges) MarshalJSON ¶

func (v NullableRestChangesetChanges) MarshalJSON() ([]byte, error)

func (*NullableRestChangesetChanges) Set ¶

func (*NullableRestChangesetChanges) UnmarshalJSON ¶

func (v *NullableRestChangesetChanges) UnmarshalJSON(src []byte) error

func (*NullableRestChangesetChanges) Unset ¶

func (v *NullableRestChangesetChanges) Unset()

type NullableRestChangesetFromCommit ¶

type NullableRestChangesetFromCommit struct {
	// contains filtered or unexported fields
}

func (NullableRestChangesetFromCommit) Get ¶

func (NullableRestChangesetFromCommit) IsSet ¶

func (NullableRestChangesetFromCommit) MarshalJSON ¶

func (v NullableRestChangesetFromCommit) MarshalJSON() ([]byte, error)

func (*NullableRestChangesetFromCommit) Set ¶

func (*NullableRestChangesetFromCommit) UnmarshalJSON ¶

func (v *NullableRestChangesetFromCommit) UnmarshalJSON(src []byte) error

func (*NullableRestChangesetFromCommit) Unset ¶

type NullableRestChangesetToCommit ¶

type NullableRestChangesetToCommit struct {
	// contains filtered or unexported fields
}

func (NullableRestChangesetToCommit) Get ¶

func (NullableRestChangesetToCommit) IsSet ¶

func (NullableRestChangesetToCommit) MarshalJSON ¶

func (v NullableRestChangesetToCommit) MarshalJSON() ([]byte, error)

func (*NullableRestChangesetToCommit) Set ¶

func (*NullableRestChangesetToCommit) UnmarshalJSON ¶

func (v *NullableRestChangesetToCommit) UnmarshalJSON(src []byte) error

func (*NullableRestChangesetToCommit) Unset ¶

func (v *NullableRestChangesetToCommit) Unset()

type NullableRestChangesetToCommitCommitter ¶

type NullableRestChangesetToCommitCommitter struct {
	// contains filtered or unexported fields
}

func (NullableRestChangesetToCommitCommitter) Get ¶

func (NullableRestChangesetToCommitCommitter) IsSet ¶

func (NullableRestChangesetToCommitCommitter) MarshalJSON ¶

func (v NullableRestChangesetToCommitCommitter) MarshalJSON() ([]byte, error)

func (*NullableRestChangesetToCommitCommitter) Set ¶

func (*NullableRestChangesetToCommitCommitter) UnmarshalJSON ¶

func (v *NullableRestChangesetToCommitCommitter) UnmarshalJSON(src []byte) error

func (*NullableRestChangesetToCommitCommitter) Unset ¶

type NullableRestClusterInformation ¶

type NullableRestClusterInformation struct {
	// contains filtered or unexported fields
}

func (NullableRestClusterInformation) Get ¶

func (NullableRestClusterInformation) IsSet ¶

func (NullableRestClusterInformation) MarshalJSON ¶

func (v NullableRestClusterInformation) MarshalJSON() ([]byte, error)

func (*NullableRestClusterInformation) Set ¶

func (*NullableRestClusterInformation) UnmarshalJSON ¶

func (v *NullableRestClusterInformation) UnmarshalJSON(src []byte) error

func (*NullableRestClusterInformation) Unset ¶

func (v *NullableRestClusterInformation) Unset()

type NullableRestClusterInformationLocalNode ¶

type NullableRestClusterInformationLocalNode struct {
	// contains filtered or unexported fields
}

func (NullableRestClusterInformationLocalNode) Get ¶

func (NullableRestClusterInformationLocalNode) IsSet ¶

func (NullableRestClusterInformationLocalNode) MarshalJSON ¶

func (v NullableRestClusterInformationLocalNode) MarshalJSON() ([]byte, error)

func (*NullableRestClusterInformationLocalNode) Set ¶

func (*NullableRestClusterInformationLocalNode) UnmarshalJSON ¶

func (v *NullableRestClusterInformationLocalNode) UnmarshalJSON(src []byte) error

func (*NullableRestClusterInformationLocalNode) Unset ¶

type NullableRestClusterNode ¶

type NullableRestClusterNode struct {
	// contains filtered or unexported fields
}

func NewNullableRestClusterNode ¶

func NewNullableRestClusterNode(val *RestClusterNode) *NullableRestClusterNode

func (NullableRestClusterNode) Get ¶

func (NullableRestClusterNode) IsSet ¶

func (v NullableRestClusterNode) IsSet() bool

func (NullableRestClusterNode) MarshalJSON ¶

func (v NullableRestClusterNode) MarshalJSON() ([]byte, error)

func (*NullableRestClusterNode) Set ¶

func (*NullableRestClusterNode) UnmarshalJSON ¶

func (v *NullableRestClusterNode) UnmarshalJSON(src []byte) error

func (*NullableRestClusterNode) Unset ¶

func (v *NullableRestClusterNode) Unset()

type NullableRestClusterNodeAddress ¶

type NullableRestClusterNodeAddress struct {
	// contains filtered or unexported fields
}

func (NullableRestClusterNodeAddress) Get ¶

func (NullableRestClusterNodeAddress) IsSet ¶

func (NullableRestClusterNodeAddress) MarshalJSON ¶

func (v NullableRestClusterNodeAddress) MarshalJSON() ([]byte, error)

func (*NullableRestClusterNodeAddress) Set ¶

func (*NullableRestClusterNodeAddress) UnmarshalJSON ¶

func (v *NullableRestClusterNodeAddress) UnmarshalJSON(src []byte) error

func (*NullableRestClusterNodeAddress) Unset ¶

func (v *NullableRestClusterNodeAddress) Unset()

type NullableRestComment ¶

type NullableRestComment struct {
	// contains filtered or unexported fields
}

func NewNullableRestComment ¶

func NewNullableRestComment(val *RestComment) *NullableRestComment

func (NullableRestComment) Get ¶

func (NullableRestComment) IsSet ¶

func (v NullableRestComment) IsSet() bool

func (NullableRestComment) MarshalJSON ¶

func (v NullableRestComment) MarshalJSON() ([]byte, error)

func (*NullableRestComment) Set ¶

func (v *NullableRestComment) Set(val *RestComment)

func (*NullableRestComment) UnmarshalJSON ¶

func (v *NullableRestComment) UnmarshalJSON(src []byte) error

func (*NullableRestComment) Unset ¶

func (v *NullableRestComment) Unset()

type NullableRestCommentJiraIssue ¶

type NullableRestCommentJiraIssue struct {
	// contains filtered or unexported fields
}

func (NullableRestCommentJiraIssue) Get ¶

func (NullableRestCommentJiraIssue) IsSet ¶

func (NullableRestCommentJiraIssue) MarshalJSON ¶

func (v NullableRestCommentJiraIssue) MarshalJSON() ([]byte, error)

func (*NullableRestCommentJiraIssue) Set ¶

func (*NullableRestCommentJiraIssue) UnmarshalJSON ¶

func (v *NullableRestCommentJiraIssue) UnmarshalJSON(src []byte) error

func (*NullableRestCommentJiraIssue) Unset ¶

func (v *NullableRestCommentJiraIssue) Unset()

type NullableRestCommentThreadDiffAnchor ¶

type NullableRestCommentThreadDiffAnchor struct {
	// contains filtered or unexported fields
}

func (NullableRestCommentThreadDiffAnchor) Get ¶

func (NullableRestCommentThreadDiffAnchor) IsSet ¶

func (NullableRestCommentThreadDiffAnchor) MarshalJSON ¶

func (v NullableRestCommentThreadDiffAnchor) MarshalJSON() ([]byte, error)

func (*NullableRestCommentThreadDiffAnchor) Set ¶

func (*NullableRestCommentThreadDiffAnchor) UnmarshalJSON ¶

func (v *NullableRestCommentThreadDiffAnchor) UnmarshalJSON(src []byte) error

func (*NullableRestCommentThreadDiffAnchor) Unset ¶

type NullableRestCommentThreadDiffAnchorPath ¶

type NullableRestCommentThreadDiffAnchorPath struct {
	// contains filtered or unexported fields
}

func (NullableRestCommentThreadDiffAnchorPath) Get ¶

func (NullableRestCommentThreadDiffAnchorPath) IsSet ¶

func (NullableRestCommentThreadDiffAnchorPath) MarshalJSON ¶

func (v NullableRestCommentThreadDiffAnchorPath) MarshalJSON() ([]byte, error)

func (*NullableRestCommentThreadDiffAnchorPath) Set ¶

func (*NullableRestCommentThreadDiffAnchorPath) UnmarshalJSON ¶

func (v *NullableRestCommentThreadDiffAnchorPath) UnmarshalJSON(src []byte) error

func (*NullableRestCommentThreadDiffAnchorPath) Unset ¶

type NullableRestCommentThreadDiffAnchorPullRequest ¶

type NullableRestCommentThreadDiffAnchorPullRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestCommentThreadDiffAnchorPullRequest) Get ¶

func (NullableRestCommentThreadDiffAnchorPullRequest) IsSet ¶

func (NullableRestCommentThreadDiffAnchorPullRequest) MarshalJSON ¶

func (*NullableRestCommentThreadDiffAnchorPullRequest) Set ¶

func (*NullableRestCommentThreadDiffAnchorPullRequest) UnmarshalJSON ¶

func (*NullableRestCommentThreadDiffAnchorPullRequest) Unset ¶

type NullableRestCommit ¶

type NullableRestCommit struct {
	// contains filtered or unexported fields
}

func NewNullableRestCommit ¶

func NewNullableRestCommit(val *RestCommit) *NullableRestCommit

func (NullableRestCommit) Get ¶

func (v NullableRestCommit) Get() *RestCommit

func (NullableRestCommit) IsSet ¶

func (v NullableRestCommit) IsSet() bool

func (NullableRestCommit) MarshalJSON ¶

func (v NullableRestCommit) MarshalJSON() ([]byte, error)

func (*NullableRestCommit) Set ¶

func (v *NullableRestCommit) Set(val *RestCommit)

func (*NullableRestCommit) UnmarshalJSON ¶

func (v *NullableRestCommit) UnmarshalJSON(src []byte) error

func (*NullableRestCommit) Unset ¶

func (v *NullableRestCommit) Unset()

type NullableRestCommitMessageSuggestion ¶

type NullableRestCommitMessageSuggestion struct {
	// contains filtered or unexported fields
}

func (NullableRestCommitMessageSuggestion) Get ¶

func (NullableRestCommitMessageSuggestion) IsSet ¶

func (NullableRestCommitMessageSuggestion) MarshalJSON ¶

func (v NullableRestCommitMessageSuggestion) MarshalJSON() ([]byte, error)

func (*NullableRestCommitMessageSuggestion) Set ¶

func (*NullableRestCommitMessageSuggestion) UnmarshalJSON ¶

func (v *NullableRestCommitMessageSuggestion) UnmarshalJSON(src []byte) error

func (*NullableRestCommitMessageSuggestion) Unset ¶

type NullableRestConflict ¶

type NullableRestConflict struct {
	// contains filtered or unexported fields
}

func NewNullableRestConflict ¶

func NewNullableRestConflict(val *RestConflict) *NullableRestConflict

func (NullableRestConflict) Get ¶

func (NullableRestConflict) IsSet ¶

func (v NullableRestConflict) IsSet() bool

func (NullableRestConflict) MarshalJSON ¶

func (v NullableRestConflict) MarshalJSON() ([]byte, error)

func (*NullableRestConflict) Set ¶

func (v *NullableRestConflict) Set(val *RestConflict)

func (*NullableRestConflict) UnmarshalJSON ¶

func (v *NullableRestConflict) UnmarshalJSON(src []byte) error

func (*NullableRestConflict) Unset ¶

func (v *NullableRestConflict) Unset()

type NullableRestConflictChange ¶

type NullableRestConflictChange struct {
	// contains filtered or unexported fields
}

func NewNullableRestConflictChange ¶

func NewNullableRestConflictChange(val *RestConflictChange) *NullableRestConflictChange

func (NullableRestConflictChange) Get ¶

func (NullableRestConflictChange) IsSet ¶

func (v NullableRestConflictChange) IsSet() bool

func (NullableRestConflictChange) MarshalJSON ¶

func (v NullableRestConflictChange) MarshalJSON() ([]byte, error)

func (*NullableRestConflictChange) Set ¶

func (*NullableRestConflictChange) UnmarshalJSON ¶

func (v *NullableRestConflictChange) UnmarshalJSON(src []byte) error

func (*NullableRestConflictChange) Unset ¶

func (v *NullableRestConflictChange) Unset()

type NullableRestConnectivitySummary ¶

type NullableRestConnectivitySummary struct {
	// contains filtered or unexported fields
}

func (NullableRestConnectivitySummary) Get ¶

func (NullableRestConnectivitySummary) IsSet ¶

func (NullableRestConnectivitySummary) MarshalJSON ¶

func (v NullableRestConnectivitySummary) MarshalJSON() ([]byte, error)

func (*NullableRestConnectivitySummary) Set ¶

func (*NullableRestConnectivitySummary) UnmarshalJSON ¶

func (v *NullableRestConnectivitySummary) UnmarshalJSON(src []byte) error

func (*NullableRestConnectivitySummary) Unset ¶

type NullableRestCreateBranchRequest ¶

type NullableRestCreateBranchRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestCreateBranchRequest) Get ¶

func (NullableRestCreateBranchRequest) IsSet ¶

func (NullableRestCreateBranchRequest) MarshalJSON ¶

func (v NullableRestCreateBranchRequest) MarshalJSON() ([]byte, error)

func (*NullableRestCreateBranchRequest) Set ¶

func (*NullableRestCreateBranchRequest) UnmarshalJSON ¶

func (v *NullableRestCreateBranchRequest) UnmarshalJSON(src []byte) error

func (*NullableRestCreateBranchRequest) Unset ¶

type NullableRestCreateTagRequest ¶

type NullableRestCreateTagRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestCreateTagRequest) Get ¶

func (NullableRestCreateTagRequest) IsSet ¶

func (NullableRestCreateTagRequest) MarshalJSON ¶

func (v NullableRestCreateTagRequest) MarshalJSON() ([]byte, error)

func (*NullableRestCreateTagRequest) Set ¶

func (*NullableRestCreateTagRequest) UnmarshalJSON ¶

func (v *NullableRestCreateTagRequest) UnmarshalJSON(src []byte) error

func (*NullableRestCreateTagRequest) Unset ¶

func (v *NullableRestCreateTagRequest) Unset()

type NullableRestDefaultBranch ¶

type NullableRestDefaultBranch struct {
	// contains filtered or unexported fields
}

func NewNullableRestDefaultBranch ¶

func NewNullableRestDefaultBranch(val *RestDefaultBranch) *NullableRestDefaultBranch

func (NullableRestDefaultBranch) Get ¶

func (NullableRestDefaultBranch) IsSet ¶

func (v NullableRestDefaultBranch) IsSet() bool

func (NullableRestDefaultBranch) MarshalJSON ¶

func (v NullableRestDefaultBranch) MarshalJSON() ([]byte, error)

func (*NullableRestDefaultBranch) Set ¶

func (*NullableRestDefaultBranch) UnmarshalJSON ¶

func (v *NullableRestDefaultBranch) UnmarshalJSON(src []byte) error

func (*NullableRestDefaultBranch) Unset ¶

func (v *NullableRestDefaultBranch) Unset()

type NullableRestDefaultReviewersRequest ¶

type NullableRestDefaultReviewersRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestDefaultReviewersRequest) Get ¶

func (NullableRestDefaultReviewersRequest) IsSet ¶

func (NullableRestDefaultReviewersRequest) MarshalJSON ¶

func (v NullableRestDefaultReviewersRequest) MarshalJSON() ([]byte, error)

func (*NullableRestDefaultReviewersRequest) Set ¶

func (*NullableRestDefaultReviewersRequest) UnmarshalJSON ¶

func (v *NullableRestDefaultReviewersRequest) UnmarshalJSON(src []byte) error

func (*NullableRestDefaultReviewersRequest) Unset ¶

type NullableRestDeployment ¶

type NullableRestDeployment struct {
	// contains filtered or unexported fields
}

func NewNullableRestDeployment ¶

func NewNullableRestDeployment(val *RestDeployment) *NullableRestDeployment

func (NullableRestDeployment) Get ¶

func (NullableRestDeployment) IsSet ¶

func (v NullableRestDeployment) IsSet() bool

func (NullableRestDeployment) MarshalJSON ¶

func (v NullableRestDeployment) MarshalJSON() ([]byte, error)

func (*NullableRestDeployment) Set ¶

func (*NullableRestDeployment) UnmarshalJSON ¶

func (v *NullableRestDeployment) UnmarshalJSON(src []byte) error

func (*NullableRestDeployment) Unset ¶

func (v *NullableRestDeployment) Unset()

type NullableRestDeploymentEnvironment ¶

type NullableRestDeploymentEnvironment struct {
	// contains filtered or unexported fields
}

func (NullableRestDeploymentEnvironment) Get ¶

func (NullableRestDeploymentEnvironment) IsSet ¶

func (NullableRestDeploymentEnvironment) MarshalJSON ¶

func (v NullableRestDeploymentEnvironment) MarshalJSON() ([]byte, error)

func (*NullableRestDeploymentEnvironment) Set ¶

func (*NullableRestDeploymentEnvironment) UnmarshalJSON ¶

func (v *NullableRestDeploymentEnvironment) UnmarshalJSON(src []byte) error

func (*NullableRestDeploymentEnvironment) Unset ¶

type NullableRestDeploymentSetRequest ¶

type NullableRestDeploymentSetRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestDeploymentSetRequest) Get ¶

func (NullableRestDeploymentSetRequest) IsSet ¶

func (NullableRestDeploymentSetRequest) MarshalJSON ¶

func (v NullableRestDeploymentSetRequest) MarshalJSON() ([]byte, error)

func (*NullableRestDeploymentSetRequest) Set ¶

func (*NullableRestDeploymentSetRequest) UnmarshalJSON ¶

func (v *NullableRestDeploymentSetRequest) UnmarshalJSON(src []byte) error

func (*NullableRestDeploymentSetRequest) Unset ¶

type NullableRestDetailedGroup ¶

type NullableRestDetailedGroup struct {
	// contains filtered or unexported fields
}

func NewNullableRestDetailedGroup ¶

func NewNullableRestDetailedGroup(val *RestDetailedGroup) *NullableRestDetailedGroup

func (NullableRestDetailedGroup) Get ¶

func (NullableRestDetailedGroup) IsSet ¶

func (v NullableRestDetailedGroup) IsSet() bool

func (NullableRestDetailedGroup) MarshalJSON ¶

func (v NullableRestDetailedGroup) MarshalJSON() ([]byte, error)

func (*NullableRestDetailedGroup) Set ¶

func (*NullableRestDetailedGroup) UnmarshalJSON ¶

func (v *NullableRestDetailedGroup) UnmarshalJSON(src []byte) error

func (*NullableRestDetailedGroup) Unset ¶

func (v *NullableRestDetailedGroup) Unset()

type NullableRestDetailedInvocation ¶

type NullableRestDetailedInvocation struct {
	// contains filtered or unexported fields
}

func (NullableRestDetailedInvocation) Get ¶

func (NullableRestDetailedInvocation) IsSet ¶

func (NullableRestDetailedInvocation) MarshalJSON ¶

func (v NullableRestDetailedInvocation) MarshalJSON() ([]byte, error)

func (*NullableRestDetailedInvocation) Set ¶

func (*NullableRestDetailedInvocation) UnmarshalJSON ¶

func (v *NullableRestDetailedInvocation) UnmarshalJSON(src []byte) error

func (*NullableRestDetailedInvocation) Unset ¶

func (v *NullableRestDetailedInvocation) Unset()

type NullableRestDetailedInvocationEventScope ¶

type NullableRestDetailedInvocationEventScope struct {
	// contains filtered or unexported fields
}

func (NullableRestDetailedInvocationEventScope) Get ¶

func (NullableRestDetailedInvocationEventScope) IsSet ¶

func (NullableRestDetailedInvocationEventScope) MarshalJSON ¶

func (*NullableRestDetailedInvocationEventScope) Set ¶

func (*NullableRestDetailedInvocationEventScope) UnmarshalJSON ¶

func (v *NullableRestDetailedInvocationEventScope) UnmarshalJSON(src []byte) error

func (*NullableRestDetailedInvocationEventScope) Unset ¶

type NullableRestDetailedUser ¶

type NullableRestDetailedUser struct {
	// contains filtered or unexported fields
}

func NewNullableRestDetailedUser ¶

func NewNullableRestDetailedUser(val *RestDetailedUser) *NullableRestDetailedUser

func (NullableRestDetailedUser) Get ¶

func (NullableRestDetailedUser) IsSet ¶

func (v NullableRestDetailedUser) IsSet() bool

func (NullableRestDetailedUser) MarshalJSON ¶

func (v NullableRestDetailedUser) MarshalJSON() ([]byte, error)

func (*NullableRestDetailedUser) Set ¶

func (*NullableRestDetailedUser) UnmarshalJSON ¶

func (v *NullableRestDetailedUser) UnmarshalJSON(src []byte) error

func (*NullableRestDetailedUser) Unset ¶

func (v *NullableRestDetailedUser) Unset()

type NullableRestDiff ¶

type NullableRestDiff struct {
	// contains filtered or unexported fields
}

func NewNullableRestDiff ¶

func NewNullableRestDiff(val *RestDiff) *NullableRestDiff

func (NullableRestDiff) Get ¶

func (v NullableRestDiff) Get() *RestDiff

func (NullableRestDiff) IsSet ¶

func (v NullableRestDiff) IsSet() bool

func (NullableRestDiff) MarshalJSON ¶

func (v NullableRestDiff) MarshalJSON() ([]byte, error)

func (*NullableRestDiff) Set ¶

func (v *NullableRestDiff) Set(val *RestDiff)

func (*NullableRestDiff) UnmarshalJSON ¶

func (v *NullableRestDiff) UnmarshalJSON(src []byte) error

func (*NullableRestDiff) Unset ¶

func (v *NullableRestDiff) Unset()

type NullableRestDiffHunk ¶

type NullableRestDiffHunk struct {
	// contains filtered or unexported fields
}

func NewNullableRestDiffHunk ¶

func NewNullableRestDiffHunk(val *RestDiffHunk) *NullableRestDiffHunk

func (NullableRestDiffHunk) Get ¶

func (NullableRestDiffHunk) IsSet ¶

func (v NullableRestDiffHunk) IsSet() bool

func (NullableRestDiffHunk) MarshalJSON ¶

func (v NullableRestDiffHunk) MarshalJSON() ([]byte, error)

func (*NullableRestDiffHunk) Set ¶

func (v *NullableRestDiffHunk) Set(val *RestDiffHunk)

func (*NullableRestDiffHunk) UnmarshalJSON ¶

func (v *NullableRestDiffHunk) UnmarshalJSON(src []byte) error

func (*NullableRestDiffHunk) Unset ¶

func (v *NullableRestDiffHunk) Unset()

type NullableRestDiffLine ¶

type NullableRestDiffLine struct {
	// contains filtered or unexported fields
}

func NewNullableRestDiffLine ¶

func NewNullableRestDiffLine(val *RestDiffLine) *NullableRestDiffLine

func (NullableRestDiffLine) Get ¶

func (NullableRestDiffLine) IsSet ¶

func (v NullableRestDiffLine) IsSet() bool

func (NullableRestDiffLine) MarshalJSON ¶

func (v NullableRestDiffLine) MarshalJSON() ([]byte, error)

func (*NullableRestDiffLine) Set ¶

func (v *NullableRestDiffLine) Set(val *RestDiffLine)

func (*NullableRestDiffLine) UnmarshalJSON ¶

func (v *NullableRestDiffLine) UnmarshalJSON(src []byte) error

func (*NullableRestDiffLine) Unset ¶

func (v *NullableRestDiffLine) Unset()

type NullableRestDiffSegment ¶

type NullableRestDiffSegment struct {
	// contains filtered or unexported fields
}

func NewNullableRestDiffSegment ¶

func NewNullableRestDiffSegment(val *RestDiffSegment) *NullableRestDiffSegment

func (NullableRestDiffSegment) Get ¶

func (NullableRestDiffSegment) IsSet ¶

func (v NullableRestDiffSegment) IsSet() bool

func (NullableRestDiffSegment) MarshalJSON ¶

func (v NullableRestDiffSegment) MarshalJSON() ([]byte, error)

func (*NullableRestDiffSegment) Set ¶

func (*NullableRestDiffSegment) UnmarshalJSON ¶

func (v *NullableRestDiffSegment) UnmarshalJSON(src []byte) error

func (*NullableRestDiffSegment) Unset ¶

func (v *NullableRestDiffSegment) Unset()

type NullableRestEmoticon ¶

type NullableRestEmoticon struct {
	// contains filtered or unexported fields
}

func NewNullableRestEmoticon ¶

func NewNullableRestEmoticon(val *RestEmoticon) *NullableRestEmoticon

func (NullableRestEmoticon) Get ¶

func (NullableRestEmoticon) IsSet ¶

func (v NullableRestEmoticon) IsSet() bool

func (NullableRestEmoticon) MarshalJSON ¶

func (v NullableRestEmoticon) MarshalJSON() ([]byte, error)

func (*NullableRestEmoticon) Set ¶

func (v *NullableRestEmoticon) Set(val *RestEmoticon)

func (*NullableRestEmoticon) UnmarshalJSON ¶

func (v *NullableRestEmoticon) UnmarshalJSON(src []byte) error

func (*NullableRestEmoticon) Unset ¶

func (v *NullableRestEmoticon) Unset()
type NullableRestEnhancedEntityLink struct {
	// contains filtered or unexported fields
}

func (NullableRestEnhancedEntityLink) Get ¶

func (NullableRestEnhancedEntityLink) IsSet ¶

func (NullableRestEnhancedEntityLink) MarshalJSON ¶

func (v NullableRestEnhancedEntityLink) MarshalJSON() ([]byte, error)

func (*NullableRestEnhancedEntityLink) Set ¶

func (*NullableRestEnhancedEntityLink) UnmarshalJSON ¶

func (v *NullableRestEnhancedEntityLink) UnmarshalJSON(src []byte) error

func (*NullableRestEnhancedEntityLink) Unset ¶

func (v *NullableRestEnhancedEntityLink) Unset()

type NullableRestErasedUser ¶

type NullableRestErasedUser struct {
	// contains filtered or unexported fields
}

func NewNullableRestErasedUser ¶

func NewNullableRestErasedUser(val *RestErasedUser) *NullableRestErasedUser

func (NullableRestErasedUser) Get ¶

func (NullableRestErasedUser) IsSet ¶

func (v NullableRestErasedUser) IsSet() bool

func (NullableRestErasedUser) MarshalJSON ¶

func (v NullableRestErasedUser) MarshalJSON() ([]byte, error)

func (*NullableRestErasedUser) Set ¶

func (*NullableRestErasedUser) UnmarshalJSON ¶

func (v *NullableRestErasedUser) UnmarshalJSON(src []byte) error

func (*NullableRestErasedUser) Unset ¶

func (v *NullableRestErasedUser) Unset()

type NullableRestErrorMessage ¶

type NullableRestErrorMessage struct {
	// contains filtered or unexported fields
}

func NewNullableRestErrorMessage ¶

func NewNullableRestErrorMessage(val *RestErrorMessage) *NullableRestErrorMessage

func (NullableRestErrorMessage) Get ¶

func (NullableRestErrorMessage) IsSet ¶

func (v NullableRestErrorMessage) IsSet() bool

func (NullableRestErrorMessage) MarshalJSON ¶

func (v NullableRestErrorMessage) MarshalJSON() ([]byte, error)

func (*NullableRestErrorMessage) Set ¶

func (*NullableRestErrorMessage) UnmarshalJSON ¶

func (v *NullableRestErrorMessage) UnmarshalJSON(src []byte) error

func (*NullableRestErrorMessage) Unset ¶

func (v *NullableRestErrorMessage) Unset()

type NullableRestErrors ¶

type NullableRestErrors struct {
	// contains filtered or unexported fields
}

func NewNullableRestErrors ¶

func NewNullableRestErrors(val *RestErrors) *NullableRestErrors

func (NullableRestErrors) Get ¶

func (v NullableRestErrors) Get() *RestErrors

func (NullableRestErrors) IsSet ¶

func (v NullableRestErrors) IsSet() bool

func (NullableRestErrors) MarshalJSON ¶

func (v NullableRestErrors) MarshalJSON() ([]byte, error)

func (*NullableRestErrors) Set ¶

func (v *NullableRestErrors) Set(val *RestErrors)

func (*NullableRestErrors) UnmarshalJSON ¶

func (v *NullableRestErrors) UnmarshalJSON(src []byte) error

func (*NullableRestErrors) Unset ¶

func (v *NullableRestErrors) Unset()

type NullableRestExportRequest ¶

type NullableRestExportRequest struct {
	// contains filtered or unexported fields
}

func NewNullableRestExportRequest ¶

func NewNullableRestExportRequest(val *RestExportRequest) *NullableRestExportRequest

func (NullableRestExportRequest) Get ¶

func (NullableRestExportRequest) IsSet ¶

func (v NullableRestExportRequest) IsSet() bool

func (NullableRestExportRequest) MarshalJSON ¶

func (v NullableRestExportRequest) MarshalJSON() ([]byte, error)

func (*NullableRestExportRequest) Set ¶

func (*NullableRestExportRequest) UnmarshalJSON ¶

func (v *NullableRestExportRequest) UnmarshalJSON(src []byte) error

func (*NullableRestExportRequest) Unset ¶

func (v *NullableRestExportRequest) Unset()

type NullableRestExportRequestRepositoriesRequest ¶

type NullableRestExportRequestRepositoriesRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestExportRequestRepositoriesRequest) Get ¶

func (NullableRestExportRequestRepositoriesRequest) IsSet ¶

func (NullableRestExportRequestRepositoriesRequest) MarshalJSON ¶

func (*NullableRestExportRequestRepositoriesRequest) Set ¶

func (*NullableRestExportRequestRepositoriesRequest) UnmarshalJSON ¶

func (*NullableRestExportRequestRepositoriesRequest) Unset ¶

type NullableRestFarmSynchronizationRequest ¶

type NullableRestFarmSynchronizationRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestFarmSynchronizationRequest) Get ¶

func (NullableRestFarmSynchronizationRequest) IsSet ¶

func (NullableRestFarmSynchronizationRequest) MarshalJSON ¶

func (v NullableRestFarmSynchronizationRequest) MarshalJSON() ([]byte, error)

func (*NullableRestFarmSynchronizationRequest) Set ¶

func (*NullableRestFarmSynchronizationRequest) UnmarshalJSON ¶

func (v *NullableRestFarmSynchronizationRequest) UnmarshalJSON(src []byte) error

func (*NullableRestFarmSynchronizationRequest) Unset ¶

type NullableRestGitTagCreateRequest ¶

type NullableRestGitTagCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestGitTagCreateRequest) Get ¶

func (NullableRestGitTagCreateRequest) IsSet ¶

func (NullableRestGitTagCreateRequest) MarshalJSON ¶

func (v NullableRestGitTagCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableRestGitTagCreateRequest) Set ¶

func (*NullableRestGitTagCreateRequest) UnmarshalJSON ¶

func (v *NullableRestGitTagCreateRequest) UnmarshalJSON(src []byte) error

func (*NullableRestGitTagCreateRequest) Unset ¶

type NullableRestGpgKey ¶

type NullableRestGpgKey struct {
	// contains filtered or unexported fields
}

func NewNullableRestGpgKey ¶

func NewNullableRestGpgKey(val *RestGpgKey) *NullableRestGpgKey

func (NullableRestGpgKey) Get ¶

func (v NullableRestGpgKey) Get() *RestGpgKey

func (NullableRestGpgKey) IsSet ¶

func (v NullableRestGpgKey) IsSet() bool

func (NullableRestGpgKey) MarshalJSON ¶

func (v NullableRestGpgKey) MarshalJSON() ([]byte, error)

func (*NullableRestGpgKey) Set ¶

func (v *NullableRestGpgKey) Set(val *RestGpgKey)

func (*NullableRestGpgKey) UnmarshalJSON ¶

func (v *NullableRestGpgKey) UnmarshalJSON(src []byte) error

func (*NullableRestGpgKey) Unset ¶

func (v *NullableRestGpgKey) Unset()

type NullableRestGpgSubKey ¶

type NullableRestGpgSubKey struct {
	// contains filtered or unexported fields
}

func NewNullableRestGpgSubKey ¶

func NewNullableRestGpgSubKey(val *RestGpgSubKey) *NullableRestGpgSubKey

func (NullableRestGpgSubKey) Get ¶

func (NullableRestGpgSubKey) IsSet ¶

func (v NullableRestGpgSubKey) IsSet() bool

func (NullableRestGpgSubKey) MarshalJSON ¶

func (v NullableRestGpgSubKey) MarshalJSON() ([]byte, error)

func (*NullableRestGpgSubKey) Set ¶

func (v *NullableRestGpgSubKey) Set(val *RestGpgSubKey)

func (*NullableRestGpgSubKey) UnmarshalJSON ¶

func (v *NullableRestGpgSubKey) UnmarshalJSON(src []byte) error

func (*NullableRestGpgSubKey) Unset ¶

func (v *NullableRestGpgSubKey) Unset()

type NullableRestHookScript ¶

type NullableRestHookScript struct {
	// contains filtered or unexported fields
}

func NewNullableRestHookScript ¶

func NewNullableRestHookScript(val *RestHookScript) *NullableRestHookScript

func (NullableRestHookScript) Get ¶

func (NullableRestHookScript) IsSet ¶

func (v NullableRestHookScript) IsSet() bool

func (NullableRestHookScript) MarshalJSON ¶

func (v NullableRestHookScript) MarshalJSON() ([]byte, error)

func (*NullableRestHookScript) Set ¶

func (*NullableRestHookScript) UnmarshalJSON ¶

func (v *NullableRestHookScript) UnmarshalJSON(src []byte) error

func (*NullableRestHookScript) Unset ¶

func (v *NullableRestHookScript) Unset()

type NullableRestHookScriptConfig ¶

type NullableRestHookScriptConfig struct {
	// contains filtered or unexported fields
}

func (NullableRestHookScriptConfig) Get ¶

func (NullableRestHookScriptConfig) IsSet ¶

func (NullableRestHookScriptConfig) MarshalJSON ¶

func (v NullableRestHookScriptConfig) MarshalJSON() ([]byte, error)

func (*NullableRestHookScriptConfig) Set ¶

func (*NullableRestHookScriptConfig) UnmarshalJSON ¶

func (v *NullableRestHookScriptConfig) UnmarshalJSON(src []byte) error

func (*NullableRestHookScriptConfig) Unset ¶

func (v *NullableRestHookScriptConfig) Unset()

type NullableRestHookScriptConfigScript ¶

type NullableRestHookScriptConfigScript struct {
	// contains filtered or unexported fields
}

func (NullableRestHookScriptConfigScript) Get ¶

func (NullableRestHookScriptConfigScript) IsSet ¶

func (NullableRestHookScriptConfigScript) MarshalJSON ¶

func (v NullableRestHookScriptConfigScript) MarshalJSON() ([]byte, error)

func (*NullableRestHookScriptConfigScript) Set ¶

func (*NullableRestHookScriptConfigScript) UnmarshalJSON ¶

func (v *NullableRestHookScriptConfigScript) UnmarshalJSON(src []byte) error

func (*NullableRestHookScriptConfigScript) Unset ¶

type NullableRestHookScriptTriggers ¶

type NullableRestHookScriptTriggers struct {
	// contains filtered or unexported fields
}

func (NullableRestHookScriptTriggers) Get ¶

func (NullableRestHookScriptTriggers) IsSet ¶

func (NullableRestHookScriptTriggers) MarshalJSON ¶

func (v NullableRestHookScriptTriggers) MarshalJSON() ([]byte, error)

func (*NullableRestHookScriptTriggers) Set ¶

func (*NullableRestHookScriptTriggers) UnmarshalJSON ¶

func (v *NullableRestHookScriptTriggers) UnmarshalJSON(src []byte) error

func (*NullableRestHookScriptTriggers) Unset ¶

func (v *NullableRestHookScriptTriggers) Unset()

type NullableRestImportRequest ¶

type NullableRestImportRequest struct {
	// contains filtered or unexported fields
}

func NewNullableRestImportRequest ¶

func NewNullableRestImportRequest(val *RestImportRequest) *NullableRestImportRequest

func (NullableRestImportRequest) Get ¶

func (NullableRestImportRequest) IsSet ¶

func (v NullableRestImportRequest) IsSet() bool

func (NullableRestImportRequest) MarshalJSON ¶

func (v NullableRestImportRequest) MarshalJSON() ([]byte, error)

func (*NullableRestImportRequest) Set ¶

func (*NullableRestImportRequest) UnmarshalJSON ¶

func (v *NullableRestImportRequest) UnmarshalJSON(src []byte) error

func (*NullableRestImportRequest) Unset ¶

func (v *NullableRestImportRequest) Unset()

type NullableRestInsightAnnotation ¶

type NullableRestInsightAnnotation struct {
	// contains filtered or unexported fields
}

func (NullableRestInsightAnnotation) Get ¶

func (NullableRestInsightAnnotation) IsSet ¶

func (NullableRestInsightAnnotation) MarshalJSON ¶

func (v NullableRestInsightAnnotation) MarshalJSON() ([]byte, error)

func (*NullableRestInsightAnnotation) Set ¶

func (*NullableRestInsightAnnotation) UnmarshalJSON ¶

func (v *NullableRestInsightAnnotation) UnmarshalJSON(src []byte) error

func (*NullableRestInsightAnnotation) Unset ¶

func (v *NullableRestInsightAnnotation) Unset()

type NullableRestInsightAnnotationsResponse ¶

type NullableRestInsightAnnotationsResponse struct {
	// contains filtered or unexported fields
}

func (NullableRestInsightAnnotationsResponse) Get ¶

func (NullableRestInsightAnnotationsResponse) IsSet ¶

func (NullableRestInsightAnnotationsResponse) MarshalJSON ¶

func (v NullableRestInsightAnnotationsResponse) MarshalJSON() ([]byte, error)

func (*NullableRestInsightAnnotationsResponse) Set ¶

func (*NullableRestInsightAnnotationsResponse) UnmarshalJSON ¶

func (v *NullableRestInsightAnnotationsResponse) UnmarshalJSON(src []byte) error

func (*NullableRestInsightAnnotationsResponse) Unset ¶

type NullableRestInsightReport ¶

type NullableRestInsightReport struct {
	// contains filtered or unexported fields
}

func NewNullableRestInsightReport ¶

func NewNullableRestInsightReport(val *RestInsightReport) *NullableRestInsightReport

func (NullableRestInsightReport) Get ¶

func (NullableRestInsightReport) IsSet ¶

func (v NullableRestInsightReport) IsSet() bool

func (NullableRestInsightReport) MarshalJSON ¶

func (v NullableRestInsightReport) MarshalJSON() ([]byte, error)

func (*NullableRestInsightReport) Set ¶

func (*NullableRestInsightReport) UnmarshalJSON ¶

func (v *NullableRestInsightReport) UnmarshalJSON(src []byte) error

func (*NullableRestInsightReport) Unset ¶

func (v *NullableRestInsightReport) Unset()

type NullableRestInsightReportData ¶

type NullableRestInsightReportData struct {
	// contains filtered or unexported fields
}

func (NullableRestInsightReportData) Get ¶

func (NullableRestInsightReportData) IsSet ¶

func (NullableRestInsightReportData) MarshalJSON ¶

func (v NullableRestInsightReportData) MarshalJSON() ([]byte, error)

func (*NullableRestInsightReportData) Set ¶

func (*NullableRestInsightReportData) UnmarshalJSON ¶

func (v *NullableRestInsightReportData) UnmarshalJSON(src []byte) error

func (*NullableRestInsightReportData) Unset ¶

func (v *NullableRestInsightReportData) Unset()

type NullableRestJiraIssue ¶

type NullableRestJiraIssue struct {
	// contains filtered or unexported fields
}

func NewNullableRestJiraIssue ¶

func NewNullableRestJiraIssue(val *RestJiraIssue) *NullableRestJiraIssue

func (NullableRestJiraIssue) Get ¶

func (NullableRestJiraIssue) IsSet ¶

func (v NullableRestJiraIssue) IsSet() bool

func (NullableRestJiraIssue) MarshalJSON ¶

func (v NullableRestJiraIssue) MarshalJSON() ([]byte, error)

func (*NullableRestJiraIssue) Set ¶

func (v *NullableRestJiraIssue) Set(val *RestJiraIssue)

func (*NullableRestJiraIssue) UnmarshalJSON ¶

func (v *NullableRestJiraIssue) UnmarshalJSON(src []byte) error

func (*NullableRestJiraIssue) Unset ¶

func (v *NullableRestJiraIssue) Unset()

type NullableRestJob ¶

type NullableRestJob struct {
	// contains filtered or unexported fields
}

func NewNullableRestJob ¶

func NewNullableRestJob(val *RestJob) *NullableRestJob

func (NullableRestJob) Get ¶

func (v NullableRestJob) Get() *RestJob

func (NullableRestJob) IsSet ¶

func (v NullableRestJob) IsSet() bool

func (NullableRestJob) MarshalJSON ¶

func (v NullableRestJob) MarshalJSON() ([]byte, error)

func (*NullableRestJob) Set ¶

func (v *NullableRestJob) Set(val *RestJob)

func (*NullableRestJob) UnmarshalJSON ¶

func (v *NullableRestJob) UnmarshalJSON(src []byte) error

func (*NullableRestJob) Unset ¶

func (v *NullableRestJob) Unset()

type NullableRestJobMessage ¶

type NullableRestJobMessage struct {
	// contains filtered or unexported fields
}

func NewNullableRestJobMessage ¶

func NewNullableRestJobMessage(val *RestJobMessage) *NullableRestJobMessage

func (NullableRestJobMessage) Get ¶

func (NullableRestJobMessage) IsSet ¶

func (v NullableRestJobMessage) IsSet() bool

func (NullableRestJobMessage) MarshalJSON ¶

func (v NullableRestJobMessage) MarshalJSON() ([]byte, error)

func (*NullableRestJobMessage) Set ¶

func (*NullableRestJobMessage) UnmarshalJSON ¶

func (v *NullableRestJobMessage) UnmarshalJSON(src []byte) error

func (*NullableRestJobMessage) Unset ¶

func (v *NullableRestJobMessage) Unset()

type NullableRestJobProgress ¶

type NullableRestJobProgress struct {
	// contains filtered or unexported fields
}

func NewNullableRestJobProgress ¶

func NewNullableRestJobProgress(val *RestJobProgress) *NullableRestJobProgress

func (NullableRestJobProgress) Get ¶

func (NullableRestJobProgress) IsSet ¶

func (v NullableRestJobProgress) IsSet() bool

func (NullableRestJobProgress) MarshalJSON ¶

func (v NullableRestJobProgress) MarshalJSON() ([]byte, error)

func (*NullableRestJobProgress) Set ¶

func (*NullableRestJobProgress) UnmarshalJSON ¶

func (v *NullableRestJobProgress) UnmarshalJSON(src []byte) error

func (*NullableRestJobProgress) Unset ¶

func (v *NullableRestJobProgress) Unset()

type NullableRestLabel ¶

type NullableRestLabel struct {
	// contains filtered or unexported fields
}

func NewNullableRestLabel ¶

func NewNullableRestLabel(val *RestLabel) *NullableRestLabel

func (NullableRestLabel) Get ¶

func (v NullableRestLabel) Get() *RestLabel

func (NullableRestLabel) IsSet ¶

func (v NullableRestLabel) IsSet() bool

func (NullableRestLabel) MarshalJSON ¶

func (v NullableRestLabel) MarshalJSON() ([]byte, error)

func (*NullableRestLabel) Set ¶

func (v *NullableRestLabel) Set(val *RestLabel)

func (*NullableRestLabel) UnmarshalJSON ¶

func (v *NullableRestLabel) UnmarshalJSON(src []byte) error

func (*NullableRestLabel) Unset ¶

func (v *NullableRestLabel) Unset()

type NullableRestLabelable ¶

type NullableRestLabelable struct {
	// contains filtered or unexported fields
}

func NewNullableRestLabelable ¶

func NewNullableRestLabelable(val *RestLabelable) *NullableRestLabelable

func (NullableRestLabelable) Get ¶

func (NullableRestLabelable) IsSet ¶

func (v NullableRestLabelable) IsSet() bool

func (NullableRestLabelable) MarshalJSON ¶

func (v NullableRestLabelable) MarshalJSON() ([]byte, error)

func (*NullableRestLabelable) Set ¶

func (v *NullableRestLabelable) Set(val *RestLabelable)

func (*NullableRestLabelable) UnmarshalJSON ¶

func (v *NullableRestLabelable) UnmarshalJSON(src []byte) error

func (*NullableRestLabelable) Unset ¶

func (v *NullableRestLabelable) Unset()

type NullableRestLogLevel ¶

type NullableRestLogLevel struct {
	// contains filtered or unexported fields
}

func NewNullableRestLogLevel ¶

func NewNullableRestLogLevel(val *RestLogLevel) *NullableRestLogLevel

func (NullableRestLogLevel) Get ¶

func (NullableRestLogLevel) IsSet ¶

func (v NullableRestLogLevel) IsSet() bool

func (NullableRestLogLevel) MarshalJSON ¶

func (v NullableRestLogLevel) MarshalJSON() ([]byte, error)

func (*NullableRestLogLevel) Set ¶

func (v *NullableRestLogLevel) Set(val *RestLogLevel)

func (*NullableRestLogLevel) UnmarshalJSON ¶

func (v *NullableRestLogLevel) UnmarshalJSON(src []byte) error

func (*NullableRestLogLevel) Unset ¶

func (v *NullableRestLogLevel) Unset()

type NullableRestMailConfiguration ¶

type NullableRestMailConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableRestMailConfiguration) Get ¶

func (NullableRestMailConfiguration) IsSet ¶

func (NullableRestMailConfiguration) MarshalJSON ¶

func (v NullableRestMailConfiguration) MarshalJSON() ([]byte, error)

func (*NullableRestMailConfiguration) Set ¶

func (*NullableRestMailConfiguration) UnmarshalJSON ¶

func (v *NullableRestMailConfiguration) UnmarshalJSON(src []byte) error

func (*NullableRestMailConfiguration) Unset ¶

func (v *NullableRestMailConfiguration) Unset()

type NullableRestMarkup ¶

type NullableRestMarkup struct {
	// contains filtered or unexported fields
}

func NewNullableRestMarkup ¶

func NewNullableRestMarkup(val *RestMarkup) *NullableRestMarkup

func (NullableRestMarkup) Get ¶

func (v NullableRestMarkup) Get() *RestMarkup

func (NullableRestMarkup) IsSet ¶

func (v NullableRestMarkup) IsSet() bool

func (NullableRestMarkup) MarshalJSON ¶

func (v NullableRestMarkup) MarshalJSON() ([]byte, error)

func (*NullableRestMarkup) Set ¶

func (v *NullableRestMarkup) Set(val *RestMarkup)

func (*NullableRestMarkup) UnmarshalJSON ¶

func (v *NullableRestMarkup) UnmarshalJSON(src []byte) error

func (*NullableRestMarkup) Unset ¶

func (v *NullableRestMarkup) Unset()

type NullableRestMeshConnectivityReport ¶

type NullableRestMeshConnectivityReport struct {
	// contains filtered or unexported fields
}

func (NullableRestMeshConnectivityReport) Get ¶

func (NullableRestMeshConnectivityReport) IsSet ¶

func (NullableRestMeshConnectivityReport) MarshalJSON ¶

func (v NullableRestMeshConnectivityReport) MarshalJSON() ([]byte, error)

func (*NullableRestMeshConnectivityReport) Set ¶

func (*NullableRestMeshConnectivityReport) UnmarshalJSON ¶

func (v *NullableRestMeshConnectivityReport) UnmarshalJSON(src []byte) error

func (*NullableRestMeshConnectivityReport) Unset ¶

type NullableRestMeshMigrationRequest ¶

type NullableRestMeshMigrationRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestMeshMigrationRequest) Get ¶

func (NullableRestMeshMigrationRequest) IsSet ¶

func (NullableRestMeshMigrationRequest) MarshalJSON ¶

func (v NullableRestMeshMigrationRequest) MarshalJSON() ([]byte, error)

func (*NullableRestMeshMigrationRequest) Set ¶

func (*NullableRestMeshMigrationRequest) UnmarshalJSON ¶

func (v *NullableRestMeshMigrationRequest) UnmarshalJSON(src []byte) error

func (*NullableRestMeshMigrationRequest) Unset ¶

type NullableRestMeshMigrationSummary ¶

type NullableRestMeshMigrationSummary struct {
	// contains filtered or unexported fields
}

func (NullableRestMeshMigrationSummary) Get ¶

func (NullableRestMeshMigrationSummary) IsSet ¶

func (NullableRestMeshMigrationSummary) MarshalJSON ¶

func (v NullableRestMeshMigrationSummary) MarshalJSON() ([]byte, error)

func (*NullableRestMeshMigrationSummary) Set ¶

func (*NullableRestMeshMigrationSummary) UnmarshalJSON ¶

func (v *NullableRestMeshMigrationSummary) UnmarshalJSON(src []byte) error

func (*NullableRestMeshMigrationSummary) Unset ¶

type NullableRestMeshNode ¶

type NullableRestMeshNode struct {
	// contains filtered or unexported fields
}

func NewNullableRestMeshNode ¶

func NewNullableRestMeshNode(val *RestMeshNode) *NullableRestMeshNode

func (NullableRestMeshNode) Get ¶

func (NullableRestMeshNode) IsSet ¶

func (v NullableRestMeshNode) IsSet() bool

func (NullableRestMeshNode) MarshalJSON ¶

func (v NullableRestMeshNode) MarshalJSON() ([]byte, error)

func (*NullableRestMeshNode) Set ¶

func (v *NullableRestMeshNode) Set(val *RestMeshNode)

func (*NullableRestMeshNode) UnmarshalJSON ¶

func (v *NullableRestMeshNode) UnmarshalJSON(src []byte) error

func (*NullableRestMeshNode) Unset ¶

func (v *NullableRestMeshNode) Unset()

type NullableRestMigrationRepository ¶

type NullableRestMigrationRepository struct {
	// contains filtered or unexported fields
}

func (NullableRestMigrationRepository) Get ¶

func (NullableRestMigrationRepository) IsSet ¶

func (NullableRestMigrationRepository) MarshalJSON ¶

func (v NullableRestMigrationRepository) MarshalJSON() ([]byte, error)

func (*NullableRestMigrationRepository) Set ¶

func (*NullableRestMigrationRepository) UnmarshalJSON ¶

func (v *NullableRestMigrationRepository) UnmarshalJSON(src []byte) error

func (*NullableRestMigrationRepository) Unset ¶

type NullableRestMinimalCommit ¶

type NullableRestMinimalCommit struct {
	// contains filtered or unexported fields
}

func NewNullableRestMinimalCommit ¶

func NewNullableRestMinimalCommit(val *RestMinimalCommit) *NullableRestMinimalCommit

func (NullableRestMinimalCommit) Get ¶

func (NullableRestMinimalCommit) IsSet ¶

func (v NullableRestMinimalCommit) IsSet() bool

func (NullableRestMinimalCommit) MarshalJSON ¶

func (v NullableRestMinimalCommit) MarshalJSON() ([]byte, error)

func (*NullableRestMinimalCommit) Set ¶

func (*NullableRestMinimalCommit) UnmarshalJSON ¶

func (v *NullableRestMinimalCommit) UnmarshalJSON(src []byte) error

func (*NullableRestMinimalCommit) Unset ¶

func (v *NullableRestMinimalCommit) Unset()

type NullableRestMinimalRef ¶

type NullableRestMinimalRef struct {
	// contains filtered or unexported fields
}

func NewNullableRestMinimalRef ¶

func NewNullableRestMinimalRef(val *RestMinimalRef) *NullableRestMinimalRef

func (NullableRestMinimalRef) Get ¶

func (NullableRestMinimalRef) IsSet ¶

func (v NullableRestMinimalRef) IsSet() bool

func (NullableRestMinimalRef) MarshalJSON ¶

func (v NullableRestMinimalRef) MarshalJSON() ([]byte, error)

func (*NullableRestMinimalRef) Set ¶

func (*NullableRestMinimalRef) UnmarshalJSON ¶

func (v *NullableRestMinimalRef) UnmarshalJSON(src []byte) error

func (*NullableRestMinimalRef) Unset ¶

func (v *NullableRestMinimalRef) Unset()

type NullableRestMirrorHashes ¶

type NullableRestMirrorHashes struct {
	// contains filtered or unexported fields
}

func NewNullableRestMirrorHashes ¶

func NewNullableRestMirrorHashes(val *RestMirrorHashes) *NullableRestMirrorHashes

func (NullableRestMirrorHashes) Get ¶

func (NullableRestMirrorHashes) IsSet ¶

func (v NullableRestMirrorHashes) IsSet() bool

func (NullableRestMirrorHashes) MarshalJSON ¶

func (v NullableRestMirrorHashes) MarshalJSON() ([]byte, error)

func (*NullableRestMirrorHashes) Set ¶

func (*NullableRestMirrorHashes) UnmarshalJSON ¶

func (v *NullableRestMirrorHashes) UnmarshalJSON(src []byte) error

func (*NullableRestMirrorHashes) Unset ¶

func (v *NullableRestMirrorHashes) Unset()

type NullableRestMirrorRepositorySynchronizationStatus ¶

type NullableRestMirrorRepositorySynchronizationStatus struct {
	// contains filtered or unexported fields
}

func (NullableRestMirrorRepositorySynchronizationStatus) Get ¶

func (NullableRestMirrorRepositorySynchronizationStatus) IsSet ¶

func (NullableRestMirrorRepositorySynchronizationStatus) MarshalJSON ¶

func (*NullableRestMirrorRepositorySynchronizationStatus) Set ¶

func (*NullableRestMirrorRepositorySynchronizationStatus) UnmarshalJSON ¶

func (*NullableRestMirrorRepositorySynchronizationStatus) Unset ¶

type NullableRestMirrorRepositorySynchronizationStatusHashes ¶

type NullableRestMirrorRepositorySynchronizationStatusHashes struct {
	// contains filtered or unexported fields
}

func (NullableRestMirrorRepositorySynchronizationStatusHashes) Get ¶

func (NullableRestMirrorRepositorySynchronizationStatusHashes) IsSet ¶

func (NullableRestMirrorRepositorySynchronizationStatusHashes) MarshalJSON ¶

func (*NullableRestMirrorRepositorySynchronizationStatusHashes) Set ¶

func (*NullableRestMirrorRepositorySynchronizationStatusHashes) UnmarshalJSON ¶

func (*NullableRestMirrorRepositorySynchronizationStatusHashes) Unset ¶

type NullableRestMirrorServer ¶

type NullableRestMirrorServer struct {
	// contains filtered or unexported fields
}

func NewNullableRestMirrorServer ¶

func NewNullableRestMirrorServer(val *RestMirrorServer) *NullableRestMirrorServer

func (NullableRestMirrorServer) Get ¶

func (NullableRestMirrorServer) IsSet ¶

func (v NullableRestMirrorServer) IsSet() bool

func (NullableRestMirrorServer) MarshalJSON ¶

func (v NullableRestMirrorServer) MarshalJSON() ([]byte, error)

func (*NullableRestMirrorServer) Set ¶

func (*NullableRestMirrorServer) UnmarshalJSON ¶

func (v *NullableRestMirrorServer) UnmarshalJSON(src []byte) error

func (*NullableRestMirrorServer) Unset ¶

func (v *NullableRestMirrorServer) Unset()

type NullableRestMirrorUpgradeRequest ¶

type NullableRestMirrorUpgradeRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestMirrorUpgradeRequest) Get ¶

func (NullableRestMirrorUpgradeRequest) IsSet ¶

func (NullableRestMirrorUpgradeRequest) MarshalJSON ¶

func (v NullableRestMirrorUpgradeRequest) MarshalJSON() ([]byte, error)

func (*NullableRestMirrorUpgradeRequest) Set ¶

func (*NullableRestMirrorUpgradeRequest) UnmarshalJSON ¶

func (v *NullableRestMirrorUpgradeRequest) UnmarshalJSON(src []byte) error

func (*NullableRestMirrorUpgradeRequest) Unset ¶

type NullableRestMirroredRepository ¶

type NullableRestMirroredRepository struct {
	// contains filtered or unexported fields
}

func (NullableRestMirroredRepository) Get ¶

func (NullableRestMirroredRepository) IsSet ¶

func (NullableRestMirroredRepository) MarshalJSON ¶

func (v NullableRestMirroredRepository) MarshalJSON() ([]byte, error)

func (*NullableRestMirroredRepository) Set ¶

func (*NullableRestMirroredRepository) UnmarshalJSON ¶

func (v *NullableRestMirroredRepository) UnmarshalJSON(src []byte) error

func (*NullableRestMirroredRepository) Unset ¶

func (v *NullableRestMirroredRepository) Unset()

type NullableRestMirroredRepositoryDescriptor ¶

type NullableRestMirroredRepositoryDescriptor struct {
	// contains filtered or unexported fields
}

func (NullableRestMirroredRepositoryDescriptor) Get ¶

func (NullableRestMirroredRepositoryDescriptor) IsSet ¶

func (NullableRestMirroredRepositoryDescriptor) MarshalJSON ¶

func (*NullableRestMirroredRepositoryDescriptor) Set ¶

func (*NullableRestMirroredRepositoryDescriptor) UnmarshalJSON ¶

func (v *NullableRestMirroredRepositoryDescriptor) UnmarshalJSON(src []byte) error

func (*NullableRestMirroredRepositoryDescriptor) Unset ¶

type NullableRestMirroredRepositoryDescriptorMirrorServer ¶

type NullableRestMirroredRepositoryDescriptorMirrorServer struct {
	// contains filtered or unexported fields
}

func (NullableRestMirroredRepositoryDescriptorMirrorServer) Get ¶

func (NullableRestMirroredRepositoryDescriptorMirrorServer) IsSet ¶

func (NullableRestMirroredRepositoryDescriptorMirrorServer) MarshalJSON ¶

func (*NullableRestMirroredRepositoryDescriptorMirrorServer) Set ¶

func (*NullableRestMirroredRepositoryDescriptorMirrorServer) UnmarshalJSON ¶

func (*NullableRestMirroredRepositoryDescriptorMirrorServer) Unset ¶

type NullableRestMirroringRequest ¶

type NullableRestMirroringRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestMirroringRequest) Get ¶

func (NullableRestMirroringRequest) IsSet ¶

func (NullableRestMirroringRequest) MarshalJSON ¶

func (v NullableRestMirroringRequest) MarshalJSON() ([]byte, error)

func (*NullableRestMirroringRequest) Set ¶

func (*NullableRestMirroringRequest) UnmarshalJSON ¶

func (v *NullableRestMirroringRequest) UnmarshalJSON(src []byte) error

func (*NullableRestMirroringRequest) Unset ¶

func (v *NullableRestMirroringRequest) Unset()
type NullableRestNamedLink struct {
	// contains filtered or unexported fields
}
func NewNullableRestNamedLink(val *RestNamedLink) *NullableRestNamedLink

func (NullableRestNamedLink) Get ¶

func (NullableRestNamedLink) IsSet ¶

func (v NullableRestNamedLink) IsSet() bool

func (NullableRestNamedLink) MarshalJSON ¶

func (v NullableRestNamedLink) MarshalJSON() ([]byte, error)

func (*NullableRestNamedLink) Set ¶

func (v *NullableRestNamedLink) Set(val *RestNamedLink)

func (*NullableRestNamedLink) UnmarshalJSON ¶

func (v *NullableRestNamedLink) UnmarshalJSON(src []byte) error

func (*NullableRestNamedLink) Unset ¶

func (v *NullableRestNamedLink) Unset()

type NullableRestNode ¶

type NullableRestNode struct {
	// contains filtered or unexported fields
}

func NewNullableRestNode ¶

func NewNullableRestNode(val *RestNode) *NullableRestNode

func (NullableRestNode) Get ¶

func (v NullableRestNode) Get() *RestNode

func (NullableRestNode) IsSet ¶

func (v NullableRestNode) IsSet() bool

func (NullableRestNode) MarshalJSON ¶

func (v NullableRestNode) MarshalJSON() ([]byte, error)

func (*NullableRestNode) Set ¶

func (v *NullableRestNode) Set(val *RestNode)

func (*NullableRestNode) UnmarshalJSON ¶

func (v *NullableRestNode) UnmarshalJSON(src []byte) error

func (*NullableRestNode) Unset ¶

func (v *NullableRestNode) Unset()

type NullableRestNodeConnectivityReport ¶

type NullableRestNodeConnectivityReport struct {
	// contains filtered or unexported fields
}

func (NullableRestNodeConnectivityReport) Get ¶

func (NullableRestNodeConnectivityReport) IsSet ¶

func (NullableRestNodeConnectivityReport) MarshalJSON ¶

func (v NullableRestNodeConnectivityReport) MarshalJSON() ([]byte, error)

func (*NullableRestNodeConnectivityReport) Set ¶

func (*NullableRestNodeConnectivityReport) UnmarshalJSON ¶

func (v *NullableRestNodeConnectivityReport) UnmarshalJSON(src []byte) error

func (*NullableRestNodeConnectivityReport) Unset ¶

type NullableRestNodeConnectivityReportNode ¶

type NullableRestNodeConnectivityReportNode struct {
	// contains filtered or unexported fields
}

func (NullableRestNodeConnectivityReportNode) Get ¶

func (NullableRestNodeConnectivityReportNode) IsSet ¶

func (NullableRestNodeConnectivityReportNode) MarshalJSON ¶

func (v NullableRestNodeConnectivityReportNode) MarshalJSON() ([]byte, error)

func (*NullableRestNodeConnectivityReportNode) Set ¶

func (*NullableRestNodeConnectivityReportNode) UnmarshalJSON ¶

func (v *NullableRestNodeConnectivityReportNode) UnmarshalJSON(src []byte) error

func (*NullableRestNodeConnectivityReportNode) Unset ¶

type NullableRestNodeConnectivitySummary ¶

type NullableRestNodeConnectivitySummary struct {
	// contains filtered or unexported fields
}

func (NullableRestNodeConnectivitySummary) Get ¶

func (NullableRestNodeConnectivitySummary) IsSet ¶

func (NullableRestNodeConnectivitySummary) MarshalJSON ¶

func (v NullableRestNodeConnectivitySummary) MarshalJSON() ([]byte, error)

func (*NullableRestNodeConnectivitySummary) Set ¶

func (*NullableRestNodeConnectivitySummary) UnmarshalJSON ¶

func (v *NullableRestNodeConnectivitySummary) UnmarshalJSON(src []byte) error

func (*NullableRestNodeConnectivitySummary) Unset ¶

type NullableRestNodeConnectivitySummarySummary ¶

type NullableRestNodeConnectivitySummarySummary struct {
	// contains filtered or unexported fields
}

func (NullableRestNodeConnectivitySummarySummary) Get ¶

func (NullableRestNodeConnectivitySummarySummary) IsSet ¶

func (NullableRestNodeConnectivitySummarySummary) MarshalJSON ¶

func (*NullableRestNodeConnectivitySummarySummary) Set ¶

func (*NullableRestNodeConnectivitySummarySummary) UnmarshalJSON ¶

func (v *NullableRestNodeConnectivitySummarySummary) UnmarshalJSON(src []byte) error

func (*NullableRestNodeConnectivitySummarySummary) Unset ¶

type NullableRestPageRestChange ¶

type NullableRestPageRestChange struct {
	// contains filtered or unexported fields
}

func NewNullableRestPageRestChange ¶

func NewNullableRestPageRestChange(val *RestPageRestChange) *NullableRestPageRestChange

func (NullableRestPageRestChange) Get ¶

func (NullableRestPageRestChange) IsSet ¶

func (v NullableRestPageRestChange) IsSet() bool

func (NullableRestPageRestChange) MarshalJSON ¶

func (v NullableRestPageRestChange) MarshalJSON() ([]byte, error)

func (*NullableRestPageRestChange) Set ¶

func (*NullableRestPageRestChange) UnmarshalJSON ¶

func (v *NullableRestPageRestChange) UnmarshalJSON(src []byte) error

func (*NullableRestPageRestChange) Unset ¶

func (v *NullableRestPageRestChange) Unset()

type NullableRestPath ¶

type NullableRestPath struct {
	// contains filtered or unexported fields
}

func NewNullableRestPath ¶

func NewNullableRestPath(val *RestPath) *NullableRestPath

func (NullableRestPath) Get ¶

func (v NullableRestPath) Get() *RestPath

func (NullableRestPath) IsSet ¶

func (v NullableRestPath) IsSet() bool

func (NullableRestPath) MarshalJSON ¶

func (v NullableRestPath) MarshalJSON() ([]byte, error)

func (*NullableRestPath) Set ¶

func (v *NullableRestPath) Set(val *RestPath)

func (*NullableRestPath) UnmarshalJSON ¶

func (v *NullableRestPath) UnmarshalJSON(src []byte) error

func (*NullableRestPath) Unset ¶

func (v *NullableRestPath) Unset()

type NullableRestPermitted ¶

type NullableRestPermitted struct {
	// contains filtered or unexported fields
}

func NewNullableRestPermitted ¶

func NewNullableRestPermitted(val *RestPermitted) *NullableRestPermitted

func (NullableRestPermitted) Get ¶

func (NullableRestPermitted) IsSet ¶

func (v NullableRestPermitted) IsSet() bool

func (NullableRestPermitted) MarshalJSON ¶

func (v NullableRestPermitted) MarshalJSON() ([]byte, error)

func (*NullableRestPermitted) Set ¶

func (v *NullableRestPermitted) Set(val *RestPermitted)

func (*NullableRestPermitted) UnmarshalJSON ¶

func (v *NullableRestPermitted) UnmarshalJSON(src []byte) error

func (*NullableRestPermitted) Unset ¶

func (v *NullableRestPermitted) Unset()

type NullableRestPermittedGroup ¶

type NullableRestPermittedGroup struct {
	// contains filtered or unexported fields
}

func NewNullableRestPermittedGroup ¶

func NewNullableRestPermittedGroup(val *RestPermittedGroup) *NullableRestPermittedGroup

func (NullableRestPermittedGroup) Get ¶

func (NullableRestPermittedGroup) IsSet ¶

func (v NullableRestPermittedGroup) IsSet() bool

func (NullableRestPermittedGroup) MarshalJSON ¶

func (v NullableRestPermittedGroup) MarshalJSON() ([]byte, error)

func (*NullableRestPermittedGroup) Set ¶

func (*NullableRestPermittedGroup) UnmarshalJSON ¶

func (v *NullableRestPermittedGroup) UnmarshalJSON(src []byte) error

func (*NullableRestPermittedGroup) Unset ¶

func (v *NullableRestPermittedGroup) Unset()

type NullableRestPermittedGroupGroup ¶

type NullableRestPermittedGroupGroup struct {
	// contains filtered or unexported fields
}

func (NullableRestPermittedGroupGroup) Get ¶

func (NullableRestPermittedGroupGroup) IsSet ¶

func (NullableRestPermittedGroupGroup) MarshalJSON ¶

func (v NullableRestPermittedGroupGroup) MarshalJSON() ([]byte, error)

func (*NullableRestPermittedGroupGroup) Set ¶

func (*NullableRestPermittedGroupGroup) UnmarshalJSON ¶

func (v *NullableRestPermittedGroupGroup) UnmarshalJSON(src []byte) error

func (*NullableRestPermittedGroupGroup) Unset ¶

type NullableRestPermittedUser ¶

type NullableRestPermittedUser struct {
	// contains filtered or unexported fields
}

func NewNullableRestPermittedUser ¶

func NewNullableRestPermittedUser(val *RestPermittedUser) *NullableRestPermittedUser

func (NullableRestPermittedUser) Get ¶

func (NullableRestPermittedUser) IsSet ¶

func (v NullableRestPermittedUser) IsSet() bool

func (NullableRestPermittedUser) MarshalJSON ¶

func (v NullableRestPermittedUser) MarshalJSON() ([]byte, error)

func (*NullableRestPermittedUser) Set ¶

func (*NullableRestPermittedUser) UnmarshalJSON ¶

func (v *NullableRestPermittedUser) UnmarshalJSON(src []byte) error

func (*NullableRestPermittedUser) Unset ¶

func (v *NullableRestPermittedUser) Unset()

type NullableRestPerson ¶

type NullableRestPerson struct {
	// contains filtered or unexported fields
}

func NewNullableRestPerson ¶

func NewNullableRestPerson(val *RestPerson) *NullableRestPerson

func (NullableRestPerson) Get ¶

func (v NullableRestPerson) Get() *RestPerson

func (NullableRestPerson) IsSet ¶

func (v NullableRestPerson) IsSet() bool

func (NullableRestPerson) MarshalJSON ¶

func (v NullableRestPerson) MarshalJSON() ([]byte, error)

func (*NullableRestPerson) Set ¶

func (v *NullableRestPerson) Set(val *RestPerson)

func (*NullableRestPerson) UnmarshalJSON ¶

func (v *NullableRestPerson) UnmarshalJSON(src []byte) error

func (*NullableRestPerson) Unset ¶

func (v *NullableRestPerson) Unset()

type NullableRestProgress ¶

type NullableRestProgress struct {
	// contains filtered or unexported fields
}

func NewNullableRestProgress ¶

func NewNullableRestProgress(val *RestProgress) *NullableRestProgress

func (NullableRestProgress) Get ¶

func (NullableRestProgress) IsSet ¶

func (v NullableRestProgress) IsSet() bool

func (NullableRestProgress) MarshalJSON ¶

func (v NullableRestProgress) MarshalJSON() ([]byte, error)

func (*NullableRestProgress) Set ¶

func (v *NullableRestProgress) Set(val *RestProgress)

func (*NullableRestProgress) UnmarshalJSON ¶

func (v *NullableRestProgress) UnmarshalJSON(src []byte) error

func (*NullableRestProgress) Unset ¶

func (v *NullableRestProgress) Unset()

type NullableRestProject ¶

type NullableRestProject struct {
	// contains filtered or unexported fields
}

func NewNullableRestProject ¶

func NewNullableRestProject(val *RestProject) *NullableRestProject

func (NullableRestProject) Get ¶

func (NullableRestProject) IsSet ¶

func (v NullableRestProject) IsSet() bool

func (NullableRestProject) MarshalJSON ¶

func (v NullableRestProject) MarshalJSON() ([]byte, error)

func (*NullableRestProject) Set ¶

func (v *NullableRestProject) Set(val *RestProject)

func (*NullableRestProject) UnmarshalJSON ¶

func (v *NullableRestProject) UnmarshalJSON(src []byte) error

func (*NullableRestProject) Unset ¶

func (v *NullableRestProject) Unset()

type NullableRestProjectSettingsRestriction ¶

type NullableRestProjectSettingsRestriction struct {
	// contains filtered or unexported fields
}

func (NullableRestProjectSettingsRestriction) Get ¶

func (NullableRestProjectSettingsRestriction) IsSet ¶

func (NullableRestProjectSettingsRestriction) MarshalJSON ¶

func (v NullableRestProjectSettingsRestriction) MarshalJSON() ([]byte, error)

func (*NullableRestProjectSettingsRestriction) Set ¶

func (*NullableRestProjectSettingsRestriction) UnmarshalJSON ¶

func (v *NullableRestProjectSettingsRestriction) UnmarshalJSON(src []byte) error

func (*NullableRestProjectSettingsRestriction) Unset ¶

type NullableRestProjectSettingsRestrictionRequest ¶

type NullableRestProjectSettingsRestrictionRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestProjectSettingsRestrictionRequest) Get ¶

func (NullableRestProjectSettingsRestrictionRequest) IsSet ¶

func (NullableRestProjectSettingsRestrictionRequest) MarshalJSON ¶

func (*NullableRestProjectSettingsRestrictionRequest) Set ¶

func (*NullableRestProjectSettingsRestrictionRequest) UnmarshalJSON ¶

func (*NullableRestProjectSettingsRestrictionRequest) Unset ¶

type NullableRestProperties ¶

type NullableRestProperties struct {
	// contains filtered or unexported fields
}

func NewNullableRestProperties ¶

func NewNullableRestProperties(val *RestProperties) *NullableRestProperties

func (NullableRestProperties) Get ¶

func (NullableRestProperties) IsSet ¶

func (v NullableRestProperties) IsSet() bool

func (NullableRestProperties) MarshalJSON ¶

func (v NullableRestProperties) MarshalJSON() ([]byte, error)

func (*NullableRestProperties) Set ¶

func (*NullableRestProperties) UnmarshalJSON ¶

func (v *NullableRestProperties) UnmarshalJSON(src []byte) error

func (*NullableRestProperties) Unset ¶

func (v *NullableRestProperties) Unset()

type NullableRestPullRequest ¶

type NullableRestPullRequest struct {
	// contains filtered or unexported fields
}

func NewNullableRestPullRequest ¶

func NewNullableRestPullRequest(val *RestPullRequest) *NullableRestPullRequest

func (NullableRestPullRequest) Get ¶

func (NullableRestPullRequest) IsSet ¶

func (v NullableRestPullRequest) IsSet() bool

func (NullableRestPullRequest) MarshalJSON ¶

func (v NullableRestPullRequest) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequest) Set ¶

func (*NullableRestPullRequest) UnmarshalJSON ¶

func (v *NullableRestPullRequest) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequest) Unset ¶

func (v *NullableRestPullRequest) Unset()

type NullableRestPullRequestActivity ¶

type NullableRestPullRequestActivity struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestActivity) Get ¶

func (NullableRestPullRequestActivity) IsSet ¶

func (NullableRestPullRequestActivity) MarshalJSON ¶

func (v NullableRestPullRequestActivity) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestActivity) Set ¶

func (*NullableRestPullRequestActivity) UnmarshalJSON ¶

func (v *NullableRestPullRequestActivity) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestActivity) Unset ¶

type NullableRestPullRequestAssignParticipantRoleRequest ¶

type NullableRestPullRequestAssignParticipantRoleRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestAssignParticipantRoleRequest) Get ¶

func (NullableRestPullRequestAssignParticipantRoleRequest) IsSet ¶

func (NullableRestPullRequestAssignParticipantRoleRequest) MarshalJSON ¶

func (*NullableRestPullRequestAssignParticipantRoleRequest) Set ¶

func (*NullableRestPullRequestAssignParticipantRoleRequest) UnmarshalJSON ¶

func (*NullableRestPullRequestAssignParticipantRoleRequest) Unset ¶

type NullableRestPullRequestAssignParticipantRoleRequestUser ¶

type NullableRestPullRequestAssignParticipantRoleRequestUser struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestAssignParticipantRoleRequestUser) Get ¶

func (NullableRestPullRequestAssignParticipantRoleRequestUser) IsSet ¶

func (NullableRestPullRequestAssignParticipantRoleRequestUser) MarshalJSON ¶

func (*NullableRestPullRequestAssignParticipantRoleRequestUser) Set ¶

func (*NullableRestPullRequestAssignParticipantRoleRequestUser) UnmarshalJSON ¶

func (*NullableRestPullRequestAssignParticipantRoleRequestUser) Unset ¶

type NullableRestPullRequestAssignStatusRequest ¶

type NullableRestPullRequestAssignStatusRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestAssignStatusRequest) Get ¶

func (NullableRestPullRequestAssignStatusRequest) IsSet ¶

func (NullableRestPullRequestAssignStatusRequest) MarshalJSON ¶

func (*NullableRestPullRequestAssignStatusRequest) Set ¶

func (*NullableRestPullRequestAssignStatusRequest) UnmarshalJSON ¶

func (v *NullableRestPullRequestAssignStatusRequest) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestAssignStatusRequest) Unset ¶

type NullableRestPullRequestAutoMergeRequest ¶

type NullableRestPullRequestAutoMergeRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestAutoMergeRequest) Get ¶

func (NullableRestPullRequestAutoMergeRequest) IsSet ¶

func (NullableRestPullRequestAutoMergeRequest) MarshalJSON ¶

func (v NullableRestPullRequestAutoMergeRequest) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestAutoMergeRequest) Set ¶

func (*NullableRestPullRequestAutoMergeRequest) UnmarshalJSON ¶

func (v *NullableRestPullRequestAutoMergeRequest) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestAutoMergeRequest) Unset ¶

type NullableRestPullRequestCommitMessageTemplate ¶

type NullableRestPullRequestCommitMessageTemplate struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestCommitMessageTemplate) Get ¶

func (NullableRestPullRequestCommitMessageTemplate) IsSet ¶

func (NullableRestPullRequestCommitMessageTemplate) MarshalJSON ¶

func (*NullableRestPullRequestCommitMessageTemplate) Set ¶

func (*NullableRestPullRequestCommitMessageTemplate) UnmarshalJSON ¶

func (*NullableRestPullRequestCommitMessageTemplate) Unset ¶

type NullableRestPullRequestCondition ¶

type NullableRestPullRequestCondition struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestCondition) Get ¶

func (NullableRestPullRequestCondition) IsSet ¶

func (NullableRestPullRequestCondition) MarshalJSON ¶

func (v NullableRestPullRequestCondition) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestCondition) Set ¶

func (*NullableRestPullRequestCondition) UnmarshalJSON ¶

func (v *NullableRestPullRequestCondition) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestCondition) Unset ¶

type NullableRestPullRequestConditionScope ¶

type NullableRestPullRequestConditionScope struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestConditionScope) Get ¶

func (NullableRestPullRequestConditionScope) IsSet ¶

func (NullableRestPullRequestConditionScope) MarshalJSON ¶

func (v NullableRestPullRequestConditionScope) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestConditionScope) Set ¶

func (*NullableRestPullRequestConditionScope) UnmarshalJSON ¶

func (v *NullableRestPullRequestConditionScope) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestConditionScope) Unset ¶

type NullableRestPullRequestDeclineRequest ¶

type NullableRestPullRequestDeclineRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestDeclineRequest) Get ¶

func (NullableRestPullRequestDeclineRequest) IsSet ¶

func (NullableRestPullRequestDeclineRequest) MarshalJSON ¶

func (v NullableRestPullRequestDeclineRequest) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestDeclineRequest) Set ¶

func (*NullableRestPullRequestDeclineRequest) UnmarshalJSON ¶

func (v *NullableRestPullRequestDeclineRequest) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestDeclineRequest) Unset ¶

type NullableRestPullRequestDeleteRequest ¶

type NullableRestPullRequestDeleteRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestDeleteRequest) Get ¶

func (NullableRestPullRequestDeleteRequest) IsSet ¶

func (NullableRestPullRequestDeleteRequest) MarshalJSON ¶

func (v NullableRestPullRequestDeleteRequest) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestDeleteRequest) Set ¶

func (*NullableRestPullRequestDeleteRequest) UnmarshalJSON ¶

func (v *NullableRestPullRequestDeleteRequest) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestDeleteRequest) Unset ¶

type NullableRestPullRequestFinishReviewRequest ¶

type NullableRestPullRequestFinishReviewRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestFinishReviewRequest) Get ¶

func (NullableRestPullRequestFinishReviewRequest) IsSet ¶

func (NullableRestPullRequestFinishReviewRequest) MarshalJSON ¶

func (*NullableRestPullRequestFinishReviewRequest) Set ¶

func (*NullableRestPullRequestFinishReviewRequest) UnmarshalJSON ¶

func (v *NullableRestPullRequestFinishReviewRequest) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestFinishReviewRequest) Unset ¶

type NullableRestPullRequestFromRef ¶

type NullableRestPullRequestFromRef struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestFromRef) Get ¶

func (NullableRestPullRequestFromRef) IsSet ¶

func (NullableRestPullRequestFromRef) MarshalJSON ¶

func (v NullableRestPullRequestFromRef) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestFromRef) Set ¶

func (*NullableRestPullRequestFromRef) UnmarshalJSON ¶

func (v *NullableRestPullRequestFromRef) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestFromRef) Unset ¶

func (v *NullableRestPullRequestFromRef) Unset()

type NullableRestPullRequestFromRefRepository ¶

type NullableRestPullRequestFromRefRepository struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestFromRefRepository) Get ¶

func (NullableRestPullRequestFromRefRepository) IsSet ¶

func (NullableRestPullRequestFromRefRepository) MarshalJSON ¶

func (*NullableRestPullRequestFromRefRepository) Set ¶

func (*NullableRestPullRequestFromRefRepository) UnmarshalJSON ¶

func (v *NullableRestPullRequestFromRefRepository) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestFromRefRepository) Unset ¶

type NullableRestPullRequestFromRefRepositoryOrigin ¶

type NullableRestPullRequestFromRefRepositoryOrigin struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestFromRefRepositoryOrigin) Get ¶

func (NullableRestPullRequestFromRefRepositoryOrigin) IsSet ¶

func (NullableRestPullRequestFromRefRepositoryOrigin) MarshalJSON ¶

func (*NullableRestPullRequestFromRefRepositoryOrigin) Set ¶

func (*NullableRestPullRequestFromRefRepositoryOrigin) UnmarshalJSON ¶

func (*NullableRestPullRequestFromRefRepositoryOrigin) Unset ¶

type NullableRestPullRequestFromRefRepositoryProject ¶

type NullableRestPullRequestFromRefRepositoryProject struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestFromRefRepositoryProject) Get ¶

func (NullableRestPullRequestFromRefRepositoryProject) IsSet ¶

func (NullableRestPullRequestFromRefRepositoryProject) MarshalJSON ¶

func (*NullableRestPullRequestFromRefRepositoryProject) Set ¶

func (*NullableRestPullRequestFromRefRepositoryProject) UnmarshalJSON ¶

func (*NullableRestPullRequestFromRefRepositoryProject) Unset ¶

type NullableRestPullRequestMergeConfig ¶

type NullableRestPullRequestMergeConfig struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestMergeConfig) Get ¶

func (NullableRestPullRequestMergeConfig) IsSet ¶

func (NullableRestPullRequestMergeConfig) MarshalJSON ¶

func (v NullableRestPullRequestMergeConfig) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestMergeConfig) Set ¶

func (*NullableRestPullRequestMergeConfig) UnmarshalJSON ¶

func (v *NullableRestPullRequestMergeConfig) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestMergeConfig) Unset ¶

type NullableRestPullRequestMergeConfigCommitMessageTemplate ¶

type NullableRestPullRequestMergeConfigCommitMessageTemplate struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestMergeConfigCommitMessageTemplate) Get ¶

func (NullableRestPullRequestMergeConfigCommitMessageTemplate) IsSet ¶

func (NullableRestPullRequestMergeConfigCommitMessageTemplate) MarshalJSON ¶

func (*NullableRestPullRequestMergeConfigCommitMessageTemplate) Set ¶

func (*NullableRestPullRequestMergeConfigCommitMessageTemplate) UnmarshalJSON ¶

func (*NullableRestPullRequestMergeConfigCommitMessageTemplate) Unset ¶

type NullableRestPullRequestMergeConfigDefaultStrategy ¶

type NullableRestPullRequestMergeConfigDefaultStrategy struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestMergeConfigDefaultStrategy) Get ¶

func (NullableRestPullRequestMergeConfigDefaultStrategy) IsSet ¶

func (NullableRestPullRequestMergeConfigDefaultStrategy) MarshalJSON ¶

func (*NullableRestPullRequestMergeConfigDefaultStrategy) Set ¶

func (*NullableRestPullRequestMergeConfigDefaultStrategy) UnmarshalJSON ¶

func (*NullableRestPullRequestMergeConfigDefaultStrategy) Unset ¶

type NullableRestPullRequestMergeRequest ¶

type NullableRestPullRequestMergeRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestMergeRequest) Get ¶

func (NullableRestPullRequestMergeRequest) IsSet ¶

func (NullableRestPullRequestMergeRequest) MarshalJSON ¶

func (v NullableRestPullRequestMergeRequest) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestMergeRequest) Set ¶

func (*NullableRestPullRequestMergeRequest) UnmarshalJSON ¶

func (v *NullableRestPullRequestMergeRequest) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestMergeRequest) Unset ¶

type NullableRestPullRequestMergeStrategy ¶

type NullableRestPullRequestMergeStrategy struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestMergeStrategy) Get ¶

func (NullableRestPullRequestMergeStrategy) IsSet ¶

func (NullableRestPullRequestMergeStrategy) MarshalJSON ¶

func (v NullableRestPullRequestMergeStrategy) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestMergeStrategy) Set ¶

func (*NullableRestPullRequestMergeStrategy) UnmarshalJSON ¶

func (v *NullableRestPullRequestMergeStrategy) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestMergeStrategy) Unset ¶

type NullableRestPullRequestMergeability ¶

type NullableRestPullRequestMergeability struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestMergeability) Get ¶

func (NullableRestPullRequestMergeability) IsSet ¶

func (NullableRestPullRequestMergeability) MarshalJSON ¶

func (v NullableRestPullRequestMergeability) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestMergeability) Set ¶

func (*NullableRestPullRequestMergeability) UnmarshalJSON ¶

func (v *NullableRestPullRequestMergeability) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestMergeability) Unset ¶

type NullableRestPullRequestParticipant ¶

type NullableRestPullRequestParticipant struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestParticipant) Get ¶

func (NullableRestPullRequestParticipant) IsSet ¶

func (NullableRestPullRequestParticipant) MarshalJSON ¶

func (v NullableRestPullRequestParticipant) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestParticipant) Set ¶

func (*NullableRestPullRequestParticipant) UnmarshalJSON ¶

func (v *NullableRestPullRequestParticipant) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestParticipant) Unset ¶

type NullableRestPullRequestParticipantUser ¶

type NullableRestPullRequestParticipantUser struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestParticipantUser) Get ¶

func (NullableRestPullRequestParticipantUser) IsSet ¶

func (NullableRestPullRequestParticipantUser) MarshalJSON ¶

func (v NullableRestPullRequestParticipantUser) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestParticipantUser) Set ¶

func (*NullableRestPullRequestParticipantUser) UnmarshalJSON ¶

func (v *NullableRestPullRequestParticipantUser) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestParticipantUser) Unset ¶

type NullableRestPullRequestRebaseRequest ¶

type NullableRestPullRequestRebaseRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestRebaseRequest) Get ¶

func (NullableRestPullRequestRebaseRequest) IsSet ¶

func (NullableRestPullRequestRebaseRequest) MarshalJSON ¶

func (v NullableRestPullRequestRebaseRequest) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestRebaseRequest) Set ¶

func (*NullableRestPullRequestRebaseRequest) UnmarshalJSON ¶

func (v *NullableRestPullRequestRebaseRequest) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestRebaseRequest) Unset ¶

type NullableRestPullRequestRebaseResult ¶

type NullableRestPullRequestRebaseResult struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestRebaseResult) Get ¶

func (NullableRestPullRequestRebaseResult) IsSet ¶

func (NullableRestPullRequestRebaseResult) MarshalJSON ¶

func (v NullableRestPullRequestRebaseResult) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestRebaseResult) Set ¶

func (*NullableRestPullRequestRebaseResult) UnmarshalJSON ¶

func (v *NullableRestPullRequestRebaseResult) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestRebaseResult) Unset ¶

type NullableRestPullRequestRebaseResultRefChange ¶

type NullableRestPullRequestRebaseResultRefChange struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestRebaseResultRefChange) Get ¶

func (NullableRestPullRequestRebaseResultRefChange) IsSet ¶

func (NullableRestPullRequestRebaseResultRefChange) MarshalJSON ¶

func (*NullableRestPullRequestRebaseResultRefChange) Set ¶

func (*NullableRestPullRequestRebaseResultRefChange) UnmarshalJSON ¶

func (*NullableRestPullRequestRebaseResultRefChange) Unset ¶

type NullableRestPullRequestRebaseResultRefChangeRef ¶

type NullableRestPullRequestRebaseResultRefChangeRef struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestRebaseResultRefChangeRef) Get ¶

func (NullableRestPullRequestRebaseResultRefChangeRef) IsSet ¶

func (NullableRestPullRequestRebaseResultRefChangeRef) MarshalJSON ¶

func (*NullableRestPullRequestRebaseResultRefChangeRef) Set ¶

func (*NullableRestPullRequestRebaseResultRefChangeRef) UnmarshalJSON ¶

func (*NullableRestPullRequestRebaseResultRefChangeRef) Unset ¶

type NullableRestPullRequestRebaseability ¶

type NullableRestPullRequestRebaseability struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestRebaseability) Get ¶

func (NullableRestPullRequestRebaseability) IsSet ¶

func (NullableRestPullRequestRebaseability) MarshalJSON ¶

func (v NullableRestPullRequestRebaseability) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestRebaseability) Set ¶

func (*NullableRestPullRequestRebaseability) UnmarshalJSON ¶

func (v *NullableRestPullRequestRebaseability) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestRebaseability) Unset ¶

type NullableRestPullRequestRef ¶

type NullableRestPullRequestRef struct {
	// contains filtered or unexported fields
}

func NewNullableRestPullRequestRef ¶

func NewNullableRestPullRequestRef(val *RestPullRequestRef) *NullableRestPullRequestRef

func (NullableRestPullRequestRef) Get ¶

func (NullableRestPullRequestRef) IsSet ¶

func (v NullableRestPullRequestRef) IsSet() bool

func (NullableRestPullRequestRef) MarshalJSON ¶

func (v NullableRestPullRequestRef) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestRef) Set ¶

func (*NullableRestPullRequestRef) UnmarshalJSON ¶

func (v *NullableRestPullRequestRef) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestRef) Unset ¶

func (v *NullableRestPullRequestRef) Unset()

type NullableRestPullRequestReopenRequest ¶

type NullableRestPullRequestReopenRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestReopenRequest) Get ¶

func (NullableRestPullRequestReopenRequest) IsSet ¶

func (NullableRestPullRequestReopenRequest) MarshalJSON ¶

func (v NullableRestPullRequestReopenRequest) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestReopenRequest) Set ¶

func (*NullableRestPullRequestReopenRequest) UnmarshalJSON ¶

func (v *NullableRestPullRequestReopenRequest) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestReopenRequest) Unset ¶

type NullableRestPullRequestSettings ¶

type NullableRestPullRequestSettings struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestSettings) Get ¶

func (NullableRestPullRequestSettings) IsSet ¶

func (NullableRestPullRequestSettings) MarshalJSON ¶

func (v NullableRestPullRequestSettings) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestSettings) Set ¶

func (*NullableRestPullRequestSettings) UnmarshalJSON ¶

func (v *NullableRestPullRequestSettings) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestSettings) Unset ¶

type NullableRestPullRequestSettingsMergeConfig ¶

type NullableRestPullRequestSettingsMergeConfig struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestSettingsMergeConfig) Get ¶

func (NullableRestPullRequestSettingsMergeConfig) IsSet ¶

func (NullableRestPullRequestSettingsMergeConfig) MarshalJSON ¶

func (*NullableRestPullRequestSettingsMergeConfig) Set ¶

func (*NullableRestPullRequestSettingsMergeConfig) UnmarshalJSON ¶

func (v *NullableRestPullRequestSettingsMergeConfig) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestSettingsMergeConfig) Unset ¶

type NullableRestPullRequestSuggestion ¶

type NullableRestPullRequestSuggestion struct {
	// contains filtered or unexported fields
}

func (NullableRestPullRequestSuggestion) Get ¶

func (NullableRestPullRequestSuggestion) IsSet ¶

func (NullableRestPullRequestSuggestion) MarshalJSON ¶

func (v NullableRestPullRequestSuggestion) MarshalJSON() ([]byte, error)

func (*NullableRestPullRequestSuggestion) Set ¶

func (*NullableRestPullRequestSuggestion) UnmarshalJSON ¶

func (v *NullableRestPullRequestSuggestion) UnmarshalJSON(src []byte) error

func (*NullableRestPullRequestSuggestion) Unset ¶

type NullableRestPushRefChange ¶

type NullableRestPushRefChange struct {
	// contains filtered or unexported fields
}

func NewNullableRestPushRefChange ¶

func NewNullableRestPushRefChange(val *RestPushRefChange) *NullableRestPushRefChange

func (NullableRestPushRefChange) Get ¶

func (NullableRestPushRefChange) IsSet ¶

func (v NullableRestPushRefChange) IsSet() bool

func (NullableRestPushRefChange) MarshalJSON ¶

func (v NullableRestPushRefChange) MarshalJSON() ([]byte, error)

func (*NullableRestPushRefChange) Set ¶

func (*NullableRestPushRefChange) UnmarshalJSON ¶

func (v *NullableRestPushRefChange) UnmarshalJSON(src []byte) error

func (*NullableRestPushRefChange) Unset ¶

func (v *NullableRestPushRefChange) Unset()

type NullableRestRateLimitSettings ¶

type NullableRestRateLimitSettings struct {
	// contains filtered or unexported fields
}

func (NullableRestRateLimitSettings) Get ¶

func (NullableRestRateLimitSettings) IsSet ¶

func (NullableRestRateLimitSettings) MarshalJSON ¶

func (v NullableRestRateLimitSettings) MarshalJSON() ([]byte, error)

func (*NullableRestRateLimitSettings) Set ¶

func (*NullableRestRateLimitSettings) UnmarshalJSON ¶

func (v *NullableRestRateLimitSettings) UnmarshalJSON(src []byte) error

func (*NullableRestRateLimitSettings) Unset ¶

func (v *NullableRestRateLimitSettings) Unset()

type NullableRestRawAccessToken ¶

type NullableRestRawAccessToken struct {
	// contains filtered or unexported fields
}

func NewNullableRestRawAccessToken ¶

func NewNullableRestRawAccessToken(val *RestRawAccessToken) *NullableRestRawAccessToken

func (NullableRestRawAccessToken) Get ¶

func (NullableRestRawAccessToken) IsSet ¶

func (v NullableRestRawAccessToken) IsSet() bool

func (NullableRestRawAccessToken) MarshalJSON ¶

func (v NullableRestRawAccessToken) MarshalJSON() ([]byte, error)

func (*NullableRestRawAccessToken) Set ¶

func (*NullableRestRawAccessToken) UnmarshalJSON ¶

func (v *NullableRestRawAccessToken) UnmarshalJSON(src []byte) error

func (*NullableRestRawAccessToken) Unset ¶

func (v *NullableRestRawAccessToken) Unset()

type NullableRestRefChange ¶

type NullableRestRefChange struct {
	// contains filtered or unexported fields
}

func NewNullableRestRefChange ¶

func NewNullableRestRefChange(val *RestRefChange) *NullableRestRefChange

func (NullableRestRefChange) Get ¶

func (NullableRestRefChange) IsSet ¶

func (v NullableRestRefChange) IsSet() bool

func (NullableRestRefChange) MarshalJSON ¶

func (v NullableRestRefChange) MarshalJSON() ([]byte, error)

func (*NullableRestRefChange) Set ¶

func (v *NullableRestRefChange) Set(val *RestRefChange)

func (*NullableRestRefChange) UnmarshalJSON ¶

func (v *NullableRestRefChange) UnmarshalJSON(src []byte) error

func (*NullableRestRefChange) Unset ¶

func (v *NullableRestRefChange) Unset()

type NullableRestRefMatcher ¶

type NullableRestRefMatcher struct {
	// contains filtered or unexported fields
}

func NewNullableRestRefMatcher ¶

func NewNullableRestRefMatcher(val *RestRefMatcher) *NullableRestRefMatcher

func (NullableRestRefMatcher) Get ¶

func (NullableRestRefMatcher) IsSet ¶

func (v NullableRestRefMatcher) IsSet() bool

func (NullableRestRefMatcher) MarshalJSON ¶

func (v NullableRestRefMatcher) MarshalJSON() ([]byte, error)

func (*NullableRestRefMatcher) Set ¶

func (*NullableRestRefMatcher) UnmarshalJSON ¶

func (v *NullableRestRefMatcher) UnmarshalJSON(src []byte) error

func (*NullableRestRefMatcher) Unset ¶

func (v *NullableRestRefMatcher) Unset()

type NullableRestRefMatcherType ¶

type NullableRestRefMatcherType struct {
	// contains filtered or unexported fields
}

func NewNullableRestRefMatcherType ¶

func NewNullableRestRefMatcherType(val *RestRefMatcherType) *NullableRestRefMatcherType

func (NullableRestRefMatcherType) Get ¶

func (NullableRestRefMatcherType) IsSet ¶

func (v NullableRestRefMatcherType) IsSet() bool

func (NullableRestRefMatcherType) MarshalJSON ¶

func (v NullableRestRefMatcherType) MarshalJSON() ([]byte, error)

func (*NullableRestRefMatcherType) Set ¶

func (*NullableRestRefMatcherType) UnmarshalJSON ¶

func (v *NullableRestRefMatcherType) UnmarshalJSON(src []byte) error

func (*NullableRestRefMatcherType) Unset ¶

func (v *NullableRestRefMatcherType) Unset()

type NullableRestRefRestriction ¶

type NullableRestRefRestriction struct {
	// contains filtered or unexported fields
}

func NewNullableRestRefRestriction ¶

func NewNullableRestRefRestriction(val *RestRefRestriction) *NullableRestRefRestriction

func (NullableRestRefRestriction) Get ¶

func (NullableRestRefRestriction) IsSet ¶

func (v NullableRestRefRestriction) IsSet() bool

func (NullableRestRefRestriction) MarshalJSON ¶

func (v NullableRestRefRestriction) MarshalJSON() ([]byte, error)

func (*NullableRestRefRestriction) Set ¶

func (*NullableRestRefRestriction) UnmarshalJSON ¶

func (v *NullableRestRefRestriction) UnmarshalJSON(src []byte) error

func (*NullableRestRefRestriction) Unset ¶

func (v *NullableRestRefRestriction) Unset()

type NullableRestRefSyncQueue ¶

type NullableRestRefSyncQueue struct {
	// contains filtered or unexported fields
}

func NewNullableRestRefSyncQueue ¶

func NewNullableRestRefSyncQueue(val *RestRefSyncQueue) *NullableRestRefSyncQueue

func (NullableRestRefSyncQueue) Get ¶

func (NullableRestRefSyncQueue) IsSet ¶

func (v NullableRestRefSyncQueue) IsSet() bool

func (NullableRestRefSyncQueue) MarshalJSON ¶

func (v NullableRestRefSyncQueue) MarshalJSON() ([]byte, error)

func (*NullableRestRefSyncQueue) Set ¶

func (*NullableRestRefSyncQueue) UnmarshalJSON ¶

func (v *NullableRestRefSyncQueue) UnmarshalJSON(src []byte) error

func (*NullableRestRefSyncQueue) Unset ¶

func (v *NullableRestRefSyncQueue) Unset()

type NullableRestRefSyncRequest ¶

type NullableRestRefSyncRequest struct {
	// contains filtered or unexported fields
}

func NewNullableRestRefSyncRequest ¶

func NewNullableRestRefSyncRequest(val *RestRefSyncRequest) *NullableRestRefSyncRequest

func (NullableRestRefSyncRequest) Get ¶

func (NullableRestRefSyncRequest) IsSet ¶

func (v NullableRestRefSyncRequest) IsSet() bool

func (NullableRestRefSyncRequest) MarshalJSON ¶

func (v NullableRestRefSyncRequest) MarshalJSON() ([]byte, error)

func (*NullableRestRefSyncRequest) Set ¶

func (*NullableRestRefSyncRequest) UnmarshalJSON ¶

func (v *NullableRestRefSyncRequest) UnmarshalJSON(src []byte) error

func (*NullableRestRefSyncRequest) Unset ¶

func (v *NullableRestRefSyncRequest) Unset()

type NullableRestRefSyncStatus ¶

type NullableRestRefSyncStatus struct {
	// contains filtered or unexported fields
}

func NewNullableRestRefSyncStatus ¶

func NewNullableRestRefSyncStatus(val *RestRefSyncStatus) *NullableRestRefSyncStatus

func (NullableRestRefSyncStatus) Get ¶

func (NullableRestRefSyncStatus) IsSet ¶

func (v NullableRestRefSyncStatus) IsSet() bool

func (NullableRestRefSyncStatus) MarshalJSON ¶

func (v NullableRestRefSyncStatus) MarshalJSON() ([]byte, error)

func (*NullableRestRefSyncStatus) Set ¶

func (*NullableRestRefSyncStatus) UnmarshalJSON ¶

func (v *NullableRestRefSyncStatus) UnmarshalJSON(src []byte) error

func (*NullableRestRefSyncStatus) Unset ¶

func (v *NullableRestRefSyncStatus) Unset()

type NullableRestRefSyncStatusOrphanedRefs ¶

type NullableRestRefSyncStatusOrphanedRefs struct {
	// contains filtered or unexported fields
}

func (NullableRestRefSyncStatusOrphanedRefs) Get ¶

func (NullableRestRefSyncStatusOrphanedRefs) IsSet ¶

func (NullableRestRefSyncStatusOrphanedRefs) MarshalJSON ¶

func (v NullableRestRefSyncStatusOrphanedRefs) MarshalJSON() ([]byte, error)

func (*NullableRestRefSyncStatusOrphanedRefs) Set ¶

func (*NullableRestRefSyncStatusOrphanedRefs) UnmarshalJSON ¶

func (v *NullableRestRefSyncStatusOrphanedRefs) UnmarshalJSON(src []byte) error

func (*NullableRestRefSyncStatusOrphanedRefs) Unset ¶

type NullableRestRejectedRef ¶

type NullableRestRejectedRef struct {
	// contains filtered or unexported fields
}

func NewNullableRestRejectedRef ¶

func NewNullableRestRejectedRef(val *RestRejectedRef) *NullableRestRejectedRef

func (NullableRestRejectedRef) Get ¶

func (NullableRestRejectedRef) IsSet ¶

func (v NullableRestRejectedRef) IsSet() bool

func (NullableRestRejectedRef) MarshalJSON ¶

func (v NullableRestRejectedRef) MarshalJSON() ([]byte, error)

func (*NullableRestRejectedRef) Set ¶

func (*NullableRestRejectedRef) UnmarshalJSON ¶

func (v *NullableRestRejectedRef) UnmarshalJSON(src []byte) error

func (*NullableRestRejectedRef) Unset ¶

func (v *NullableRestRejectedRef) Unset()

type NullableRestRepositoriesExportRequest ¶

type NullableRestRepositoriesExportRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestRepositoriesExportRequest) Get ¶

func (NullableRestRepositoriesExportRequest) IsSet ¶

func (NullableRestRepositoriesExportRequest) MarshalJSON ¶

func (v NullableRestRepositoriesExportRequest) MarshalJSON() ([]byte, error)

func (*NullableRestRepositoriesExportRequest) Set ¶

func (*NullableRestRepositoriesExportRequest) UnmarshalJSON ¶

func (v *NullableRestRepositoriesExportRequest) UnmarshalJSON(src []byte) error

func (*NullableRestRepositoriesExportRequest) Unset ¶

type NullableRestRepository ¶

type NullableRestRepository struct {
	// contains filtered or unexported fields
}

func NewNullableRestRepository ¶

func NewNullableRestRepository(val *RestRepository) *NullableRestRepository

func (NullableRestRepository) Get ¶

func (NullableRestRepository) IsSet ¶

func (v NullableRestRepository) IsSet() bool

func (NullableRestRepository) MarshalJSON ¶

func (v NullableRestRepository) MarshalJSON() ([]byte, error)

func (*NullableRestRepository) Set ¶

func (*NullableRestRepository) UnmarshalJSON ¶

func (v *NullableRestRepository) UnmarshalJSON(src []byte) error

func (*NullableRestRepository) Unset ¶

func (v *NullableRestRepository) Unset()

type NullableRestRepositoryHook ¶

type NullableRestRepositoryHook struct {
	// contains filtered or unexported fields
}

func NewNullableRestRepositoryHook ¶

func NewNullableRestRepositoryHook(val *RestRepositoryHook) *NullableRestRepositoryHook

func (NullableRestRepositoryHook) Get ¶

func (NullableRestRepositoryHook) IsSet ¶

func (v NullableRestRepositoryHook) IsSet() bool

func (NullableRestRepositoryHook) MarshalJSON ¶

func (v NullableRestRepositoryHook) MarshalJSON() ([]byte, error)

func (*NullableRestRepositoryHook) Set ¶

func (*NullableRestRepositoryHook) UnmarshalJSON ¶

func (v *NullableRestRepositoryHook) UnmarshalJSON(src []byte) error

func (*NullableRestRepositoryHook) Unset ¶

func (v *NullableRestRepositoryHook) Unset()

type NullableRestRepositoryHookVeto ¶

type NullableRestRepositoryHookVeto struct {
	// contains filtered or unexported fields
}

func (NullableRestRepositoryHookVeto) Get ¶

func (NullableRestRepositoryHookVeto) IsSet ¶

func (NullableRestRepositoryHookVeto) MarshalJSON ¶

func (v NullableRestRepositoryHookVeto) MarshalJSON() ([]byte, error)

func (*NullableRestRepositoryHookVeto) Set ¶

func (*NullableRestRepositoryHookVeto) UnmarshalJSON ¶

func (v *NullableRestRepositoryHookVeto) UnmarshalJSON(src []byte) error

func (*NullableRestRepositoryHookVeto) Unset ¶

func (v *NullableRestRepositoryHookVeto) Unset()

type NullableRestRepositoryMirrorEvent ¶

type NullableRestRepositoryMirrorEvent struct {
	// contains filtered or unexported fields
}

func (NullableRestRepositoryMirrorEvent) Get ¶

func (NullableRestRepositoryMirrorEvent) IsSet ¶

func (NullableRestRepositoryMirrorEvent) MarshalJSON ¶

func (v NullableRestRepositoryMirrorEvent) MarshalJSON() ([]byte, error)

func (*NullableRestRepositoryMirrorEvent) Set ¶

func (*NullableRestRepositoryMirrorEvent) UnmarshalJSON ¶

func (v *NullableRestRepositoryMirrorEvent) UnmarshalJSON(src []byte) error

func (*NullableRestRepositoryMirrorEvent) Unset ¶

type NullableRestRepositoryPolicy ¶

type NullableRestRepositoryPolicy struct {
	// contains filtered or unexported fields
}

func (NullableRestRepositoryPolicy) Get ¶

func (NullableRestRepositoryPolicy) IsSet ¶

func (NullableRestRepositoryPolicy) MarshalJSON ¶

func (v NullableRestRepositoryPolicy) MarshalJSON() ([]byte, error)

func (*NullableRestRepositoryPolicy) Set ¶

func (*NullableRestRepositoryPolicy) UnmarshalJSON ¶

func (v *NullableRestRepositoryPolicy) UnmarshalJSON(src []byte) error

func (*NullableRestRepositoryPolicy) Unset ¶

func (v *NullableRestRepositoryPolicy) Unset()

type NullableRestRepositoryPullRequestSettings ¶

type NullableRestRepositoryPullRequestSettings struct {
	// contains filtered or unexported fields
}

func (NullableRestRepositoryPullRequestSettings) Get ¶

func (NullableRestRepositoryPullRequestSettings) IsSet ¶

func (NullableRestRepositoryPullRequestSettings) MarshalJSON ¶

func (*NullableRestRepositoryPullRequestSettings) Set ¶

func (*NullableRestRepositoryPullRequestSettings) UnmarshalJSON ¶

func (v *NullableRestRepositoryPullRequestSettings) UnmarshalJSON(src []byte) error

func (*NullableRestRepositoryPullRequestSettings) Unset ¶

type NullableRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds ¶

type NullableRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds struct {
	// contains filtered or unexported fields
}

func (NullableRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) Get ¶

func (NullableRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) IsSet ¶

func (NullableRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) MarshalJSON ¶

func (*NullableRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) Set ¶

func (*NullableRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) UnmarshalJSON ¶

func (*NullableRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) Unset ¶

type NullableRestRepositoryRefChangeActivity ¶

type NullableRestRepositoryRefChangeActivity struct {
	// contains filtered or unexported fields
}

func (NullableRestRepositoryRefChangeActivity) Get ¶

func (NullableRestRepositoryRefChangeActivity) IsSet ¶

func (NullableRestRepositoryRefChangeActivity) MarshalJSON ¶

func (v NullableRestRepositoryRefChangeActivity) MarshalJSON() ([]byte, error)

func (*NullableRestRepositoryRefChangeActivity) Set ¶

func (*NullableRestRepositoryRefChangeActivity) UnmarshalJSON ¶

func (v *NullableRestRepositoryRefChangeActivity) UnmarshalJSON(src []byte) error

func (*NullableRestRepositoryRefChangeActivity) Unset ¶

type NullableRestRepositoryRefChangeActivityRefChange ¶

type NullableRestRepositoryRefChangeActivityRefChange struct {
	// contains filtered or unexported fields
}

func (NullableRestRepositoryRefChangeActivityRefChange) Get ¶

func (NullableRestRepositoryRefChangeActivityRefChange) IsSet ¶

func (NullableRestRepositoryRefChangeActivityRefChange) MarshalJSON ¶

func (*NullableRestRepositoryRefChangeActivityRefChange) Set ¶

func (*NullableRestRepositoryRefChangeActivityRefChange) UnmarshalJSON ¶

func (*NullableRestRepositoryRefChangeActivityRefChange) Unset ¶

type NullableRestRepositorySelector ¶

type NullableRestRepositorySelector struct {
	// contains filtered or unexported fields
}

func (NullableRestRepositorySelector) Get ¶

func (NullableRestRepositorySelector) IsSet ¶

func (NullableRestRepositorySelector) MarshalJSON ¶

func (v NullableRestRepositorySelector) MarshalJSON() ([]byte, error)

func (*NullableRestRepositorySelector) Set ¶

func (*NullableRestRepositorySelector) UnmarshalJSON ¶

func (v *NullableRestRepositorySelector) UnmarshalJSON(src []byte) error

func (*NullableRestRepositorySelector) Unset ¶

func (v *NullableRestRepositorySelector) Unset()

type NullableRestRequiredBuildCondition ¶

type NullableRestRequiredBuildCondition struct {
	// contains filtered or unexported fields
}

func (NullableRestRequiredBuildCondition) Get ¶

func (NullableRestRequiredBuildCondition) IsSet ¶

func (NullableRestRequiredBuildCondition) MarshalJSON ¶

func (v NullableRestRequiredBuildCondition) MarshalJSON() ([]byte, error)

func (*NullableRestRequiredBuildCondition) Set ¶

func (*NullableRestRequiredBuildCondition) UnmarshalJSON ¶

func (v *NullableRestRequiredBuildCondition) UnmarshalJSON(src []byte) error

func (*NullableRestRequiredBuildCondition) Unset ¶

type NullableRestRequiredBuildConditionRefMatcher ¶

type NullableRestRequiredBuildConditionRefMatcher struct {
	// contains filtered or unexported fields
}

func (NullableRestRequiredBuildConditionRefMatcher) Get ¶

func (NullableRestRequiredBuildConditionRefMatcher) IsSet ¶

func (NullableRestRequiredBuildConditionRefMatcher) MarshalJSON ¶

func (*NullableRestRequiredBuildConditionRefMatcher) Set ¶

func (*NullableRestRequiredBuildConditionRefMatcher) UnmarshalJSON ¶

func (*NullableRestRequiredBuildConditionRefMatcher) Unset ¶

type NullableRestRequiredBuildConditionSetRequest ¶

type NullableRestRequiredBuildConditionSetRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestRequiredBuildConditionSetRequest) Get ¶

func (NullableRestRequiredBuildConditionSetRequest) IsSet ¶

func (NullableRestRequiredBuildConditionSetRequest) MarshalJSON ¶

func (*NullableRestRequiredBuildConditionSetRequest) Set ¶

func (*NullableRestRequiredBuildConditionSetRequest) UnmarshalJSON ¶

func (*NullableRestRequiredBuildConditionSetRequest) Unset ¶

type NullableRestRestrictionRequest ¶

type NullableRestRestrictionRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestRestrictionRequest) Get ¶

func (NullableRestRestrictionRequest) IsSet ¶

func (NullableRestRestrictionRequest) MarshalJSON ¶

func (v NullableRestRestrictionRequest) MarshalJSON() ([]byte, error)

func (*NullableRestRestrictionRequest) Set ¶

func (*NullableRestRestrictionRequest) UnmarshalJSON ¶

func (v *NullableRestRestrictionRequest) UnmarshalJSON(src []byte) error

func (*NullableRestRestrictionRequest) Unset ¶

func (v *NullableRestRestrictionRequest) Unset()

type NullableRestRestrictionRequestScope ¶

type NullableRestRestrictionRequestScope struct {
	// contains filtered or unexported fields
}

func (NullableRestRestrictionRequestScope) Get ¶

func (NullableRestRestrictionRequestScope) IsSet ¶

func (NullableRestRestrictionRequestScope) MarshalJSON ¶

func (v NullableRestRestrictionRequestScope) MarshalJSON() ([]byte, error)

func (*NullableRestRestrictionRequestScope) Set ¶

func (*NullableRestRestrictionRequestScope) UnmarshalJSON ¶

func (v *NullableRestRestrictionRequestScope) UnmarshalJSON(src []byte) error

func (*NullableRestRestrictionRequestScope) Unset ¶

type NullableRestReviewerGroup ¶

type NullableRestReviewerGroup struct {
	// contains filtered or unexported fields
}

func NewNullableRestReviewerGroup ¶

func NewNullableRestReviewerGroup(val *RestReviewerGroup) *NullableRestReviewerGroup

func (NullableRestReviewerGroup) Get ¶

func (NullableRestReviewerGroup) IsSet ¶

func (v NullableRestReviewerGroup) IsSet() bool

func (NullableRestReviewerGroup) MarshalJSON ¶

func (v NullableRestReviewerGroup) MarshalJSON() ([]byte, error)

func (*NullableRestReviewerGroup) Set ¶

func (*NullableRestReviewerGroup) UnmarshalJSON ¶

func (v *NullableRestReviewerGroup) UnmarshalJSON(src []byte) error

func (*NullableRestReviewerGroup) Unset ¶

func (v *NullableRestReviewerGroup) Unset()

type NullableRestScope ¶

type NullableRestScope struct {
	// contains filtered or unexported fields
}

func NewNullableRestScope ¶

func NewNullableRestScope(val *RestScope) *NullableRestScope

func (NullableRestScope) Get ¶

func (v NullableRestScope) Get() *RestScope

func (NullableRestScope) IsSet ¶

func (v NullableRestScope) IsSet() bool

func (NullableRestScope) MarshalJSON ¶

func (v NullableRestScope) MarshalJSON() ([]byte, error)

func (*NullableRestScope) Set ¶

func (v *NullableRestScope) Set(val *RestScope)

func (*NullableRestScope) UnmarshalJSON ¶

func (v *NullableRestScope) UnmarshalJSON(src []byte) error

func (*NullableRestScope) Unset ¶

func (v *NullableRestScope) Unset()

type NullableRestScopesExample ¶

type NullableRestScopesExample struct {
	// contains filtered or unexported fields
}

func NewNullableRestScopesExample ¶

func NewNullableRestScopesExample(val *RestScopesExample) *NullableRestScopesExample

func (NullableRestScopesExample) Get ¶

func (NullableRestScopesExample) IsSet ¶

func (v NullableRestScopesExample) IsSet() bool

func (NullableRestScopesExample) MarshalJSON ¶

func (v NullableRestScopesExample) MarshalJSON() ([]byte, error)

func (*NullableRestScopesExample) Set ¶

func (*NullableRestScopesExample) UnmarshalJSON ¶

func (v *NullableRestScopesExample) UnmarshalJSON(src []byte) error

func (*NullableRestScopesExample) Unset ¶

func (v *NullableRestScopesExample) Unset()

type NullableRestSecretScanningAllowlistRule ¶

type NullableRestSecretScanningAllowlistRule struct {
	// contains filtered or unexported fields
}

func (NullableRestSecretScanningAllowlistRule) Get ¶

func (NullableRestSecretScanningAllowlistRule) IsSet ¶

func (NullableRestSecretScanningAllowlistRule) MarshalJSON ¶

func (v NullableRestSecretScanningAllowlistRule) MarshalJSON() ([]byte, error)

func (*NullableRestSecretScanningAllowlistRule) Set ¶

func (*NullableRestSecretScanningAllowlistRule) UnmarshalJSON ¶

func (v *NullableRestSecretScanningAllowlistRule) UnmarshalJSON(src []byte) error

func (*NullableRestSecretScanningAllowlistRule) Unset ¶

type NullableRestSecretScanningAllowlistRuleSetRequest ¶

type NullableRestSecretScanningAllowlistRuleSetRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestSecretScanningAllowlistRuleSetRequest) Get ¶

func (NullableRestSecretScanningAllowlistRuleSetRequest) IsSet ¶

func (NullableRestSecretScanningAllowlistRuleSetRequest) MarshalJSON ¶

func (*NullableRestSecretScanningAllowlistRuleSetRequest) Set ¶

func (*NullableRestSecretScanningAllowlistRuleSetRequest) UnmarshalJSON ¶

func (*NullableRestSecretScanningAllowlistRuleSetRequest) Unset ¶

type NullableRestSecretScanningRule ¶

type NullableRestSecretScanningRule struct {
	// contains filtered or unexported fields
}

func (NullableRestSecretScanningRule) Get ¶

func (NullableRestSecretScanningRule) IsSet ¶

func (NullableRestSecretScanningRule) MarshalJSON ¶

func (v NullableRestSecretScanningRule) MarshalJSON() ([]byte, error)

func (*NullableRestSecretScanningRule) Set ¶

func (*NullableRestSecretScanningRule) UnmarshalJSON ¶

func (v *NullableRestSecretScanningRule) UnmarshalJSON(src []byte) error

func (*NullableRestSecretScanningRule) Unset ¶

func (v *NullableRestSecretScanningRule) Unset()

type NullableRestSecretScanningRuleScope ¶

type NullableRestSecretScanningRuleScope struct {
	// contains filtered or unexported fields
}

func (NullableRestSecretScanningRuleScope) Get ¶

func (NullableRestSecretScanningRuleScope) IsSet ¶

func (NullableRestSecretScanningRuleScope) MarshalJSON ¶

func (v NullableRestSecretScanningRuleScope) MarshalJSON() ([]byte, error)

func (*NullableRestSecretScanningRuleScope) Set ¶

func (*NullableRestSecretScanningRuleScope) UnmarshalJSON ¶

func (v *NullableRestSecretScanningRuleScope) UnmarshalJSON(src []byte) error

func (*NullableRestSecretScanningRuleScope) Unset ¶

type NullableRestSecretScanningRuleSetRequest ¶

type NullableRestSecretScanningRuleSetRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestSecretScanningRuleSetRequest) Get ¶

func (NullableRestSecretScanningRuleSetRequest) IsSet ¶

func (NullableRestSecretScanningRuleSetRequest) MarshalJSON ¶

func (*NullableRestSecretScanningRuleSetRequest) Set ¶

func (*NullableRestSecretScanningRuleSetRequest) UnmarshalJSON ¶

func (v *NullableRestSecretScanningRuleSetRequest) UnmarshalJSON(src []byte) error

func (*NullableRestSecretScanningRuleSetRequest) Unset ¶

type NullableRestSetInsightReportRequest ¶

type NullableRestSetInsightReportRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestSetInsightReportRequest) Get ¶

func (NullableRestSetInsightReportRequest) IsSet ¶

func (NullableRestSetInsightReportRequest) MarshalJSON ¶

func (v NullableRestSetInsightReportRequest) MarshalJSON() ([]byte, error)

func (*NullableRestSetInsightReportRequest) Set ¶

func (*NullableRestSetInsightReportRequest) UnmarshalJSON ¶

func (v *NullableRestSetInsightReportRequest) UnmarshalJSON(src []byte) error

func (*NullableRestSetInsightReportRequest) Unset ¶

type NullableRestSingleAddInsightAnnotationRequest ¶

type NullableRestSingleAddInsightAnnotationRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestSingleAddInsightAnnotationRequest) Get ¶

func (NullableRestSingleAddInsightAnnotationRequest) IsSet ¶

func (NullableRestSingleAddInsightAnnotationRequest) MarshalJSON ¶

func (*NullableRestSingleAddInsightAnnotationRequest) Set ¶

func (*NullableRestSingleAddInsightAnnotationRequest) UnmarshalJSON ¶

func (*NullableRestSingleAddInsightAnnotationRequest) Unset ¶

type NullableRestSshAccessKey ¶

type NullableRestSshAccessKey struct {
	// contains filtered or unexported fields
}

func NewNullableRestSshAccessKey ¶

func NewNullableRestSshAccessKey(val *RestSshAccessKey) *NullableRestSshAccessKey

func (NullableRestSshAccessKey) Get ¶

func (NullableRestSshAccessKey) IsSet ¶

func (v NullableRestSshAccessKey) IsSet() bool

func (NullableRestSshAccessKey) MarshalJSON ¶

func (v NullableRestSshAccessKey) MarshalJSON() ([]byte, error)

func (*NullableRestSshAccessKey) Set ¶

func (*NullableRestSshAccessKey) UnmarshalJSON ¶

func (v *NullableRestSshAccessKey) UnmarshalJSON(src []byte) error

func (*NullableRestSshAccessKey) Unset ¶

func (v *NullableRestSshAccessKey) Unset()

type NullableRestSshAccessKeyKey ¶

type NullableRestSshAccessKeyKey struct {
	// contains filtered or unexported fields
}

func (NullableRestSshAccessKeyKey) Get ¶

func (NullableRestSshAccessKeyKey) IsSet ¶

func (NullableRestSshAccessKeyKey) MarshalJSON ¶

func (v NullableRestSshAccessKeyKey) MarshalJSON() ([]byte, error)

func (*NullableRestSshAccessKeyKey) Set ¶

func (*NullableRestSshAccessKeyKey) UnmarshalJSON ¶

func (v *NullableRestSshAccessKeyKey) UnmarshalJSON(src []byte) error

func (*NullableRestSshAccessKeyKey) Unset ¶

func (v *NullableRestSshAccessKeyKey) Unset()

type NullableRestSshAccessKeyLocations ¶

type NullableRestSshAccessKeyLocations struct {
	// contains filtered or unexported fields
}

func (NullableRestSshAccessKeyLocations) Get ¶

func (NullableRestSshAccessKeyLocations) IsSet ¶

func (NullableRestSshAccessKeyLocations) MarshalJSON ¶

func (v NullableRestSshAccessKeyLocations) MarshalJSON() ([]byte, error)

func (*NullableRestSshAccessKeyLocations) Set ¶

func (*NullableRestSshAccessKeyLocations) UnmarshalJSON ¶

func (v *NullableRestSshAccessKeyLocations) UnmarshalJSON(src []byte) error

func (*NullableRestSshAccessKeyLocations) Unset ¶

type NullableRestSshCredentials ¶

type NullableRestSshCredentials struct {
	// contains filtered or unexported fields
}

func NewNullableRestSshCredentials ¶

func NewNullableRestSshCredentials(val *RestSshCredentials) *NullableRestSshCredentials

func (NullableRestSshCredentials) Get ¶

func (NullableRestSshCredentials) IsSet ¶

func (v NullableRestSshCredentials) IsSet() bool

func (NullableRestSshCredentials) MarshalJSON ¶

func (v NullableRestSshCredentials) MarshalJSON() ([]byte, error)

func (*NullableRestSshCredentials) Set ¶

func (*NullableRestSshCredentials) UnmarshalJSON ¶

func (v *NullableRestSshCredentials) UnmarshalJSON(src []byte) error

func (*NullableRestSshCredentials) Unset ¶

func (v *NullableRestSshCredentials) Unset()

type NullableRestSshKey ¶

type NullableRestSshKey struct {
	// contains filtered or unexported fields
}

func NewNullableRestSshKey ¶

func NewNullableRestSshKey(val *RestSshKey) *NullableRestSshKey

func (NullableRestSshKey) Get ¶

func (v NullableRestSshKey) Get() *RestSshKey

func (NullableRestSshKey) IsSet ¶

func (v NullableRestSshKey) IsSet() bool

func (NullableRestSshKey) MarshalJSON ¶

func (v NullableRestSshKey) MarshalJSON() ([]byte, error)

func (*NullableRestSshKey) Set ¶

func (v *NullableRestSshKey) Set(val *RestSshKey)

func (*NullableRestSshKey) UnmarshalJSON ¶

func (v *NullableRestSshKey) UnmarshalJSON(src []byte) error

func (*NullableRestSshKey) Unset ¶

func (v *NullableRestSshKey) Unset()

type NullableRestSshKeySettings ¶

type NullableRestSshKeySettings struct {
	// contains filtered or unexported fields
}

func NewNullableRestSshKeySettings ¶

func NewNullableRestSshKeySettings(val *RestSshKeySettings) *NullableRestSshKeySettings

func (NullableRestSshKeySettings) Get ¶

func (NullableRestSshKeySettings) IsSet ¶

func (v NullableRestSshKeySettings) IsSet() bool

func (NullableRestSshKeySettings) MarshalJSON ¶

func (v NullableRestSshKeySettings) MarshalJSON() ([]byte, error)

func (*NullableRestSshKeySettings) Set ¶

func (*NullableRestSshKeySettings) UnmarshalJSON ¶

func (v *NullableRestSshKeySettings) UnmarshalJSON(src []byte) error

func (*NullableRestSshKeySettings) Unset ¶

func (v *NullableRestSshKeySettings) Unset()

type NullableRestSshKeySettingsMaxExpiryDays ¶

type NullableRestSshKeySettingsMaxExpiryDays struct {
	// contains filtered or unexported fields
}

func (NullableRestSshKeySettingsMaxExpiryDays) Get ¶

func (NullableRestSshKeySettingsMaxExpiryDays) IsSet ¶

func (NullableRestSshKeySettingsMaxExpiryDays) MarshalJSON ¶

func (v NullableRestSshKeySettingsMaxExpiryDays) MarshalJSON() ([]byte, error)

func (*NullableRestSshKeySettingsMaxExpiryDays) Set ¶

func (*NullableRestSshKeySettingsMaxExpiryDays) UnmarshalJSON ¶

func (v *NullableRestSshKeySettingsMaxExpiryDays) UnmarshalJSON(src []byte) error

func (*NullableRestSshKeySettingsMaxExpiryDays) Unset ¶

type NullableRestSshKeyTypeRestriction ¶

type NullableRestSshKeyTypeRestriction struct {
	// contains filtered or unexported fields
}

func (NullableRestSshKeyTypeRestriction) Get ¶

func (NullableRestSshKeyTypeRestriction) IsSet ¶

func (NullableRestSshKeyTypeRestriction) MarshalJSON ¶

func (v NullableRestSshKeyTypeRestriction) MarshalJSON() ([]byte, error)

func (*NullableRestSshKeyTypeRestriction) Set ¶

func (*NullableRestSshKeyTypeRestriction) UnmarshalJSON ¶

func (v *NullableRestSshKeyTypeRestriction) UnmarshalJSON(src []byte) error

func (*NullableRestSshKeyTypeRestriction) Unset ¶

type NullableRestSshKeyTypeRestrictionMinKeyLength ¶

type NullableRestSshKeyTypeRestrictionMinKeyLength struct {
	// contains filtered or unexported fields
}

func (NullableRestSshKeyTypeRestrictionMinKeyLength) Get ¶

func (NullableRestSshKeyTypeRestrictionMinKeyLength) IsSet ¶

func (NullableRestSshKeyTypeRestrictionMinKeyLength) MarshalJSON ¶

func (*NullableRestSshKeyTypeRestrictionMinKeyLength) Set ¶

func (*NullableRestSshKeyTypeRestrictionMinKeyLength) UnmarshalJSON ¶

func (*NullableRestSshKeyTypeRestrictionMinKeyLength) Unset ¶

type NullableRestSshSettings ¶

type NullableRestSshSettings struct {
	// contains filtered or unexported fields
}

func NewNullableRestSshSettings ¶

func NewNullableRestSshSettings(val *RestSshSettings) *NullableRestSshSettings

func (NullableRestSshSettings) Get ¶

func (NullableRestSshSettings) IsSet ¶

func (v NullableRestSshSettings) IsSet() bool

func (NullableRestSshSettings) MarshalJSON ¶

func (v NullableRestSshSettings) MarshalJSON() ([]byte, error)

func (*NullableRestSshSettings) Set ¶

func (*NullableRestSshSettings) UnmarshalJSON ¶

func (v *NullableRestSshSettings) UnmarshalJSON(src []byte) error

func (*NullableRestSshSettings) Unset ¶

func (v *NullableRestSshSettings) Unset()

type NullableRestSyncProgress ¶

type NullableRestSyncProgress struct {
	// contains filtered or unexported fields
}

func NewNullableRestSyncProgress ¶

func NewNullableRestSyncProgress(val *RestSyncProgress) *NullableRestSyncProgress

func (NullableRestSyncProgress) Get ¶

func (NullableRestSyncProgress) IsSet ¶

func (v NullableRestSyncProgress) IsSet() bool

func (NullableRestSyncProgress) MarshalJSON ¶

func (v NullableRestSyncProgress) MarshalJSON() ([]byte, error)

func (*NullableRestSyncProgress) Set ¶

func (*NullableRestSyncProgress) UnmarshalJSON ¶

func (v *NullableRestSyncProgress) UnmarshalJSON(src []byte) error

func (*NullableRestSyncProgress) Unset ¶

func (v *NullableRestSyncProgress) Unset()

type NullableRestTag ¶

type NullableRestTag struct {
	// contains filtered or unexported fields
}

func NewNullableRestTag ¶

func NewNullableRestTag(val *RestTag) *NullableRestTag

func (NullableRestTag) Get ¶

func (v NullableRestTag) Get() *RestTag

func (NullableRestTag) IsSet ¶

func (v NullableRestTag) IsSet() bool

func (NullableRestTag) MarshalJSON ¶

func (v NullableRestTag) MarshalJSON() ([]byte, error)

func (*NullableRestTag) Set ¶

func (v *NullableRestTag) Set(val *RestTag)

func (*NullableRestTag) UnmarshalJSON ¶

func (v *NullableRestTag) UnmarshalJSON(src []byte) error

func (*NullableRestTag) Unset ¶

func (v *NullableRestTag) Unset()

type NullableRestTestResults ¶

type NullableRestTestResults struct {
	// contains filtered or unexported fields
}

func NewNullableRestTestResults ¶

func NewNullableRestTestResults(val *RestTestResults) *NullableRestTestResults

func (NullableRestTestResults) Get ¶

func (NullableRestTestResults) IsSet ¶

func (v NullableRestTestResults) IsSet() bool

func (NullableRestTestResults) MarshalJSON ¶

func (v NullableRestTestResults) MarshalJSON() ([]byte, error)

func (*NullableRestTestResults) Set ¶

func (*NullableRestTestResults) UnmarshalJSON ¶

func (v *NullableRestTestResults) UnmarshalJSON(src []byte) error

func (*NullableRestTestResults) Unset ¶

func (v *NullableRestTestResults) Unset()

type NullableRestTokenBucketSettings ¶

type NullableRestTokenBucketSettings struct {
	// contains filtered or unexported fields
}

func (NullableRestTokenBucketSettings) Get ¶

func (NullableRestTokenBucketSettings) IsSet ¶

func (NullableRestTokenBucketSettings) MarshalJSON ¶

func (v NullableRestTokenBucketSettings) MarshalJSON() ([]byte, error)

func (*NullableRestTokenBucketSettings) Set ¶

func (*NullableRestTokenBucketSettings) UnmarshalJSON ¶

func (v *NullableRestTokenBucketSettings) UnmarshalJSON(src []byte) error

func (*NullableRestTokenBucketSettings) Unset ¶

type NullableRestUpstreamServer ¶

type NullableRestUpstreamServer struct {
	// contains filtered or unexported fields
}

func NewNullableRestUpstreamServer ¶

func NewNullableRestUpstreamServer(val *RestUpstreamServer) *NullableRestUpstreamServer

func (NullableRestUpstreamServer) Get ¶

func (NullableRestUpstreamServer) IsSet ¶

func (v NullableRestUpstreamServer) IsSet() bool

func (NullableRestUpstreamServer) MarshalJSON ¶

func (v NullableRestUpstreamServer) MarshalJSON() ([]byte, error)

func (*NullableRestUpstreamServer) Set ¶

func (*NullableRestUpstreamServer) UnmarshalJSON ¶

func (v *NullableRestUpstreamServer) UnmarshalJSON(src []byte) error

func (*NullableRestUpstreamServer) Unset ¶

func (v *NullableRestUpstreamServer) Unset()

type NullableRestUpstreamSettings ¶

type NullableRestUpstreamSettings struct {
	// contains filtered or unexported fields
}

func (NullableRestUpstreamSettings) Get ¶

func (NullableRestUpstreamSettings) IsSet ¶

func (NullableRestUpstreamSettings) MarshalJSON ¶

func (v NullableRestUpstreamSettings) MarshalJSON() ([]byte, error)

func (*NullableRestUpstreamSettings) Set ¶

func (*NullableRestUpstreamSettings) UnmarshalJSON ¶

func (v *NullableRestUpstreamSettings) UnmarshalJSON(src []byte) error

func (*NullableRestUpstreamSettings) Unset ¶

func (v *NullableRestUpstreamSettings) Unset()

type NullableRestUserDirectory ¶

type NullableRestUserDirectory struct {
	// contains filtered or unexported fields
}

func NewNullableRestUserDirectory ¶

func NewNullableRestUserDirectory(val *RestUserDirectory) *NullableRestUserDirectory

func (NullableRestUserDirectory) Get ¶

func (NullableRestUserDirectory) IsSet ¶

func (v NullableRestUserDirectory) IsSet() bool

func (NullableRestUserDirectory) MarshalJSON ¶

func (v NullableRestUserDirectory) MarshalJSON() ([]byte, error)

func (*NullableRestUserDirectory) Set ¶

func (*NullableRestUserDirectory) UnmarshalJSON ¶

func (v *NullableRestUserDirectory) UnmarshalJSON(src []byte) error

func (*NullableRestUserDirectory) Unset ¶

func (v *NullableRestUserDirectory) Unset()

type NullableRestUserRateLimitSettings ¶

type NullableRestUserRateLimitSettings struct {
	// contains filtered or unexported fields
}

func (NullableRestUserRateLimitSettings) Get ¶

func (NullableRestUserRateLimitSettings) IsSet ¶

func (NullableRestUserRateLimitSettings) MarshalJSON ¶

func (v NullableRestUserRateLimitSettings) MarshalJSON() ([]byte, error)

func (*NullableRestUserRateLimitSettings) Set ¶

func (*NullableRestUserRateLimitSettings) UnmarshalJSON ¶

func (v *NullableRestUserRateLimitSettings) UnmarshalJSON(src []byte) error

func (*NullableRestUserRateLimitSettings) Unset ¶

type NullableRestUserRateLimitSettingsUpdateRequest ¶

type NullableRestUserRateLimitSettingsUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableRestUserRateLimitSettingsUpdateRequest) Get ¶

func (NullableRestUserRateLimitSettingsUpdateRequest) IsSet ¶

func (NullableRestUserRateLimitSettingsUpdateRequest) MarshalJSON ¶

func (*NullableRestUserRateLimitSettingsUpdateRequest) Set ¶

func (*NullableRestUserRateLimitSettingsUpdateRequest) UnmarshalJSON ¶

func (*NullableRestUserRateLimitSettingsUpdateRequest) Unset ¶

type NullableRestUserReaction ¶

type NullableRestUserReaction struct {
	// contains filtered or unexported fields
}

func NewNullableRestUserReaction ¶

func NewNullableRestUserReaction(val *RestUserReaction) *NullableRestUserReaction

func (NullableRestUserReaction) Get ¶

func (NullableRestUserReaction) IsSet ¶

func (v NullableRestUserReaction) IsSet() bool

func (NullableRestUserReaction) MarshalJSON ¶

func (v NullableRestUserReaction) MarshalJSON() ([]byte, error)

func (*NullableRestUserReaction) Set ¶

func (*NullableRestUserReaction) UnmarshalJSON ¶

func (v *NullableRestUserReaction) UnmarshalJSON(src []byte) error

func (*NullableRestUserReaction) Unset ¶

func (v *NullableRestUserReaction) Unset()

type NullableRestUserReactionComment ¶

type NullableRestUserReactionComment struct {
	// contains filtered or unexported fields
}

func (NullableRestUserReactionComment) Get ¶

func (NullableRestUserReactionComment) IsSet ¶

func (NullableRestUserReactionComment) MarshalJSON ¶

func (v NullableRestUserReactionComment) MarshalJSON() ([]byte, error)

func (*NullableRestUserReactionComment) Set ¶

func (*NullableRestUserReactionComment) UnmarshalJSON ¶

func (v *NullableRestUserReactionComment) UnmarshalJSON(src []byte) error

func (*NullableRestUserReactionComment) Unset ¶

type NullableRestUserReactionCommentParent ¶

type NullableRestUserReactionCommentParent struct {
	// contains filtered or unexported fields
}

func (NullableRestUserReactionCommentParent) Get ¶

func (NullableRestUserReactionCommentParent) IsSet ¶

func (NullableRestUserReactionCommentParent) MarshalJSON ¶

func (v NullableRestUserReactionCommentParent) MarshalJSON() ([]byte, error)

func (*NullableRestUserReactionCommentParent) Set ¶

func (*NullableRestUserReactionCommentParent) UnmarshalJSON ¶

func (v *NullableRestUserReactionCommentParent) UnmarshalJSON(src []byte) error

func (*NullableRestUserReactionCommentParent) Unset ¶

type NullableRestUserReactionCommentParentAnchor ¶

type NullableRestUserReactionCommentParentAnchor struct {
	// contains filtered or unexported fields
}

func (NullableRestUserReactionCommentParentAnchor) Get ¶

func (NullableRestUserReactionCommentParentAnchor) IsSet ¶

func (NullableRestUserReactionCommentParentAnchor) MarshalJSON ¶

func (*NullableRestUserReactionCommentParentAnchor) Set ¶

func (*NullableRestUserReactionCommentParentAnchor) UnmarshalJSON ¶

func (v *NullableRestUserReactionCommentParentAnchor) UnmarshalJSON(src []byte) error

func (*NullableRestUserReactionCommentParentAnchor) Unset ¶

type NullableRestUserReactionCommentParentThreadResolver ¶

type NullableRestUserReactionCommentParentThreadResolver struct {
	// contains filtered or unexported fields
}

func (NullableRestUserReactionCommentParentThreadResolver) Get ¶

func (NullableRestUserReactionCommentParentThreadResolver) IsSet ¶

func (NullableRestUserReactionCommentParentThreadResolver) MarshalJSON ¶

func (*NullableRestUserReactionCommentParentThreadResolver) Set ¶

func (*NullableRestUserReactionCommentParentThreadResolver) UnmarshalJSON ¶

func (*NullableRestUserReactionCommentParentThreadResolver) Unset ¶

type NullableRestUserReactionEmoticon ¶

type NullableRestUserReactionEmoticon struct {
	// contains filtered or unexported fields
}

func (NullableRestUserReactionEmoticon) Get ¶

func (NullableRestUserReactionEmoticon) IsSet ¶

func (NullableRestUserReactionEmoticon) MarshalJSON ¶

func (v NullableRestUserReactionEmoticon) MarshalJSON() ([]byte, error)

func (*NullableRestUserReactionEmoticon) Set ¶

func (*NullableRestUserReactionEmoticon) UnmarshalJSON ¶

func (v *NullableRestUserReactionEmoticon) UnmarshalJSON(src []byte) error

func (*NullableRestUserReactionEmoticon) Unset ¶

type NullableRestUsernamePasswordCredentials ¶

type NullableRestUsernamePasswordCredentials struct {
	// contains filtered or unexported fields
}

func (NullableRestUsernamePasswordCredentials) Get ¶

func (NullableRestUsernamePasswordCredentials) IsSet ¶

func (NullableRestUsernamePasswordCredentials) MarshalJSON ¶

func (v NullableRestUsernamePasswordCredentials) MarshalJSON() ([]byte, error)

func (*NullableRestUsernamePasswordCredentials) Set ¶

func (*NullableRestUsernamePasswordCredentials) UnmarshalJSON ¶

func (v *NullableRestUsernamePasswordCredentials) UnmarshalJSON(src []byte) error

func (*NullableRestUsernamePasswordCredentials) Unset ¶

type NullableRestWebhook ¶

type NullableRestWebhook struct {
	// contains filtered or unexported fields
}

func NewNullableRestWebhook ¶

func NewNullableRestWebhook(val *RestWebhook) *NullableRestWebhook

func (NullableRestWebhook) Get ¶

func (NullableRestWebhook) IsSet ¶

func (v NullableRestWebhook) IsSet() bool

func (NullableRestWebhook) MarshalJSON ¶

func (v NullableRestWebhook) MarshalJSON() ([]byte, error)

func (*NullableRestWebhook) Set ¶

func (v *NullableRestWebhook) Set(val *RestWebhook)

func (*NullableRestWebhook) UnmarshalJSON ¶

func (v *NullableRestWebhook) UnmarshalJSON(src []byte) error

func (*NullableRestWebhook) Unset ¶

func (v *NullableRestWebhook) Unset()

type NullableRestWebhookCredentials ¶

type NullableRestWebhookCredentials struct {
	// contains filtered or unexported fields
}

func (NullableRestWebhookCredentials) Get ¶

func (NullableRestWebhookCredentials) IsSet ¶

func (NullableRestWebhookCredentials) MarshalJSON ¶

func (v NullableRestWebhookCredentials) MarshalJSON() ([]byte, error)

func (*NullableRestWebhookCredentials) Set ¶

func (*NullableRestWebhookCredentials) UnmarshalJSON ¶

func (v *NullableRestWebhookCredentials) UnmarshalJSON(src []byte) error

func (*NullableRestWebhookCredentials) Unset ¶

func (v *NullableRestWebhookCredentials) Unset()

type NullableRestWebhookScope ¶

type NullableRestWebhookScope struct {
	// contains filtered or unexported fields
}

func NewNullableRestWebhookScope ¶

func NewNullableRestWebhookScope(val *RestWebhookScope) *NullableRestWebhookScope

func (NullableRestWebhookScope) Get ¶

func (NullableRestWebhookScope) IsSet ¶

func (v NullableRestWebhookScope) IsSet() bool

func (NullableRestWebhookScope) MarshalJSON ¶

func (v NullableRestWebhookScope) MarshalJSON() ([]byte, error)

func (*NullableRestWebhookScope) Set ¶

func (*NullableRestWebhookScope) UnmarshalJSON ¶

func (v *NullableRestWebhookScope) UnmarshalJSON(src []byte) error

func (*NullableRestWebhookScope) Unset ¶

func (v *NullableRestWebhookScope) Unset()

type NullableRevokeManyRequest ¶

type NullableRevokeManyRequest struct {
	// contains filtered or unexported fields
}

func NewNullableRevokeManyRequest ¶

func NewNullableRevokeManyRequest(val *RevokeManyRequest) *NullableRevokeManyRequest

func (NullableRevokeManyRequest) Get ¶

func (NullableRevokeManyRequest) IsSet ¶

func (v NullableRevokeManyRequest) IsSet() bool

func (NullableRevokeManyRequest) MarshalJSON ¶

func (v NullableRevokeManyRequest) MarshalJSON() ([]byte, error)

func (*NullableRevokeManyRequest) Set ¶

func (*NullableRevokeManyRequest) UnmarshalJSON ¶

func (v *NullableRevokeManyRequest) UnmarshalJSON(src []byte) error

func (*NullableRevokeManyRequest) Unset ¶

func (v *NullableRevokeManyRequest) Unset()

type NullableSearch2200Response ¶

type NullableSearch2200Response struct {
	// contains filtered or unexported fields
}

func NewNullableSearch2200Response ¶

func NewNullableSearch2200Response(val *Search2200Response) *NullableSearch2200Response

func (NullableSearch2200Response) Get ¶

func (NullableSearch2200Response) IsSet ¶

func (v NullableSearch2200Response) IsSet() bool

func (NullableSearch2200Response) MarshalJSON ¶

func (v NullableSearch2200Response) MarshalJSON() ([]byte, error)

func (*NullableSearch2200Response) Set ¶

func (*NullableSearch2200Response) UnmarshalJSON ¶

func (v *NullableSearch2200Response) UnmarshalJSON(src []byte) error

func (*NullableSearch2200Response) Unset ¶

func (v *NullableSearch2200Response) Unset()

type NullableSearch3200Response ¶

type NullableSearch3200Response struct {
	// contains filtered or unexported fields
}

func NewNullableSearch3200Response ¶

func NewNullableSearch3200Response(val *Search3200Response) *NullableSearch3200Response

func (NullableSearch3200Response) Get ¶

func (NullableSearch3200Response) IsSet ¶

func (v NullableSearch3200Response) IsSet() bool

func (NullableSearch3200Response) MarshalJSON ¶

func (v NullableSearch3200Response) MarshalJSON() ([]byte, error)

func (*NullableSearch3200Response) Set ¶

func (*NullableSearch3200Response) UnmarshalJSON ¶

func (v *NullableSearch3200Response) UnmarshalJSON(src []byte) error

func (*NullableSearch3200Response) Unset ¶

func (v *NullableSearch3200Response) Unset()

type NullableSearchMeshMigrationRepos200Response ¶

type NullableSearchMeshMigrationRepos200Response struct {
	// contains filtered or unexported fields
}

func (NullableSearchMeshMigrationRepos200Response) Get ¶

func (NullableSearchMeshMigrationRepos200Response) IsSet ¶

func (NullableSearchMeshMigrationRepos200Response) MarshalJSON ¶

func (*NullableSearchMeshMigrationRepos200Response) Set ¶

func (*NullableSearchMeshMigrationRepos200Response) UnmarshalJSON ¶

func (v *NullableSearchMeshMigrationRepos200Response) UnmarshalJSON(src []byte) error

func (*NullableSearchMeshMigrationRepos200Response) Unset ¶

type NullableSetBannerRequest ¶

type NullableSetBannerRequest struct {
	// contains filtered or unexported fields
}

func NewNullableSetBannerRequest ¶

func NewNullableSetBannerRequest(val *SetBannerRequest) *NullableSetBannerRequest

func (NullableSetBannerRequest) Get ¶

func (NullableSetBannerRequest) IsSet ¶

func (v NullableSetBannerRequest) IsSet() bool

func (NullableSetBannerRequest) MarshalJSON ¶

func (v NullableSetBannerRequest) MarshalJSON() ([]byte, error)

func (*NullableSetBannerRequest) Set ¶

func (*NullableSetBannerRequest) UnmarshalJSON ¶

func (v *NullableSetBannerRequest) UnmarshalJSON(src []byte) error

func (*NullableSetBannerRequest) Unset ¶

func (v *NullableSetBannerRequest) Unset()

type NullableSetDefaultBranchRequest ¶

type NullableSetDefaultBranchRequest struct {
	// contains filtered or unexported fields
}

func (NullableSetDefaultBranchRequest) Get ¶

func (NullableSetDefaultBranchRequest) IsSet ¶

func (NullableSetDefaultBranchRequest) MarshalJSON ¶

func (v NullableSetDefaultBranchRequest) MarshalJSON() ([]byte, error)

func (*NullableSetDefaultBranchRequest) Set ¶

func (*NullableSetDefaultBranchRequest) UnmarshalJSON ¶

func (v *NullableSetDefaultBranchRequest) UnmarshalJSON(src []byte) error

func (*NullableSetDefaultBranchRequest) Unset ¶

type NullableSetMailConfigRequest ¶

type NullableSetMailConfigRequest struct {
	// contains filtered or unexported fields
}

func (NullableSetMailConfigRequest) Get ¶

func (NullableSetMailConfigRequest) IsSet ¶

func (NullableSetMailConfigRequest) MarshalJSON ¶

func (v NullableSetMailConfigRequest) MarshalJSON() ([]byte, error)

func (*NullableSetMailConfigRequest) Set ¶

func (*NullableSetMailConfigRequest) UnmarshalJSON ¶

func (v *NullableSetMailConfigRequest) UnmarshalJSON(src []byte) error

func (*NullableSetMailConfigRequest) Unset ¶

func (v *NullableSetMailConfigRequest) Unset()

type NullableSimpleSshKeyFingerprint ¶

type NullableSimpleSshKeyFingerprint struct {
	// contains filtered or unexported fields
}

func (NullableSimpleSshKeyFingerprint) Get ¶

func (NullableSimpleSshKeyFingerprint) IsSet ¶

func (NullableSimpleSshKeyFingerprint) MarshalJSON ¶

func (v NullableSimpleSshKeyFingerprint) MarshalJSON() ([]byte, error)

func (*NullableSimpleSshKeyFingerprint) Set ¶

func (*NullableSimpleSshKeyFingerprint) UnmarshalJSON ¶

func (v *NullableSimpleSshKeyFingerprint) UnmarshalJSON(src []byte) error

func (*NullableSimpleSshKeyFingerprint) Unset ¶

type NullableStartMeshMigrationRequest ¶

type NullableStartMeshMigrationRequest struct {
	// contains filtered or unexported fields
}

func (NullableStartMeshMigrationRequest) Get ¶

func (NullableStartMeshMigrationRequest) IsSet ¶

func (NullableStartMeshMigrationRequest) MarshalJSON ¶

func (v NullableStartMeshMigrationRequest) MarshalJSON() ([]byte, error)

func (*NullableStartMeshMigrationRequest) Set ¶

func (*NullableStartMeshMigrationRequest) UnmarshalJSON ¶

func (v *NullableStartMeshMigrationRequest) UnmarshalJSON(src []byte) error

func (*NullableStartMeshMigrationRequest) Unset ¶

type NullableStartMeshMigrationRequestMaxBytesPerSecond ¶

type NullableStartMeshMigrationRequestMaxBytesPerSecond struct {
	// contains filtered or unexported fields
}

func (NullableStartMeshMigrationRequestMaxBytesPerSecond) Get ¶

func (NullableStartMeshMigrationRequestMaxBytesPerSecond) IsSet ¶

func (NullableStartMeshMigrationRequestMaxBytesPerSecond) MarshalJSON ¶

func (*NullableStartMeshMigrationRequestMaxBytesPerSecond) Set ¶

func (*NullableStartMeshMigrationRequestMaxBytesPerSecond) UnmarshalJSON ¶

func (*NullableStartMeshMigrationRequestMaxBytesPerSecond) Unset ¶

type NullableStreamDiff1200Response ¶

type NullableStreamDiff1200Response struct {
	// contains filtered or unexported fields
}

func (NullableStreamDiff1200Response) Get ¶

func (NullableStreamDiff1200Response) IsSet ¶

func (NullableStreamDiff1200Response) MarshalJSON ¶

func (v NullableStreamDiff1200Response) MarshalJSON() ([]byte, error)

func (*NullableStreamDiff1200Response) Set ¶

func (*NullableStreamDiff1200Response) UnmarshalJSON ¶

func (v *NullableStreamDiff1200Response) UnmarshalJSON(src []byte) error

func (*NullableStreamDiff1200Response) Unset ¶

func (v *NullableStreamDiff1200Response) Unset()

type NullableStreamFiles1200Response ¶

type NullableStreamFiles1200Response struct {
	// contains filtered or unexported fields
}

func (NullableStreamFiles1200Response) Get ¶

func (NullableStreamFiles1200Response) IsSet ¶

func (NullableStreamFiles1200Response) MarshalJSON ¶

func (v NullableStreamFiles1200Response) MarshalJSON() ([]byte, error)

func (*NullableStreamFiles1200Response) Set ¶

func (*NullableStreamFiles1200Response) UnmarshalJSON ¶

func (v *NullableStreamFiles1200Response) UnmarshalJSON(src []byte) error

func (*NullableStreamFiles1200Response) Unset ¶

type NullableString ¶

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString ¶

func NewNullableString(val *string) *NullableString

func (NullableString) Get ¶

func (v NullableString) Get() *string

func (NullableString) IsSet ¶

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON ¶

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set ¶

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON ¶

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset ¶

func (v *NullableString) Unset()

type NullableTime ¶

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime ¶

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get ¶

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet ¶

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON ¶

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set ¶

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON ¶

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset ¶

func (v *NullableTime) Unset()

type NullableUpdatePullRequestCondition1Request ¶

type NullableUpdatePullRequestCondition1Request struct {
	// contains filtered or unexported fields
}

func (NullableUpdatePullRequestCondition1Request) Get ¶

func (NullableUpdatePullRequestCondition1Request) IsSet ¶

func (NullableUpdatePullRequestCondition1Request) MarshalJSON ¶

func (*NullableUpdatePullRequestCondition1Request) Set ¶

func (*NullableUpdatePullRequestCondition1Request) UnmarshalJSON ¶

func (v *NullableUpdatePullRequestCondition1Request) UnmarshalJSON(src []byte) error

func (*NullableUpdatePullRequestCondition1Request) Unset ¶

type NullableUpdatePullRequestCondition1RequestSourceMatcher ¶

type NullableUpdatePullRequestCondition1RequestSourceMatcher struct {
	// contains filtered or unexported fields
}

func (NullableUpdatePullRequestCondition1RequestSourceMatcher) Get ¶

func (NullableUpdatePullRequestCondition1RequestSourceMatcher) IsSet ¶

func (NullableUpdatePullRequestCondition1RequestSourceMatcher) MarshalJSON ¶

func (*NullableUpdatePullRequestCondition1RequestSourceMatcher) Set ¶

func (*NullableUpdatePullRequestCondition1RequestSourceMatcher) UnmarshalJSON ¶

func (*NullableUpdatePullRequestCondition1RequestSourceMatcher) Unset ¶

type NullableUpdatePullRequestCondition1RequestSourceMatcherType ¶

type NullableUpdatePullRequestCondition1RequestSourceMatcherType struct {
	// contains filtered or unexported fields
}

func (NullableUpdatePullRequestCondition1RequestSourceMatcherType) Get ¶

func (NullableUpdatePullRequestCondition1RequestSourceMatcherType) IsSet ¶

func (NullableUpdatePullRequestCondition1RequestSourceMatcherType) MarshalJSON ¶

func (*NullableUpdatePullRequestCondition1RequestSourceMatcherType) Set ¶

func (*NullableUpdatePullRequestCondition1RequestSourceMatcherType) UnmarshalJSON ¶

func (*NullableUpdatePullRequestCondition1RequestSourceMatcherType) Unset ¶

type NullableUserAndGroups ¶

type NullableUserAndGroups struct {
	// contains filtered or unexported fields
}

func NewNullableUserAndGroups ¶

func NewNullableUserAndGroups(val *UserAndGroups) *NullableUserAndGroups

func (NullableUserAndGroups) Get ¶

func (NullableUserAndGroups) IsSet ¶

func (v NullableUserAndGroups) IsSet() bool

func (NullableUserAndGroups) MarshalJSON ¶

func (v NullableUserAndGroups) MarshalJSON() ([]byte, error)

func (*NullableUserAndGroups) Set ¶

func (v *NullableUserAndGroups) Set(val *UserAndGroups)

func (*NullableUserAndGroups) UnmarshalJSON ¶

func (v *NullableUserAndGroups) UnmarshalJSON(src []byte) error

func (*NullableUserAndGroups) Unset ¶

func (v *NullableUserAndGroups) Unset()

type NullableUserPasswordUpdate ¶

type NullableUserPasswordUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableUserPasswordUpdate ¶

func NewNullableUserPasswordUpdate(val *UserPasswordUpdate) *NullableUserPasswordUpdate

func (NullableUserPasswordUpdate) Get ¶

func (NullableUserPasswordUpdate) IsSet ¶

func (v NullableUserPasswordUpdate) IsSet() bool

func (NullableUserPasswordUpdate) MarshalJSON ¶

func (v NullableUserPasswordUpdate) MarshalJSON() ([]byte, error)

func (*NullableUserPasswordUpdate) Set ¶

func (*NullableUserPasswordUpdate) UnmarshalJSON ¶

func (v *NullableUserPasswordUpdate) UnmarshalJSON(src []byte) error

func (*NullableUserPasswordUpdate) Unset ¶

func (v *NullableUserPasswordUpdate) Unset()

type NullableUserPickerContext ¶

type NullableUserPickerContext struct {
	// contains filtered or unexported fields
}

func NewNullableUserPickerContext ¶

func NewNullableUserPickerContext(val *UserPickerContext) *NullableUserPickerContext

func (NullableUserPickerContext) Get ¶

func (NullableUserPickerContext) IsSet ¶

func (v NullableUserPickerContext) IsSet() bool

func (NullableUserPickerContext) MarshalJSON ¶

func (v NullableUserPickerContext) MarshalJSON() ([]byte, error)

func (*NullableUserPickerContext) Set ¶

func (*NullableUserPickerContext) UnmarshalJSON ¶

func (v *NullableUserPickerContext) UnmarshalJSON(src []byte) error

func (*NullableUserPickerContext) Unset ¶

func (v *NullableUserPickerContext) Unset()

type NullableUserRename ¶

type NullableUserRename struct {
	// contains filtered or unexported fields
}

func NewNullableUserRename ¶

func NewNullableUserRename(val *UserRename) *NullableUserRename

func (NullableUserRename) Get ¶

func (v NullableUserRename) Get() *UserRename

func (NullableUserRename) IsSet ¶

func (v NullableUserRename) IsSet() bool

func (NullableUserRename) MarshalJSON ¶

func (v NullableUserRename) MarshalJSON() ([]byte, error)

func (*NullableUserRename) Set ¶

func (v *NullableUserRename) Set(val *UserRename)

func (*NullableUserRename) UnmarshalJSON ¶

func (v *NullableUserRename) UnmarshalJSON(src []byte) error

func (*NullableUserRename) Unset ¶

func (v *NullableUserRename) Unset()

type NullableUserUpdate ¶

type NullableUserUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableUserUpdate ¶

func NewNullableUserUpdate(val *UserUpdate) *NullableUserUpdate

func (NullableUserUpdate) Get ¶

func (v NullableUserUpdate) Get() *UserUpdate

func (NullableUserUpdate) IsSet ¶

func (v NullableUserUpdate) IsSet() bool

func (NullableUserUpdate) MarshalJSON ¶

func (v NullableUserUpdate) MarshalJSON() ([]byte, error)

func (*NullableUserUpdate) Set ¶

func (v *NullableUserUpdate) Set(val *UserUpdate)

func (*NullableUserUpdate) UnmarshalJSON ¶

func (v *NullableUserUpdate) UnmarshalJSON(src []byte) error

func (*NullableUserUpdate) Unset ¶

func (v *NullableUserUpdate) Unset()

type PermissionManagementAPIAddGroupToUserRequest ¶

type PermissionManagementAPIAddGroupToUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIAddGroupToUserRequest) Execute ¶

func (PermissionManagementAPIAddGroupToUserRequest) GroupPickerContext ¶

type PermissionManagementAPIAddUserToGroupRequest ¶

type PermissionManagementAPIAddUserToGroupRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIAddUserToGroupRequest) Execute ¶

func (PermissionManagementAPIAddUserToGroupRequest) UserPickerContext ¶

type PermissionManagementAPIAddUserToGroupsRequest ¶

type PermissionManagementAPIAddUserToGroupsRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIAddUserToGroupsRequest) Execute ¶

func (PermissionManagementAPIAddUserToGroupsRequest) UserAndGroups ¶

type PermissionManagementAPIAddUsersToGroupRequest ¶

type PermissionManagementAPIAddUsersToGroupRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIAddUsersToGroupRequest) Execute ¶

func (PermissionManagementAPIAddUsersToGroupRequest) GroupAndUsers ¶

type PermissionManagementAPIClearUserCaptchaChallengeRequest ¶

type PermissionManagementAPIClearUserCaptchaChallengeRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIClearUserCaptchaChallengeRequest) Execute ¶

func (PermissionManagementAPIClearUserCaptchaChallengeRequest) Name ¶

The username

type PermissionManagementAPICreateGroupRequest ¶

type PermissionManagementAPICreateGroupRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPICreateGroupRequest) Execute ¶

func (PermissionManagementAPICreateGroupRequest) Name ¶

Name of the group.

type PermissionManagementAPICreateUserRequest ¶

type PermissionManagementAPICreateUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPICreateUserRequest) AddToDefaultGroup ¶

Set &lt;code&gt;true&lt;/code&gt; to add the user to the default group, which can be used to grant them a set of initial permissions; otherwise, &lt;code&gt;false&lt;/code&gt; to not add them to a group.

func (PermissionManagementAPICreateUserRequest) DisplayName ¶

The display name for the new user.

func (PermissionManagementAPICreateUserRequest) EmailAddress ¶

The e-mail address for the new user.

func (PermissionManagementAPICreateUserRequest) Execute ¶

func (PermissionManagementAPICreateUserRequest) Name ¶

The username for the new user.

func (PermissionManagementAPICreateUserRequest) Notify ¶

If present and not &lt;code&gt;false&lt;/code&gt; instead of requiring a password, the create user will be notified via email their account has been created and requires a password to be reset. This option can only be used if a mail server has been configured.

func (PermissionManagementAPICreateUserRequest) Password ¶

The password for the new user. Required if the &lt;code&gt;notify&lt;/code&gt; parameter is not present or is set to &lt;code&gt;false&lt;/false&gt;

type PermissionManagementAPIDeleteGroupRequest ¶

type PermissionManagementAPIDeleteGroupRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIDeleteGroupRequest) Execute ¶

func (PermissionManagementAPIDeleteGroupRequest) Name ¶

The name identifying the group to delete.

type PermissionManagementAPIDeleteUserRequest ¶

type PermissionManagementAPIDeleteUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIDeleteUserRequest) Execute ¶

func (PermissionManagementAPIDeleteUserRequest) Name ¶

The username identifying the user to delete.

type PermissionManagementAPIEraseUserRequest ¶

type PermissionManagementAPIEraseUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIEraseUserRequest) Execute ¶

func (PermissionManagementAPIEraseUserRequest) Name ¶

The username identifying the user to erase.

type PermissionManagementAPIFindGroupsForUserRequest ¶

type PermissionManagementAPIFindGroupsForUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIFindGroupsForUserRequest) Context ¶

The group which should be used to locate members.

func (PermissionManagementAPIFindGroupsForUserRequest) Execute ¶

func (PermissionManagementAPIFindGroupsForUserRequest) Filter ¶

If specified only users with usernames, display names or email addresses containing the supplied string will be returned.

func (PermissionManagementAPIFindGroupsForUserRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIFindGroupsForUserRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIFindOtherGroupsForUserRequest ¶

type PermissionManagementAPIFindOtherGroupsForUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIFindOtherGroupsForUserRequest) Context ¶

The user which should be used to locate groups.

func (PermissionManagementAPIFindOtherGroupsForUserRequest) Execute ¶

func (PermissionManagementAPIFindOtherGroupsForUserRequest) Filter ¶

If specified only groups with names containing the supplied string will be returned.

func (PermissionManagementAPIFindOtherGroupsForUserRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIFindOtherGroupsForUserRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIFindUsersInGroupRequest ¶

type PermissionManagementAPIFindUsersInGroupRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIFindUsersInGroupRequest) Context ¶

The group which should be used to locate members.

func (PermissionManagementAPIFindUsersInGroupRequest) Execute ¶

func (PermissionManagementAPIFindUsersInGroupRequest) Filter ¶

If specified only users with usernames, display names or email addresses containing the supplied string will be returned.

func (PermissionManagementAPIFindUsersInGroupRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIFindUsersInGroupRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIFindUsersNotInGroupRequest ¶

type PermissionManagementAPIFindUsersNotInGroupRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIFindUsersNotInGroupRequest) Context ¶

The group which should be used to locate members.

func (PermissionManagementAPIFindUsersNotInGroupRequest) Execute ¶

func (PermissionManagementAPIFindUsersNotInGroupRequest) Filter ¶

If specified only users with usernames, display names or email addresses containing the supplied string will be returned.

func (PermissionManagementAPIFindUsersNotInGroupRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIFindUsersNotInGroupRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetGroups1Request ¶

type PermissionManagementAPIGetGroups1Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetGroups1Request) Execute ¶

func (PermissionManagementAPIGetGroups1Request) Filter ¶

If specified only group names containing the supplied string will be returned.

func (PermissionManagementAPIGetGroups1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetGroups1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetGroupsRequest ¶

type PermissionManagementAPIGetGroupsRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetGroupsRequest) Execute ¶

func (PermissionManagementAPIGetGroupsRequest) Filter ¶

func (PermissionManagementAPIGetGroupsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetGroupsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetGroupsWithAnyPermission2Request ¶

type PermissionManagementAPIGetGroupsWithAnyPermission2Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetGroupsWithAnyPermission2Request) Execute ¶

func (PermissionManagementAPIGetGroupsWithAnyPermission2Request) Filter ¶

If specified only group names containing the supplied string will be returned.

func (PermissionManagementAPIGetGroupsWithAnyPermission2Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetGroupsWithAnyPermission2Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetGroupsWithAnyPermissionRequest ¶

type PermissionManagementAPIGetGroupsWithAnyPermissionRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetGroupsWithAnyPermissionRequest) Execute ¶

func (PermissionManagementAPIGetGroupsWithAnyPermissionRequest) Filter ¶

If specified only group names containing the supplied string will be returned

func (PermissionManagementAPIGetGroupsWithAnyPermissionRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetGroupsWithAnyPermissionRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetGroupsWithoutAnyPermission2Request ¶

type PermissionManagementAPIGetGroupsWithoutAnyPermission2Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetGroupsWithoutAnyPermission2Request) Execute ¶

func (PermissionManagementAPIGetGroupsWithoutAnyPermission2Request) Filter ¶

If specified only group names containing the supplied string will be returned.

func (PermissionManagementAPIGetGroupsWithoutAnyPermission2Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetGroupsWithoutAnyPermission2Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetGroupsWithoutAnyPermissionRequest ¶

type PermissionManagementAPIGetGroupsWithoutAnyPermissionRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetGroupsWithoutAnyPermissionRequest) Execute ¶

func (PermissionManagementAPIGetGroupsWithoutAnyPermissionRequest) Filter ¶

If specified only user names containing the supplied string will be returned

func (PermissionManagementAPIGetGroupsWithoutAnyPermissionRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetGroupsWithoutAnyPermissionRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetUserDirectoriesRequest ¶

type PermissionManagementAPIGetUserDirectoriesRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetUserDirectoriesRequest) Execute ¶

func (PermissionManagementAPIGetUserDirectoriesRequest) IncludeInactive ¶

Set &lt;code&gt;true&lt;/code&gt; to include inactive directories; otherwise, &lt;code&gt;false&lt;/code&gt; to only return active directories.

type PermissionManagementAPIGetUsers1Request ¶

type PermissionManagementAPIGetUsers1Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetUsers1Request) Execute ¶

func (PermissionManagementAPIGetUsers1Request) Filter ¶

If specified only users with usernames, display name or email addresses containing the supplied string will be returned.

func (PermissionManagementAPIGetUsers1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetUsers1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetUsersWithAnyPermission2Request ¶

type PermissionManagementAPIGetUsersWithAnyPermission2Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetUsersWithAnyPermission2Request) Execute ¶

func (PermissionManagementAPIGetUsersWithAnyPermission2Request) Filter ¶

If specified only user names containing the supplied string will be returned.

func (PermissionManagementAPIGetUsersWithAnyPermission2Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetUsersWithAnyPermission2Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetUsersWithAnyPermissionRequest ¶

type PermissionManagementAPIGetUsersWithAnyPermissionRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetUsersWithAnyPermissionRequest) Execute ¶

func (PermissionManagementAPIGetUsersWithAnyPermissionRequest) Filter ¶

If specified only user names containing the supplied string will be returned

func (PermissionManagementAPIGetUsersWithAnyPermissionRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetUsersWithAnyPermissionRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetUsersWithoutAnyPermissionRequest ¶

type PermissionManagementAPIGetUsersWithoutAnyPermissionRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetUsersWithoutAnyPermissionRequest) Execute ¶

func (PermissionManagementAPIGetUsersWithoutAnyPermissionRequest) Filter ¶

If specified only user names containing the supplied string will be returned

func (PermissionManagementAPIGetUsersWithoutAnyPermissionRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetUsersWithoutAnyPermissionRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIGetUsersWithoutPermission1Request ¶

type PermissionManagementAPIGetUsersWithoutPermission1Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIGetUsersWithoutPermission1Request) Execute ¶

func (PermissionManagementAPIGetUsersWithoutPermission1Request) Filter ¶

If specified only user names containing the supplied string will be returned.

func (PermissionManagementAPIGetUsersWithoutPermission1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PermissionManagementAPIGetUsersWithoutPermission1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PermissionManagementAPIRemoveGroupFromUserRequest ¶

type PermissionManagementAPIRemoveGroupFromUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIRemoveGroupFromUserRequest) Execute ¶

func (PermissionManagementAPIRemoveGroupFromUserRequest) GroupPickerContext ¶

type PermissionManagementAPIRemoveUserFromGroupRequest ¶

type PermissionManagementAPIRemoveUserFromGroupRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIRemoveUserFromGroupRequest) Execute ¶

func (PermissionManagementAPIRemoveUserFromGroupRequest) UserPickerContext ¶

type PermissionManagementAPIRenameUserRequest ¶

type PermissionManagementAPIRenameUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIRenameUserRequest) Execute ¶

func (PermissionManagementAPIRenameUserRequest) UserRename ¶

type PermissionManagementAPIRevokePermissions1Request ¶

type PermissionManagementAPIRevokePermissions1Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIRevokePermissions1Request) Execute ¶

func (PermissionManagementAPIRevokePermissions1Request) Group ¶

The names of the groups

func (PermissionManagementAPIRevokePermissions1Request) User ¶

The names of the users

type PermissionManagementAPIRevokePermissionsForGroup2Request ¶

type PermissionManagementAPIRevokePermissionsForGroup2Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIRevokePermissionsForGroup2Request) Execute ¶

func (PermissionManagementAPIRevokePermissionsForGroup2Request) Name ¶

The name of the group.

type PermissionManagementAPIRevokePermissionsForGroupRequest ¶

type PermissionManagementAPIRevokePermissionsForGroupRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIRevokePermissionsForGroupRequest) Execute ¶

func (PermissionManagementAPIRevokePermissionsForGroupRequest) Name ¶

The name of the group

type PermissionManagementAPIRevokePermissionsForUser2Request ¶

type PermissionManagementAPIRevokePermissionsForUser2Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIRevokePermissionsForUser2Request) Execute ¶

func (PermissionManagementAPIRevokePermissionsForUser2Request) Name ¶

The name of the user.

type PermissionManagementAPIRevokePermissionsForUserRequest ¶

type PermissionManagementAPIRevokePermissionsForUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIRevokePermissionsForUserRequest) Execute ¶

func (PermissionManagementAPIRevokePermissionsForUserRequest) Name ¶

The name of the user

type PermissionManagementAPISearchPermissions1Request ¶

type PermissionManagementAPISearchPermissions1Request struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPISearchPermissions1Request) Execute ¶

func (PermissionManagementAPISearchPermissions1Request) FilterText ¶

Name of the user or group to filter the name of

func (PermissionManagementAPISearchPermissions1Request) Permission ¶

Permissions to filter by. See the [permissions documentation](https://confluence.atlassian.com/display/BitbucketServer/Using+repository+permissions)for a detailed explanation of what each permission entails. This parameter can be specified multiple times to filter by more than one permission, and can contain repository, project, and global permissions.

func (PermissionManagementAPISearchPermissions1Request) Type_ ¶

Type of entity (user or group)Valid entity types are: - USER- GROUP

type PermissionManagementAPIService ¶

type PermissionManagementAPIService service

PermissionManagementAPIService PermissionManagementAPI service

func (*PermissionManagementAPIService) AddGroupToUser ¶

AddGroupToUser Add user to group

<strong>Deprecated since 2.10</strong>. Use /rest/users/add-groups instead.

Add a user to a group. This is very similar to <code>groups/add-user</code>, but with the <em>context</em> and <em>itemName</em> attributes of the supplied request entity reversed. On the face of it this may appear redundant, but it facilitates a specific UI component in the application.

In the request entity, the <em>context</em> attribute is the user and the <em>itemName</em> is the group.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIAddGroupToUserRequest

Deprecated

func (*PermissionManagementAPIService) AddGroupToUserExecute ¶

Execute executes the request Deprecated

func (*PermissionManagementAPIService) AddUserToGroup ¶

AddUserToGroup Add user to group

<strong>Deprecated since 2.10</strong>. Use /rest/users/add-groups instead.

Add a user to a group.

In the request entity, the <em>context</em> attribute is the group and the <em>itemName</em> is the user.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIAddUserToGroupRequest

Deprecated

func (*PermissionManagementAPIService) AddUserToGroupExecute ¶

Execute executes the request Deprecated

func (*PermissionManagementAPIService) AddUserToGroups ¶

AddUserToGroups Add user to groups

Add a user to one or more groups.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIAddUserToGroupsRequest

func (*PermissionManagementAPIService) AddUserToGroupsExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) AddUsersToGroup ¶

AddUsersToGroup Add multiple users to group

Add multiple users to a group.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIAddUsersToGroupRequest

func (*PermissionManagementAPIService) AddUsersToGroupExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) ClearUserCaptchaChallenge ¶

ClearUserCaptchaChallenge Clear CAPTCHA for user

Clears any CAPTCHA challenge that may constrain the user with the supplied username when they authenticate. Additionally any counter or metric that contributed towards the user being issued the CAPTCHA challenge (for instance too many consecutive failed logins) will also be reset.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource, and may not clear the CAPTCHA of a user with greater permissions than themselves.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIClearUserCaptchaChallengeRequest

func (*PermissionManagementAPIService) ClearUserCaptchaChallengeExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) CreateGroup ¶

CreateGroup Create group

Create a new group.

The authenticated user must have <strong>ADMIN</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPICreateGroupRequest

func (*PermissionManagementAPIService) CreateGroupExecute ¶

Execute executes the request

@return RestDetailedGroup

func (*PermissionManagementAPIService) CreateUser ¶

CreateUser Create user

Creates a new user from the assembled query parameters.

The default group can be used to control initial permissions for new users, such as granting users the ability to login or providing read access to certain projects or repositories. If the user is not added to the default group, they may not be able to login after their account is created until explicit permissions are configured.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPICreateUserRequest

func (*PermissionManagementAPIService) CreateUserExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) DeleteGroup ¶

DeleteGroup Remove group

Deletes the specified group, removing them from the system. This also removes any permissions that may have been granted to the group.

A user may not delete the last group that is granting them administrative permissions, or a group with greater permissions than themselves.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIDeleteGroupRequest

func (*PermissionManagementAPIService) DeleteGroupExecute ¶

Execute executes the request

@return RestDetailedGroup

func (*PermissionManagementAPIService) DeleteUser ¶

DeleteUser Remove user

Deletes the specified user, removing them from the system. This also removes any permissions that may have been granted to the user.

A user may not delete themselves, and a user with <strong>ADMIN</strong> permissions may not delete a user with <strong>SYS_ADMIN</strong>permissions.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIDeleteUserRequest

func (*PermissionManagementAPIService) DeleteUserExecute ¶

Execute executes the request

@return RestDetailedUser

func (*PermissionManagementAPIService) EraseUser ¶

EraseUser Erase user information

Erases personally identifying user data for a deleted user.

References in the application to the original username will be either removed or updated to a new non-identifying username. Refer to the <a href="https://confluence.atlassian.com/gdpr/bitbucket-right-to-erasure-949770560.html">support guide</a> for details about what data is and isn't erased.

User erasure can only be performed on a deleted user. If the user has not been deleted first then this endpoint will return a bad request and no erasure will be performed.

Erasing user data is <strong>irreversible</strong> and may lead to a degraded user experience. This method should not be used as part of a standard user deletion and cleanup process.

Plugins can participate in user erasure by defining a <code>&lt;user-erasure-handler&gt;</code> module. If one or more plugin modules fail, an error summary of the failing modules is returned.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIEraseUserRequest

func (*PermissionManagementAPIService) EraseUserExecute ¶

Execute executes the request

@return RestErasedUser

func (*PermissionManagementAPIService) FindGroupsForUser ¶

FindGroupsForUser Get groups for user

Retrieves a list of users that are <em>not</em> members of a specified group. <p>The authenticated user must have the <strong>LICENSED_USER</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIFindGroupsForUserRequest

func (*PermissionManagementAPIService) FindGroupsForUserExecute ¶

Execute executes the request

@return FindUsersInGroup200Response

func (*PermissionManagementAPIService) FindOtherGroupsForUser ¶

FindOtherGroupsForUser Find other groups for user

Retrieves a list of groups the specified user is <em>not</em> a member of. <p>The authenticated user must have the <strong>LICENSED_USER</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIFindOtherGroupsForUserRequest

func (*PermissionManagementAPIService) FindOtherGroupsForUserExecute ¶

Execute executes the request

@return GetGroups1200Response

func (*PermissionManagementAPIService) FindUsersInGroup ¶

FindUsersInGroup Get group members

Retrieves a list of users that are members of a specified group. <p>The authenticated user must have the <strong>LICENSED_USER</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIFindUsersInGroupRequest

func (*PermissionManagementAPIService) FindUsersInGroupExecute ¶

Execute executes the request

@return FindUsersInGroup200Response

func (*PermissionManagementAPIService) FindUsersNotInGroup ¶

FindUsersNotInGroup Get members not in group

Retrieves a list of users that are <em>not</em> members of a specified group. <p>The authenticated user must have the <strong>LICENSED_USER</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIFindUsersNotInGroupRequest

func (*PermissionManagementAPIService) FindUsersNotInGroupExecute ¶

Execute executes the request

@return FindUsersInGroup200Response

func (*PermissionManagementAPIService) GetGroups ¶

GetGroups Get group names

Retrieve a page of group names.

The authenticated user must have <strong>LICENSED_USER</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIGetGroupsRequest

func (*PermissionManagementAPIService) GetGroups1 ¶

GetGroups1 Get groups

Retrieve a page of groups.

The authenticated user must have <strong>LICENSED_USER</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIGetGroups1Request

func (*PermissionManagementAPIService) GetGroups1Execute ¶

Execute executes the request

@return GetGroups1200Response

func (*PermissionManagementAPIService) GetGroupsExecute ¶

Execute executes the request

@return GetGroups200Response

func (*PermissionManagementAPIService) GetGroupsWithAnyPermission ¶

GetGroupsWithAnyPermission Get groups with a global permission

Retrieve a page of groups that have been granted at least one global permission.

The authenticated user must have <strong>ADMIN</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIGetGroupsWithAnyPermissionRequest

func (*PermissionManagementAPIService) GetGroupsWithAnyPermission2 ¶

func (a *PermissionManagementAPIService) GetGroupsWithAnyPermission2(ctx context.Context, projectKey string, repositorySlug string) PermissionManagementAPIGetGroupsWithAnyPermission2Request

GetGroupsWithAnyPermission2 Get groups with permission to repository

Retrieve a page of groups that have been granted at least one permission for the specified repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository or a higher project or global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPIGetGroupsWithAnyPermission2Request

func (*PermissionManagementAPIService) GetGroupsWithAnyPermission2Execute ¶

Execute executes the request

@return GetGroupsWithAnyPermission200Response

func (*PermissionManagementAPIService) GetGroupsWithAnyPermissionExecute ¶

Execute executes the request

@return GetGroupsWithAnyPermission200Response

func (*PermissionManagementAPIService) GetGroupsWithoutAnyPermission ¶

GetGroupsWithoutAnyPermission Get groups with no global permission

Retrieve a page of groups that have no granted global permissions.

The authenticated user must have <strong>ADMIN</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIGetGroupsWithoutAnyPermissionRequest

func (*PermissionManagementAPIService) GetGroupsWithoutAnyPermission2 ¶

func (a *PermissionManagementAPIService) GetGroupsWithoutAnyPermission2(ctx context.Context, projectKey string, repositorySlug string) PermissionManagementAPIGetGroupsWithoutAnyPermission2Request

GetGroupsWithoutAnyPermission2 Get groups without repository permission

Retrieve a page of groups that have no granted permissions for the specified repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository or a higher project or global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPIGetGroupsWithoutAnyPermission2Request

func (*PermissionManagementAPIService) GetGroupsWithoutAnyPermission2Execute ¶

Execute executes the request

@return GetGroups1200Response

func (*PermissionManagementAPIService) GetGroupsWithoutAnyPermissionExecute ¶

Execute executes the request

@return GetGroups1200Response

func (*PermissionManagementAPIService) GetUserDirectories ¶

GetUserDirectories Get directories

Retrieve a list of active directories.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIGetUserDirectoriesRequest

func (*PermissionManagementAPIService) GetUserDirectoriesExecute ¶

Execute executes the request

@return RestUserDirectory

func (*PermissionManagementAPIService) GetUsers1 ¶

GetUsers1 Get users

Retrieve a page of users.

The authenticated user must have the <strong>LICENSED_USER</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIGetUsers1Request

func (*PermissionManagementAPIService) GetUsers1Execute ¶

Execute executes the request

@return FindUsersInGroup200Response

func (*PermissionManagementAPIService) GetUsersWithAnyPermission ¶

GetUsersWithAnyPermission Get users with a global permission

Retrieve a page of users that have been granted at least one global permission.

The authenticated user must have <strong>ADMIN</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIGetUsersWithAnyPermissionRequest

func (*PermissionManagementAPIService) GetUsersWithAnyPermission2 ¶

func (a *PermissionManagementAPIService) GetUsersWithAnyPermission2(ctx context.Context, projectKey string, repositorySlug string) PermissionManagementAPIGetUsersWithAnyPermission2Request

GetUsersWithAnyPermission2 Get users with permission to repository

Retrieve a page of users that have been granted at least one permission for the specified repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository or a higher project or global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPIGetUsersWithAnyPermission2Request

func (*PermissionManagementAPIService) GetUsersWithAnyPermission2Execute ¶

Execute executes the request

@return GetUsersWithAnyPermission1200Response

func (*PermissionManagementAPIService) GetUsersWithAnyPermissionExecute ¶

Execute executes the request

@return GetGroupsWithAnyPermission200Response

func (*PermissionManagementAPIService) GetUsersWithoutAnyPermission ¶

GetUsersWithoutAnyPermission Get users with no global permission

Retrieve a page of users that have no granted global permissions.

The authenticated user must have <strong>ADMIN</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIGetUsersWithoutAnyPermissionRequest

func (*PermissionManagementAPIService) GetUsersWithoutAnyPermissionExecute ¶

Execute executes the request

@return GetLikers200Response

func (*PermissionManagementAPIService) GetUsersWithoutPermission1 ¶

func (a *PermissionManagementAPIService) GetUsersWithoutPermission1(ctx context.Context, projectKey string, repositorySlug string) PermissionManagementAPIGetUsersWithoutPermission1Request

GetUsersWithoutPermission1 Get users without repository permission

Retrieve a page of <i>licensed</i> users that have no granted permissions for the specified repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository or a higher project or global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPIGetUsersWithoutPermission1Request

func (*PermissionManagementAPIService) GetUsersWithoutPermission1Execute ¶

Execute executes the request

@return GetLikers200Response

func (*PermissionManagementAPIService) RemoveGroupFromUser ¶

RemoveGroupFromUser Remove user from group

Remove a user from a group. This is very similar to <code>groups/remove-user</code>, but with the <em>context</em> and <em>itemName</em> attributes of the supplied request entity reversed. On the face of it this may appear redundant, but it facilitates a specific UI component in the application.

In the request entity, the <em>context</em> attribute is the user and the <em>itemName</em> is the group.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIRemoveGroupFromUserRequest

func (*PermissionManagementAPIService) RemoveGroupFromUserExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) RemoveUserFromGroup ¶

RemoveUserFromGroup Remove user from group

<strong>Deprecated since 2.10</strong>. Use /rest/users/remove-groups instead.

Remove a user from a group.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

In the request entity, the <em>context</em> attribute is the group and the <em>itemName</em> is the user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIRemoveUserFromGroupRequest

Deprecated

func (*PermissionManagementAPIService) RemoveUserFromGroupExecute ¶

Execute executes the request Deprecated

func (*PermissionManagementAPIService) RenameUser ¶

RenameUser Rename user

Rename a user.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIRenameUserRequest

func (*PermissionManagementAPIService) RenameUserExecute ¶

Execute executes the request

@return RestDetailedUser

func (*PermissionManagementAPIService) RevokePermissions1 ¶

RevokePermissions1 Revoke all repository permissions for users and groups

Revoke all permissions for the specified repository for the given groups and users.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified repository or a higher global permission to call this resource.

In addition, a user may not revoke a group's permission if their own permission would be revoked as a result, nor may they revoke their own permission unless they have a global permission that already implies that permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPIRevokePermissions1Request

func (*PermissionManagementAPIService) RevokePermissions1Execute ¶

Execute executes the request

func (*PermissionManagementAPIService) RevokePermissionsForGroup ¶

RevokePermissionsForGroup Revoke all global permissions for group

Revoke all global permissions for a group.

The authenticated user must have:

- <strong>ADMIN</strong> permission or higher; and - greater or equal permissions than the current permission level of the group (a user may not demote the permission level of a group with higher permissions than them)

to call this resource. In addition, a user may not revoke a group's permissions if their own permission level would be reduced as a result.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIRevokePermissionsForGroupRequest

func (*PermissionManagementAPIService) RevokePermissionsForGroup2 ¶

func (a *PermissionManagementAPIService) RevokePermissionsForGroup2(ctx context.Context, projectKey string, repositorySlug string) PermissionManagementAPIRevokePermissionsForGroup2Request

RevokePermissionsForGroup2 Revoke group repository permission

Revoke all permissions for the specified repository for a group.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository or a higher project or global permission to call this resource.

In addition, a user may not revoke a group's permissions if it will reduce their own permission level.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPIRevokePermissionsForGroup2Request

func (*PermissionManagementAPIService) RevokePermissionsForGroup2Execute ¶

Execute executes the request

func (*PermissionManagementAPIService) RevokePermissionsForGroupExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) RevokePermissionsForUser ¶

RevokePermissionsForUser Revoke all global permissions for user

Revoke all global permissions for a user.

The authenticated user must have:

- <strong>ADMIN</strong> permission or higher; and - greater or equal permissions than the current permission level of the user (a user may not demote the permission level of a user with higher permissions than them)

to call this resource. In addition, a user may not demote their own permission level.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIRevokePermissionsForUserRequest

func (*PermissionManagementAPIService) RevokePermissionsForUser2 ¶

func (a *PermissionManagementAPIService) RevokePermissionsForUser2(ctx context.Context, projectKey string, repositorySlug string) PermissionManagementAPIRevokePermissionsForUser2Request

RevokePermissionsForUser2 Revoke user repository permission

Revoke all permissions for the specified repository for a user.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository or a higher project or global permission to call this resource.

In addition, a user may not revoke their own repository permissions if they do not have a higher project or global permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPIRevokePermissionsForUser2Request

func (*PermissionManagementAPIService) RevokePermissionsForUser2Execute ¶

Execute executes the request

func (*PermissionManagementAPIService) RevokePermissionsForUserExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) SearchPermissions1 ¶

SearchPermissions1 Search repository permissions

Search direct and implied permissions of users and groups. This endpoint returns a superset of the results returned by the /users and /groups endpoints because it allows filtering by project and global permissions too.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository or a higher project/global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPISearchPermissions1Request

func (*PermissionManagementAPIService) SearchPermissions1Execute ¶

Execute executes the request

func (*PermissionManagementAPIService) SetPermissionForGroup ¶

func (a *PermissionManagementAPIService) SetPermissionForGroup(ctx context.Context, projectKey string, repositorySlug string) PermissionManagementAPISetPermissionForGroupRequest

SetPermissionForGroup Update group repository permission

Promote or demote a group's permission level for the specified repository. Available repository permissions are:

- REPO_READ - REPO_WRITE - REPO_ADMIN

See the <a href="https://confluence.atlassian.com/display/BitbucketServer/Using+repository+permissions">Bitbucket Server documentation</a> for a detailed explanation of what each permission entails.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository or a higher project or global permission to call this resource. In addition, a user may not demote a group's permission level if their own permission level would be reduced as a result.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPISetPermissionForGroupRequest

func (*PermissionManagementAPIService) SetPermissionForGroupExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) SetPermissionForGroups ¶

SetPermissionForGroups Update global permission for group

Promote or demote a group's global permission level. Available global permissions are:

- LICENSED_USER - PROJECT_CREATE - ADMIN - SYS_ADMIN

See the <a href="https://confluence.atlassian.com/display/BitbucketServer/Global+permissions">Bitbucket Server documentation</a> for a detailed explanation of what each permission entails.

The authenticated user must have:

- <strong>ADMIN</strong> permission or higher; and - the permission they are attempting to grant or higher; and - greater or equal permissions than the current permission level of the group (a user may not demote the permission level of a group with higher permissions than them)

to call this resource. In addition, a user may not demote a group's permission level if their own permission level would be reduced as a result.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPISetPermissionForGroupsRequest

func (*PermissionManagementAPIService) SetPermissionForGroupsExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) SetPermissionForUser ¶

func (a *PermissionManagementAPIService) SetPermissionForUser(ctx context.Context, projectKey string, repositorySlug string) PermissionManagementAPISetPermissionForUserRequest

SetPermissionForUser Update user repository permission

Promote or demote a user's permission level for the specified repository. Available repository permissions are:

- REPO_READ</li>- REPO_WRITE</li>- REPO_ADMIN</li></ul>See the <a href="https://confluence.atlassian.com/display/BitbucketServer/Using+repository+permissions">Bitbucket Server documentation</a> for a detailed explanation of what each permission entails.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository or a higher project or global permission to call this resource. In addition, a user may not reduce their own permission level unless they have a project or global permission that already implies that permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PermissionManagementAPISetPermissionForUserRequest

func (*PermissionManagementAPIService) SetPermissionForUserExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) SetPermissionForUsers ¶

SetPermissionForUsers Update global permission for user

Promote or demote the global permission level of a user. Available global permissions are:

- LICENSED_USER - PROJECT_CREATE - ADMIN - SYS_ADMIN

See the <a href="https://confluence.atlassian.com/display/BitbucketServer/Global+permissions">Bitbucket Server documentation</a> for a detailed explanation of what each permission entails.

The authenticated user must have:

- <strong>ADMIN</strong> permission or higher; and - the permission they are attempting to grant; and - greater or equal permissions than the current permission level of the user (a user may not demote the permission level of a user with higher permissions than them)

to call this resource. In addition, a user may not demote their own permission level.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPISetPermissionForUsersRequest

func (*PermissionManagementAPIService) SetPermissionForUsersExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) UpdateUserDetails ¶

UpdateUserDetails Update user details

Update a user's details.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIUpdateUserDetailsRequest

func (*PermissionManagementAPIService) UpdateUserDetailsExecute ¶

Execute executes the request

@return RestDetailedUser

func (*PermissionManagementAPIService) UpdateUserPassword ¶

UpdateUserPassword Set password for user

Update a user's password.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource, and may not update the password of a user with greater permissions than themselves.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIUpdateUserPasswordRequest

func (*PermissionManagementAPIService) UpdateUserPasswordExecute ¶

Execute executes the request

func (*PermissionManagementAPIService) ValidateErasable ¶

ValidateErasable Check user removal

Validate if a user can be erased.

A username is only valid for erasure if it exists as the username of a deleted user. This endpoint will return an appropriate error response if the supplied username is invalid for erasure.

This endpoint does <strong>not</strong> perform the actual user erasure, and will not modify the application in any way.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PermissionManagementAPIValidateErasableRequest

func (*PermissionManagementAPIService) ValidateErasableExecute ¶

Execute executes the request

type PermissionManagementAPISetPermissionForGroupRequest ¶

type PermissionManagementAPISetPermissionForGroupRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPISetPermissionForGroupRequest) Execute ¶

func (PermissionManagementAPISetPermissionForGroupRequest) Name ¶

The names of the groups.

func (PermissionManagementAPISetPermissionForGroupRequest) Permission ¶

The permission to grant

type PermissionManagementAPISetPermissionForGroupsRequest ¶

type PermissionManagementAPISetPermissionForGroupsRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPISetPermissionForGroupsRequest) Execute ¶

func (PermissionManagementAPISetPermissionForGroupsRequest) Name ¶

The names of the groups

func (PermissionManagementAPISetPermissionForGroupsRequest) Permission ¶

The permission to grant

type PermissionManagementAPISetPermissionForUserRequest ¶

type PermissionManagementAPISetPermissionForUserRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPISetPermissionForUserRequest) Execute ¶

func (PermissionManagementAPISetPermissionForUserRequest) Name ¶

The names of the users.

func (PermissionManagementAPISetPermissionForUserRequest) Permission ¶

The permission to grant

type PermissionManagementAPISetPermissionForUsersRequest ¶

type PermissionManagementAPISetPermissionForUsersRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPISetPermissionForUsersRequest) Execute ¶

func (PermissionManagementAPISetPermissionForUsersRequest) Name ¶

The names of the users

func (PermissionManagementAPISetPermissionForUsersRequest) Permission ¶

The permission to grant

type PermissionManagementAPIUpdateUserDetailsRequest ¶

type PermissionManagementAPIUpdateUserDetailsRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIUpdateUserDetailsRequest) Execute ¶

func (PermissionManagementAPIUpdateUserDetailsRequest) UserUpdate ¶

type PermissionManagementAPIUpdateUserPasswordRequest ¶

type PermissionManagementAPIUpdateUserPasswordRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIUpdateUserPasswordRequest) AdminPasswordUpdate ¶

func (PermissionManagementAPIUpdateUserPasswordRequest) Execute ¶

type PermissionManagementAPIValidateErasableRequest ¶

type PermissionManagementAPIValidateErasableRequest struct {
	ApiService *PermissionManagementAPIService
	// contains filtered or unexported fields
}

func (PermissionManagementAPIValidateErasableRequest) Execute ¶

func (PermissionManagementAPIValidateErasableRequest) Name ¶

The username of the user to validate erasability for.

type ProjectAPICreate3Request ¶

type ProjectAPICreate3Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPICreate3Request) Execute ¶

func (ProjectAPICreate3Request) RestProjectSettingsRestrictionRequest ¶

func (r ProjectAPICreate3Request) RestProjectSettingsRestrictionRequest(restProjectSettingsRestrictionRequest RestProjectSettingsRestrictionRequest) ProjectAPICreate3Request

The project settings restriction to create

type ProjectAPICreateProjectRequest ¶

type ProjectAPICreateProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPICreateProjectRequest) Execute ¶

func (ProjectAPICreateProjectRequest) RestProject ¶

The project.

type ProjectAPICreateRepositoryRequest ¶

type ProjectAPICreateRepositoryRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPICreateRepositoryRequest) Execute ¶

func (ProjectAPICreateRepositoryRequest) RestRepository ¶

The repository

type ProjectAPICreateRestrictionsRequest ¶

type ProjectAPICreateRestrictionsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPICreateRestrictionsRequest) Execute ¶

func (ProjectAPICreateRestrictionsRequest) RestRestrictionRequest ¶

func (r ProjectAPICreateRestrictionsRequest) RestRestrictionRequest(restRestrictionRequest []RestRestrictionRequest) ProjectAPICreateRestrictionsRequest

The request containing a list of the details of the restrictions to create.

type ProjectAPICreateWebhookRequest ¶

type ProjectAPICreateWebhookRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPICreateWebhookRequest) Execute ¶

func (ProjectAPICreateWebhookRequest) RestWebhook ¶

The webhook to be created for this project.

type ProjectAPIDelete7Request ¶

type ProjectAPIDelete7Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIDelete7Request) ComponentKey ¶

func (r ProjectAPIDelete7Request) ComponentKey(componentKey string) ProjectAPIDelete7Request

A key to uniquely identify individually restrictable subcomponents of a feature within the provided feature key and namespace

func (ProjectAPIDelete7Request) Execute ¶

func (r ProjectAPIDelete7Request) Execute() (*http.Response, error)

func (ProjectAPIDelete7Request) FeatureKey ¶

func (r ProjectAPIDelete7Request) FeatureKey(featureKey string) ProjectAPIDelete7Request

A key to uniquely identify the feature within the provided namespace

func (ProjectAPIDelete7Request) Namespace ¶

A namespace used to identify the provider of the feature

type ProjectAPIDeleteAutoDeclineSettingsRequest ¶

type ProjectAPIDeleteAutoDeclineSettingsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIDeleteAutoDeclineSettingsRequest) Execute ¶

type ProjectAPIDeleteProjectRequest ¶

type ProjectAPIDeleteProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIDeleteProjectRequest) Execute ¶

type ProjectAPIDeleteRepositoryRequest ¶

type ProjectAPIDeleteRepositoryRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIDeleteRepositoryRequest) Execute ¶

type ProjectAPIDeleteRestrictionRequest ¶

type ProjectAPIDeleteRestrictionRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIDeleteRestrictionRequest) Execute ¶

type ProjectAPIDeleteWebhookRequest ¶

type ProjectAPIDeleteWebhookRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIDeleteWebhookRequest) Execute ¶

type ProjectAPIDisableHookRequest ¶

type ProjectAPIDisableHookRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIDisableHookRequest) Execute ¶

type ProjectAPIEnableHookRequest ¶

type ProjectAPIEnableHookRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIEnableHookRequest) ContentLength ¶

func (r ProjectAPIEnableHookRequest) ContentLength(contentLength int64) ProjectAPIEnableHookRequest

The content length.

func (ProjectAPIEnableHookRequest) Execute ¶

type ProjectAPIFindWebhooksRequest ¶

type ProjectAPIFindWebhooksRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIFindWebhooksRequest) Event ¶

List of &lt;code&gt;com.atlassian.webhooks.WebhookEvent&lt;/code&gt; IDs to filter for

func (ProjectAPIFindWebhooksRequest) Execute ¶

func (ProjectAPIFindWebhooksRequest) Statistics ¶

&lt;code&gt;true&lt;/code&gt; if statistics should be provided for all found webhooks

type ProjectAPIForkRepositoryRequest ¶

type ProjectAPIForkRepositoryRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIForkRepositoryRequest) Execute ¶

func (ProjectAPIForkRepositoryRequest) RestRepository ¶

The rest fork.

type ProjectAPIGet5Request ¶

type ProjectAPIGet5Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGet5Request) ComponentKey ¶

func (r ProjectAPIGet5Request) ComponentKey(componentKey string) ProjectAPIGet5Request

The component key to uniquely identify individually restrictable subcomponents of a feature within the provided feature key and namespace

func (ProjectAPIGet5Request) Execute ¶

func (ProjectAPIGet5Request) FeatureKey ¶

func (r ProjectAPIGet5Request) FeatureKey(featureKey string) ProjectAPIGet5Request

The feature key to uniquely identify the feature within the provided namespace

func (ProjectAPIGet5Request) Namespace ¶

func (r ProjectAPIGet5Request) Namespace(namespace string) ProjectAPIGet5Request

The namespace used to identify the provider of the feature

type ProjectAPIGetAllRequest ¶

type ProjectAPIGetAllRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetAllRequest) Execute ¶

func (ProjectAPIGetAllRequest) FeatureKey ¶

func (r ProjectAPIGetAllRequest) FeatureKey(featureKey string) ProjectAPIGetAllRequest

A key to uniquely identify the feature within the provided namespace

func (ProjectAPIGetAllRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetAllRequest) Namespace ¶

A namespace used to identify the provider of the feature

func (ProjectAPIGetAllRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetAutoDeclineSettingsRequest ¶

type ProjectAPIGetAutoDeclineSettingsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetAutoDeclineSettingsRequest) Execute ¶

type ProjectAPIGetAvatarRequest ¶

type ProjectAPIGetAvatarRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetAvatarRequest) Execute ¶

func (ProjectAPIGetAvatarRequest) Version ¶

(optional) Version used for HTTP caching only - any non-blank version will result in a large max-age Cache-Control header. Note that this does not affect the Last-Modified header.

type ProjectAPIGetConfigurationsRequest ¶

type ProjectAPIGetConfigurationsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetConfigurationsRequest) Execute ¶

func (ProjectAPIGetConfigurationsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetConfigurationsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetDefaultBranch2Request ¶

type ProjectAPIGetDefaultBranch2Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetDefaultBranch2Request) Execute ¶

type ProjectAPIGetForkedRepositoriesRequest ¶

type ProjectAPIGetForkedRepositoriesRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetForkedRepositoriesRequest) Execute ¶

func (ProjectAPIGetForkedRepositoriesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetForkedRepositoriesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetGroupsWithAnyPermission1Request ¶

type ProjectAPIGetGroupsWithAnyPermission1Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetGroupsWithAnyPermission1Request) Execute ¶

func (ProjectAPIGetGroupsWithAnyPermission1Request) Filter ¶

If specified only group names containing the supplied string will be returned

func (ProjectAPIGetGroupsWithAnyPermission1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetGroupsWithAnyPermission1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetGroupsWithoutAnyPermission1Request ¶

type ProjectAPIGetGroupsWithoutAnyPermission1Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetGroupsWithoutAnyPermission1Request) Execute ¶

func (ProjectAPIGetGroupsWithoutAnyPermission1Request) Filter ¶

If specified only group names containing the supplied string will be returned

func (ProjectAPIGetGroupsWithoutAnyPermission1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetGroupsWithoutAnyPermission1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetLatestInvocationRequest ¶

type ProjectAPIGetLatestInvocationRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetLatestInvocationRequest) Event ¶

The string ID of a specific event to retrieve the last invocation for.

func (ProjectAPIGetLatestInvocationRequest) Execute ¶

func (ProjectAPIGetLatestInvocationRequest) Outcome ¶

The outcome to filter for. Can be SUCCESS, FAILURE, ERROR. None specified means that the all will be considered

type ProjectAPIGetProjectAvatarRequest ¶

type ProjectAPIGetProjectAvatarRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetProjectAvatarRequest) Execute ¶

func (ProjectAPIGetProjectAvatarRequest) S ¶

The desired size of the image. The server will return an image as close as possible to the specified size.

type ProjectAPIGetProjectRequest ¶

type ProjectAPIGetProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetProjectRequest) Execute ¶

type ProjectAPIGetProjectsRequest ¶

type ProjectAPIGetProjectsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetProjectsRequest) Execute ¶

func (ProjectAPIGetProjectsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetProjectsRequest) Name ¶

Name to filter by.

func (ProjectAPIGetProjectsRequest) Permission ¶

Permission to filter by

func (ProjectAPIGetProjectsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetPullRequestSettingsRequest ¶

type ProjectAPIGetPullRequestSettingsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetPullRequestSettingsRequest) Execute ¶

type ProjectAPIGetRelatedRepositoriesRequest ¶

type ProjectAPIGetRelatedRepositoriesRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetRelatedRepositoriesRequest) Execute ¶

func (ProjectAPIGetRelatedRepositoriesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetRelatedRepositoriesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetRepositoriesRequest ¶

type ProjectAPIGetRepositoriesRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetRepositoriesRequest) Execute ¶

func (ProjectAPIGetRepositoriesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetRepositoriesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetRepositoryHookRequest ¶

type ProjectAPIGetRepositoryHookRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetRepositoryHookRequest) Execute ¶

type ProjectAPIGetRepositoryHooksRequest ¶

type ProjectAPIGetRepositoryHooksRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetRepositoryHooksRequest) Execute ¶

func (ProjectAPIGetRepositoryHooksRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetRepositoryHooksRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (ProjectAPIGetRepositoryHooksRequest) Type_ ¶

The optional type to filter by.

type ProjectAPIGetRepositoryRequest ¶

type ProjectAPIGetRepositoryRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetRepositoryRequest) Execute ¶

type ProjectAPIGetRestrictionRequest ¶

type ProjectAPIGetRestrictionRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetRestrictionRequest) Execute ¶

type ProjectAPIGetRestrictionsRequest ¶

type ProjectAPIGetRestrictionsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetRestrictionsRequest) Execute ¶

func (ProjectAPIGetRestrictionsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetRestrictionsRequest) MatcherId ¶

Matcher id to filter on. Requires the matcherType parameter to be specified also.

func (ProjectAPIGetRestrictionsRequest) MatcherType ¶

Matcher type to filter on

func (ProjectAPIGetRestrictionsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (ProjectAPIGetRestrictionsRequest) Type_ ¶

Types of restrictions to filter on.

type ProjectAPIGetSettingsRequest ¶

type ProjectAPIGetSettingsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetSettingsRequest) Execute ¶

type ProjectAPIGetStatisticsRequest ¶

type ProjectAPIGetStatisticsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetStatisticsRequest) Event ¶

The string ID of a specific event to retrieve the last invocation for. May be empty, in which case all events are considered

func (ProjectAPIGetStatisticsRequest) Execute ¶

func (r ProjectAPIGetStatisticsRequest) Execute() (interface{}, *http.Response, error)

type ProjectAPIGetStatisticsSummaryRequest ¶

type ProjectAPIGetStatisticsSummaryRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetStatisticsSummaryRequest) Execute ¶

func (r ProjectAPIGetStatisticsSummaryRequest) Execute() (interface{}, *http.Response, error)

type ProjectAPIGetUsersWithAnyPermission1Request ¶

type ProjectAPIGetUsersWithAnyPermission1Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetUsersWithAnyPermission1Request) Execute ¶

func (ProjectAPIGetUsersWithAnyPermission1Request) Filter ¶

If specified only user names containing the supplied string will be returned

func (ProjectAPIGetUsersWithAnyPermission1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetUsersWithAnyPermission1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetUsersWithoutPermissionRequest ¶

type ProjectAPIGetUsersWithoutPermissionRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetUsersWithoutPermissionRequest) Execute ¶

func (ProjectAPIGetUsersWithoutPermissionRequest) Filter ¶

If specified only user names containing the supplied string will be returned

func (ProjectAPIGetUsersWithoutPermissionRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (ProjectAPIGetUsersWithoutPermissionRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type ProjectAPIGetWebhookRequest ¶

type ProjectAPIGetWebhookRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIGetWebhookRequest) Execute ¶

func (ProjectAPIGetWebhookRequest) Statistics ¶

&lt;code&gt;true&lt;/code&gt; if statistics should be provided for the webhook

type ProjectAPIHasAllUserPermissionRequest ¶

type ProjectAPIHasAllUserPermissionRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIHasAllUserPermissionRequest) Execute ¶

type ProjectAPIModifyAllUserPermissionRequest ¶

type ProjectAPIModifyAllUserPermissionRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIModifyAllUserPermissionRequest) Allow ¶

&lt;em&gt;true&lt;/em&gt; to grant the specified permission to all users, or &lt;em&gt;false&lt;/em&gt; to revoke it

func (ProjectAPIModifyAllUserPermissionRequest) Execute ¶

type ProjectAPIRemoveConfigurationRequest ¶

type ProjectAPIRemoveConfigurationRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIRemoveConfigurationRequest) Execute ¶

type ProjectAPIRetryCreateRepositoryRequest ¶

type ProjectAPIRetryCreateRepositoryRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIRetryCreateRepositoryRequest) Execute ¶

type ProjectAPIRevokePermissionsForGroup1Request ¶

type ProjectAPIRevokePermissionsForGroup1Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIRevokePermissionsForGroup1Request) Execute ¶

func (ProjectAPIRevokePermissionsForGroup1Request) Name ¶

The name of the group

type ProjectAPIRevokePermissionsForUser1Request ¶

type ProjectAPIRevokePermissionsForUser1Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIRevokePermissionsForUser1Request) Execute ¶

func (ProjectAPIRevokePermissionsForUser1Request) Name ¶

The name of the user

type ProjectAPIRevokePermissionsRequest ¶

type ProjectAPIRevokePermissionsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIRevokePermissionsRequest) Execute ¶

func (ProjectAPIRevokePermissionsRequest) Group ¶

The names of the groups

func (ProjectAPIRevokePermissionsRequest) User ¶

The names of the users

type ProjectAPISearchPermissionsRequest ¶

type ProjectAPISearchPermissionsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPISearchPermissionsRequest) Execute ¶

func (ProjectAPISearchPermissionsRequest) FilterText ¶

Name of the user or group to filter the name of

func (ProjectAPISearchPermissionsRequest) Permission ¶

Permissions to filter by. See the [permissions documentation](https://confluence.atlassian.com/display/BitbucketServer/Using+project+permissions)for a detailed explanation of what each permission entails. This parameter can be specified multiple times to filter by more than one permission, and can contain global and project permissions.

func (ProjectAPISearchPermissionsRequest) Type_ ¶

Type of entity (user or group)Valid entity types are: - USER- GROUP

type ProjectAPIService ¶

type ProjectAPIService service

ProjectAPIService ProjectAPI service

func (*ProjectAPIService) Create3 ¶

func (a *ProjectAPIService) Create3(ctx context.Context, projectKey string) ProjectAPICreate3Request

Create3 Enforce project restriction

Create a new project settings restriction for the given project.

The authenticated user must have **PROJECT_ADMIN** permission for the target project to create a settings restriction.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPICreate3Request

func (*ProjectAPIService) Create3Execute ¶

Execute executes the request

@return RestProjectSettingsRestriction

func (*ProjectAPIService) CreateProject ¶

CreateProject Create a new project

Create a new project.

To include a custom avatar for the project, the project definition should contain an additional attribute with the key <code>avatar</code> and the value a data URI containing Base64-encoded image data. The URI should be in the following format: <pre> data:(content type, e.g. image/png);base64,(data) </pre>If the data is not Base64-encoded, or if a character set is defined in the URI, or the URI is otherwise invalid, <em>project creation will fail</em>.

The authenticated user must have <strong>PROJECT_CREATE</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ProjectAPICreateProjectRequest

func (*ProjectAPIService) CreateProjectExecute ¶

Execute executes the request

@return RestProject

func (*ProjectAPIService) CreateRepository ¶

func (a *ProjectAPIService) CreateRepository(ctx context.Context, projectKey string) ProjectAPICreateRepositoryRequest

CreateRepository Create repository

Create a new repository. Requires an existing project in which this repository will be created. The only parameters which will be used are name and scmId.

The authenticated user must have <strong>REPO_CREATE</strong> permission or higher, for the context project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPICreateRepositoryRequest

func (*ProjectAPIService) CreateRepositoryExecute ¶

Execute executes the request

@return RestRepository

func (*ProjectAPIService) CreateRestrictions ¶

func (a *ProjectAPIService) CreateRestrictions(ctx context.Context, projectKey string) ProjectAPICreateRestrictionsRequest

CreateRestrictions Create multiple ref restrictions

Allows creating multiple restrictions at once.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPICreateRestrictionsRequest

func (*ProjectAPIService) CreateRestrictionsExecute ¶

Execute executes the request

@return RestRefRestriction

func (*ProjectAPIService) CreateWebhook ¶

func (a *ProjectAPIService) CreateWebhook(ctx context.Context, projectKey string) ProjectAPICreateWebhookRequest

CreateWebhook Create webhook

Create a webhook for the project specified via the URL.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPICreateWebhookRequest

func (*ProjectAPIService) CreateWebhookExecute ¶

Execute executes the request

@return RestWebhook

func (*ProjectAPIService) Delete7 ¶

func (a *ProjectAPIService) Delete7(ctx context.Context, projectKey string) ProjectAPIDelete7Request

Delete7 Stop enforcing project restriction

Delete a specified project settings restriction.

If a restriction does not exist for the specified project, namespace, featureKey, and componentKey, the request will be ignored and a 204 response will be returned.

The authenticated user must have **PROJECT_ADMIN** permission for the target project to delete a settings restriction.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIDelete7Request

func (*ProjectAPIService) Delete7Execute ¶

Execute executes the request

func (*ProjectAPIService) DeleteAutoDeclineSettings ¶

func (a *ProjectAPIService) DeleteAutoDeclineSettings(ctx context.Context, projectKey string) ProjectAPIDeleteAutoDeclineSettingsRequest

DeleteAutoDeclineSettings Delete auto decline settings

Delete auto decline settings for the supplied project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for this project to call the resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPIDeleteAutoDeclineSettingsRequest

func (*ProjectAPIService) DeleteAutoDeclineSettingsExecute ¶

func (a *ProjectAPIService) DeleteAutoDeclineSettingsExecute(r ProjectAPIDeleteAutoDeclineSettingsRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) DeleteProject ¶

func (a *ProjectAPIService) DeleteProject(ctx context.Context, projectKey string) ProjectAPIDeleteProjectRequest

DeleteProject Delete project

Delete the project matching the supplied <strong>projectKey</strong>.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIDeleteProjectRequest

func (*ProjectAPIService) DeleteProjectExecute ¶

func (a *ProjectAPIService) DeleteProjectExecute(r ProjectAPIDeleteProjectRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) DeleteRepository ¶

func (a *ProjectAPIService) DeleteRepository(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIDeleteRepositoryRequest

DeleteRepository Delete repository

Schedule the repository matching the supplied <strong>projectKey</strong> and <strong>repositorySlug</strong> to be deleted.

The authenticated user must have sufficient permissions specified by the repository delete policy to call this resource. The default permission required is <strong>REPO_ADMIN</strong> permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIDeleteRepositoryRequest

func (*ProjectAPIService) DeleteRepositoryExecute ¶

func (a *ProjectAPIService) DeleteRepositoryExecute(r ProjectAPIDeleteRepositoryRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) DeleteRestriction ¶

func (a *ProjectAPIService) DeleteRestriction(ctx context.Context, projectKey string, id string) ProjectAPIDeleteRestrictionRequest

DeleteRestriction Delete a ref restriction

Deletes a restriction as specified by a restriction id.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission or higher to call this resource. Only authenticated users may call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The restriction id.
@return ProjectAPIDeleteRestrictionRequest

func (*ProjectAPIService) DeleteRestrictionExecute ¶

func (a *ProjectAPIService) DeleteRestrictionExecute(r ProjectAPIDeleteRestrictionRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) DeleteWebhook ¶

func (a *ProjectAPIService) DeleteWebhook(ctx context.Context, projectKey string, webhookId string) ProjectAPIDeleteWebhookRequest

DeleteWebhook Delete webhook

Delete a webhook for the project specified via the URL.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId The ID of the webhook to be deleted.
@return ProjectAPIDeleteWebhookRequest

func (*ProjectAPIService) DeleteWebhookExecute ¶

func (a *ProjectAPIService) DeleteWebhookExecute(r ProjectAPIDeleteWebhookRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) DisableHook ¶

func (a *ProjectAPIService) DisableHook(ctx context.Context, projectKey string, hookKey string) ProjectAPIDisableHookRequest

DisableHook Disable repository hook

Disable a repository hook for this project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@return ProjectAPIDisableHookRequest

func (*ProjectAPIService) DisableHookExecute ¶

Execute executes the request

@return RestRepositoryHook

func (*ProjectAPIService) EnableHook ¶

func (a *ProjectAPIService) EnableHook(ctx context.Context, projectKey string, hookKey string) ProjectAPIEnableHookRequest

EnableHook Enable repository hook

Enable a repository hook for this project and optionally apply new configuration.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

A JSON document may be provided to use as the settings for the hook. These structure and validity of the document is decided by the plugin providing the hook.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@return ProjectAPIEnableHookRequest

func (*ProjectAPIService) EnableHookExecute ¶

Execute executes the request

@return RestRepositoryHook

func (*ProjectAPIService) FindWebhooks ¶

func (a *ProjectAPIService) FindWebhooks(ctx context.Context, projectKey string) ProjectAPIFindWebhooksRequest

FindWebhooks Find webhooks

Find webhooks in this project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIFindWebhooksRequest

func (*ProjectAPIService) FindWebhooksExecute ¶

func (a *ProjectAPIService) FindWebhooksExecute(r ProjectAPIFindWebhooksRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) ForkRepository ¶

func (a *ProjectAPIService) ForkRepository(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIForkRepositoryRequest

ForkRepository Fork repository

Create a new repository forked from an existing repository.

The JSON body for this <code>POST</code> is not required to contain <i>any</i> properties. Even the name may be omitted. The following properties will be used, if provided:

- <code>"name":"Fork name"</code> - Specifies the forked repository's name

  • Defaults to the name of the origin repository if not specified

- <code>"defaultBranch":"main"</code> - Specifies the forked repository's default branch

  • Defaults to the origin repository's default branch if not specified

- <code>"project":{"key":"TARGET_KEY"}</code> - Specifies the forked repository's target project by key

  • Defaults to the current user's personal project if not specified

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository and <strong>PROJECT_ADMIN</strong> on the target project to call this resource. Note that users <i>always</i> have <b>PROJECT_ADMIN</b> permission on their personal projects.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIForkRepositoryRequest

func (*ProjectAPIService) ForkRepositoryExecute ¶

Execute executes the request

@return RestRepository

func (*ProjectAPIService) Get5 ¶

Get5 Get enforcing project setting

Get a specified project settings restriction for the given namespace, feature key and component key. Note that not providing the component key will **not** return restrictions for the namespace and feature key with a component key set.

The authenticated user must have **PROJECT_VIEW** permission for the target project to retrieve a settings restriction.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIGet5Request

func (*ProjectAPIService) Get5Execute ¶

Execute executes the request

@return RestProjectSettingsRestriction

func (*ProjectAPIService) GetAll ¶

func (a *ProjectAPIService) GetAll(ctx context.Context, projectKey string) ProjectAPIGetAllRequest

GetAll Get all enforcing project settings

Get all project settings restrictions for the given namespace and feature key, including those with a component key set.

The authenticated user must have **PROJECT_VIEW** permission for the target project to retrieve a settings restrictions.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIGetAllRequest

func (*ProjectAPIService) GetAllExecute ¶

Execute executes the request

@return GetAll200Response

func (*ProjectAPIService) GetAutoDeclineSettings ¶

func (a *ProjectAPIService) GetAutoDeclineSettings(ctx context.Context, projectKey string) ProjectAPIGetAutoDeclineSettingsRequest

GetAutoDeclineSettings Get auto decline settings

Retrieves the auto decline settings for the supplied project. Default settings are returned if no explicit settings have been set for the project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPIGetAutoDeclineSettingsRequest

func (*ProjectAPIService) GetAutoDeclineSettingsExecute ¶

Execute executes the request

@return RestAutoDeclineSettings

func (*ProjectAPIService) GetAvatar ¶

GetAvatar Get project avatar

Retrieve the avatar for the project matching the supplied <strong>moduleKey</strong>.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param hookKey The complete module key of the hook module.
@return ProjectAPIGetAvatarRequest

func (*ProjectAPIService) GetAvatarExecute ¶

func (a *ProjectAPIService) GetAvatarExecute(r ProjectAPIGetAvatarRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) GetConfigurations ¶

func (a *ProjectAPIService) GetConfigurations(ctx context.Context, projectKey string) ProjectAPIGetConfigurationsRequest

GetConfigurations Get configured hook scripts

Return a page of hook scripts configured for the specified project.

This endpoint requires **PROJECT_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIGetConfigurationsRequest

func (*ProjectAPIService) GetConfigurationsExecute ¶

Execute executes the request

@return GetConfigurations200Response

func (*ProjectAPIService) GetDefaultBranch2 ¶

func (a *ProjectAPIService) GetDefaultBranch2(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIGetDefaultBranch2Request

GetDefaultBranch2 Get repository default branch

Retrieves the repository's <i>configured</i> default branch.

Every repository has a <i>configured</i> default branch, but that branch may not actually <i>exist</i> in the repository. For example, a newly-created repository will have a configured default branch even though no branches have been pushed yet.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIGetDefaultBranch2Request

func (*ProjectAPIService) GetDefaultBranch2Execute ¶

Execute executes the request

@return RestMinimalRef

func (*ProjectAPIService) GetForkedRepositories ¶

func (a *ProjectAPIService) GetForkedRepositories(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIGetForkedRepositoriesRequest

GetForkedRepositories Get repository forks

Retrieve repositories which have been forked from this one. Unlike #getRelatedRepositories(Repository, PageRequest) related repositories, this only looks at a given repository's direct forks. If those forks have themselves been the origin of more forks, such "grandchildren" repositories will not be retrieved.

Only repositories to which the authenticated user has <b>REPO_READ</b> permission will be included, even if other repositories have been forked from this one.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIGetForkedRepositoriesRequest

func (*ProjectAPIService) GetForkedRepositoriesExecute ¶

Execute executes the request

@return GetRepositoriesRecentlyAccessed200Response

func (*ProjectAPIService) GetGroupsWithAnyPermission1 ¶

func (a *ProjectAPIService) GetGroupsWithAnyPermission1(ctx context.Context, projectKey string) ProjectAPIGetGroupsWithAnyPermission1Request

GetGroupsWithAnyPermission1 Get groups with permission to project

Retrieve a page of groups that have been granted at least one permission for the specified project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPIGetGroupsWithAnyPermission1Request

func (*ProjectAPIService) GetGroupsWithAnyPermission1Execute ¶

Execute executes the request

@return GetGroupsWithAnyPermission200Response

func (*ProjectAPIService) GetGroupsWithoutAnyPermission1 ¶

func (a *ProjectAPIService) GetGroupsWithoutAnyPermission1(ctx context.Context, projectKey string) ProjectAPIGetGroupsWithoutAnyPermission1Request

GetGroupsWithoutAnyPermission1 Get groups without project permission

Retrieve a page of groups that have no granted permissions for the specified project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPIGetGroupsWithoutAnyPermission1Request

func (*ProjectAPIService) GetGroupsWithoutAnyPermission1Execute ¶

Execute executes the request

@return GetGroups1200Response

func (*ProjectAPIService) GetLatestInvocation ¶

func (a *ProjectAPIService) GetLatestInvocation(ctx context.Context, projectKey string, webhookId string) ProjectAPIGetLatestInvocationRequest

GetLatestInvocation Get last webhook invocation details

Get the latest invocations for a specific webhook.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId ID of the webhook
@return ProjectAPIGetLatestInvocationRequest

func (*ProjectAPIService) GetLatestInvocationExecute ¶

Execute executes the request

@return RestDetailedInvocation

func (*ProjectAPIService) GetProject ¶

func (a *ProjectAPIService) GetProject(ctx context.Context, projectKey string) ProjectAPIGetProjectRequest

GetProject Get a project

Retrieve the project matching the supplied <strong>projectKey</strong>.

The authenticated user must have <strong>PROJECT_VIEW</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIGetProjectRequest

func (*ProjectAPIService) GetProjectAvatar ¶

func (a *ProjectAPIService) GetProjectAvatar(ctx context.Context, projectKey string) ProjectAPIGetProjectAvatarRequest

GetProjectAvatar Get avatar for project

Retrieve the avatar for the project matching the supplied <strong>projectKey</strong>.

The authenticated user must have <strong>PROJECT_VIEW</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIGetProjectAvatarRequest

func (*ProjectAPIService) GetProjectAvatarExecute ¶

func (a *ProjectAPIService) GetProjectAvatarExecute(r ProjectAPIGetProjectAvatarRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) GetProjectExecute ¶

Execute executes the request

@return RestProject

func (*ProjectAPIService) GetProjects ¶

GetProjects Get projects

Retrieve a page of projects.

Only projects for which the authenticated user has the <strong>PROJECT_VIEW</strong> permission will be returned.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ProjectAPIGetProjectsRequest

func (*ProjectAPIService) GetProjectsExecute ¶

Execute executes the request

@return GetProjects200Response

func (*ProjectAPIService) GetPullRequestSettings ¶

func (a *ProjectAPIService) GetPullRequestSettings(ctx context.Context, projectKey string, scmId string) ProjectAPIGetPullRequestSettingsRequest

GetPullRequestSettings Get merge strategy

Retrieve the merge strategy configuration for this project and SCM.

The authenticated user must have <strong>PROJECT_READ</strong> permission for the context repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param scmId The SCM to get strategies for.
@return ProjectAPIGetPullRequestSettingsRequest

func (*ProjectAPIService) GetPullRequestSettingsExecute ¶

Execute executes the request

@return RestPullRequestSettings

func (*ProjectAPIService) GetRelatedRepositories ¶

func (a *ProjectAPIService) GetRelatedRepositories(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIGetRelatedRepositoriesRequest

GetRelatedRepositories Get related repository

Retrieve repositories which are related to this one. Related repositories are from the same Repository#getHierarchyId() hierarchy as this repository.

Only repositories to which the authenticated user has <b>REPO_READ</b> permission will be included, even if more repositories are part of this repository's hierarchy.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIGetRelatedRepositoriesRequest

func (*ProjectAPIService) GetRelatedRepositoriesExecute ¶

Execute executes the request

@return GetRepositoriesRecentlyAccessed200Response

func (*ProjectAPIService) GetRepositories ¶

func (a *ProjectAPIService) GetRepositories(ctx context.Context, projectKey string) ProjectAPIGetRepositoriesRequest

GetRepositories Get repositories for project

Retrieve repositories from the project corresponding to the supplied <strong>projectKey</strong>.

The authenticated user must have <strong>PROJECT_READ</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIGetRepositoriesRequest

func (*ProjectAPIService) GetRepositoriesExecute ¶

Execute executes the request

@return GetRepositoriesRecentlyAccessed200Response

func (*ProjectAPIService) GetRepository ¶

func (a *ProjectAPIService) GetRepository(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIGetRepositoryRequest

GetRepository Get repository

Retrieve the repository matching the supplied <strong>projectKey</strong> and <strong>repositorySlug</strong>.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIGetRepositoryRequest

func (*ProjectAPIService) GetRepositoryExecute ¶

Execute executes the request

@return RestRepository

func (*ProjectAPIService) GetRepositoryHook ¶

func (a *ProjectAPIService) GetRepositoryHook(ctx context.Context, projectKey string, hookKey string) ProjectAPIGetRepositoryHookRequest

GetRepositoryHook Get a repository hook

Retrieve a repository hook for this project.

The authenticated user must have <strong>PROJECT_READ</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@return ProjectAPIGetRepositoryHookRequest

func (*ProjectAPIService) GetRepositoryHookExecute ¶

Execute executes the request

@return RestRepositoryHook

func (*ProjectAPIService) GetRepositoryHooks ¶

func (a *ProjectAPIService) GetRepositoryHooks(ctx context.Context, projectKey string) ProjectAPIGetRepositoryHooksRequest

GetRepositoryHooks Get repository hooks

Retrieve a page of repository hooks for this project.

The authenticated user must have <strong>PROJECT_READ</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIGetRepositoryHooksRequest

func (*ProjectAPIService) GetRepositoryHooksExecute ¶

Execute executes the request

@return GetRepositoryHooks1200Response

func (*ProjectAPIService) GetRestriction ¶

func (a *ProjectAPIService) GetRestriction(ctx context.Context, projectKey string, id string) ProjectAPIGetRestrictionRequest

GetRestriction Get a ref restriction

Returns a restriction as specified by a restriction id.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission or higher to call this resource. Only authenticated users may call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The restriction id.
@return ProjectAPIGetRestrictionRequest

func (*ProjectAPIService) GetRestrictionExecute ¶

Execute executes the request

@return RestRefRestriction

func (*ProjectAPIService) GetRestrictions ¶

func (a *ProjectAPIService) GetRestrictions(ctx context.Context, projectKey string) ProjectAPIGetRestrictionsRequest

GetRestrictions Search for ref restrictions

Search for restrictions using the supplied parameters.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission or higher to call this resource. Only authenticated users may call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIGetRestrictionsRequest

func (*ProjectAPIService) GetRestrictionsExecute ¶

Execute executes the request

@return GetRestrictions1200Response

func (*ProjectAPIService) GetSettings ¶

func (a *ProjectAPIService) GetSettings(ctx context.Context, projectKey string, hookKey string) ProjectAPIGetSettingsRequest

GetSettings Get repository hook settings

Retrieve the settings for a repository hook for this project.

The authenticated user must have <strong>PROJECT_READ</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@return ProjectAPIGetSettingsRequest

func (*ProjectAPIService) GetSettingsExecute ¶

Execute executes the request

@return ExampleSettings

func (*ProjectAPIService) GetStatistics ¶

func (a *ProjectAPIService) GetStatistics(ctx context.Context, projectKey string, webhookId string) ProjectAPIGetStatisticsRequest

GetStatistics Get webhook statistics

Get the statistics for a specific webhook.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId ID of the webhook
@return ProjectAPIGetStatisticsRequest

func (*ProjectAPIService) GetStatisticsExecute ¶

func (a *ProjectAPIService) GetStatisticsExecute(r ProjectAPIGetStatisticsRequest) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*ProjectAPIService) GetStatisticsSummary ¶

func (a *ProjectAPIService) GetStatisticsSummary(ctx context.Context, projectKey string, webhookId string) ProjectAPIGetStatisticsSummaryRequest

GetStatisticsSummary Get webhook statistics summary

Get the statistics summary for a specific webhook.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId ID of the webhook
@return ProjectAPIGetStatisticsSummaryRequest

func (*ProjectAPIService) GetStatisticsSummaryExecute ¶

func (a *ProjectAPIService) GetStatisticsSummaryExecute(r ProjectAPIGetStatisticsSummaryRequest) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*ProjectAPIService) GetUsersWithAnyPermission1 ¶

func (a *ProjectAPIService) GetUsersWithAnyPermission1(ctx context.Context, projectKey string) ProjectAPIGetUsersWithAnyPermission1Request

GetUsersWithAnyPermission1 Get users with permission to project

Retrieve a page of users that have been granted at least one permission for the specified project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPIGetUsersWithAnyPermission1Request

func (*ProjectAPIService) GetUsersWithAnyPermission1Execute ¶

Execute executes the request

@return GetUsersWithAnyPermission1200Response

func (*ProjectAPIService) GetUsersWithoutPermission ¶

func (a *ProjectAPIService) GetUsersWithoutPermission(ctx context.Context, projectKey string) ProjectAPIGetUsersWithoutPermissionRequest

GetUsersWithoutPermission Get users without project permission

Retrieve a page of <i>licensed</i> users that have no granted permissions for the specified project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPIGetUsersWithoutPermissionRequest

func (*ProjectAPIService) GetUsersWithoutPermissionExecute ¶

Execute executes the request

@return GetLikers200Response

func (*ProjectAPIService) GetWebhook ¶

func (a *ProjectAPIService) GetWebhook(ctx context.Context, projectKey string, webhookId string) ProjectAPIGetWebhookRequest

GetWebhook Get webhook

Get a webhook by ID.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId ID of the webhook
@return ProjectAPIGetWebhookRequest

func (*ProjectAPIService) GetWebhookExecute ¶

Execute executes the request

@return RestWebhook

func (*ProjectAPIService) HasAllUserPermission ¶

func (a *ProjectAPIService) HasAllUserPermission(ctx context.Context, projectKey string, permission string) ProjectAPIHasAllUserPermissionRequest

HasAllUserPermission Check default project permission

Check whether the specified permission is the default permission (granted to all users) for a project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param permission The permission to grant. Available project permissions are:  - PROJECT_READ - PROJECT_WRITE - PROJECT_ADMIN
@return ProjectAPIHasAllUserPermissionRequest

func (*ProjectAPIService) HasAllUserPermissionExecute ¶

Execute executes the request

@return RestPermitted

func (*ProjectAPIService) ModifyAllUserPermission ¶

func (a *ProjectAPIService) ModifyAllUserPermission(ctx context.Context, projectKey string, permission string) ProjectAPIModifyAllUserPermissionRequest

ModifyAllUserPermission Grant project permission

Grant or revoke a project permission to all users, i.e. set the default permission.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param permission The permission to grant. Available project permissions are:  - PROJECT_READ - PROJECT_WRITE - PROJECT_ADMIN
@return ProjectAPIModifyAllUserPermissionRequest

func (*ProjectAPIService) ModifyAllUserPermissionExecute ¶

func (a *ProjectAPIService) ModifyAllUserPermissionExecute(r ProjectAPIModifyAllUserPermissionRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) RemoveConfiguration ¶

func (a *ProjectAPIService) RemoveConfiguration(ctx context.Context, projectKey string, scriptId string) ProjectAPIRemoveConfigurationRequest

RemoveConfiguration Remove a hook script

Removes the hook script from the set of hook scripts configured to run in all repositories under the project.

This endpoint requires **PROJECT_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param scriptId The ID of the hook script
@return ProjectAPIRemoveConfigurationRequest

func (*ProjectAPIService) RemoveConfigurationExecute ¶

func (a *ProjectAPIService) RemoveConfigurationExecute(r ProjectAPIRemoveConfigurationRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) RetryCreateRepository ¶

func (a *ProjectAPIService) RetryCreateRepository(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIRetryCreateRepositoryRequest

RetryCreateRepository Retry repository creation

If a create or fork operation fails, calling this method will clean up the broken repository and try again. The repository must be in an INITIALISATION_FAILED state.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIRetryCreateRepositoryRequest

func (*ProjectAPIService) RetryCreateRepositoryExecute ¶

Execute executes the request

@return RestRepository

func (*ProjectAPIService) RevokePermissions ¶

func (a *ProjectAPIService) RevokePermissions(ctx context.Context, projectKey string) ProjectAPIRevokePermissionsRequest

RevokePermissions Revoke project permissions

Revoke all permissions for the specified project for the given groups and users.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource.

In addition, a user may not revoke a group's permission if their own permission would be revoked as a result, nor may they revoke their own permission unless they have a global permission that already implies that permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPIRevokePermissionsRequest

func (*ProjectAPIService) RevokePermissionsExecute ¶

func (a *ProjectAPIService) RevokePermissionsExecute(r ProjectAPIRevokePermissionsRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) RevokePermissionsForGroup1 ¶

func (a *ProjectAPIService) RevokePermissionsForGroup1(ctx context.Context, projectKey string) ProjectAPIRevokePermissionsForGroup1Request

RevokePermissionsForGroup1 Revoke group project permission

Revoke all permissions for the specified project for a group.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource.

In addition, a user may not revoke a group's permissions if it will reduce their own permission level.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPIRevokePermissionsForGroup1Request

func (*ProjectAPIService) RevokePermissionsForGroup1Execute ¶

func (a *ProjectAPIService) RevokePermissionsForGroup1Execute(r ProjectAPIRevokePermissionsForGroup1Request) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) RevokePermissionsForUser1 ¶

func (a *ProjectAPIService) RevokePermissionsForUser1(ctx context.Context, projectKey string) ProjectAPIRevokePermissionsForUser1Request

RevokePermissionsForUser1 Revoke user project permission

Revoke all permissions for the specified project for a user.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource.

In addition, a user may not revoke their own project permissions if they do not have a higher global permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPIRevokePermissionsForUser1Request

func (*ProjectAPIService) RevokePermissionsForUser1Execute ¶

func (a *ProjectAPIService) RevokePermissionsForUser1Execute(r ProjectAPIRevokePermissionsForUser1Request) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) SearchPermissions ¶

func (a *ProjectAPIService) SearchPermissions(ctx context.Context, projectKey string) ProjectAPISearchPermissionsRequest

SearchPermissions Search project permissions

Search direct and implied permissions of principals (users and groups). This endpoint returns a superset of the results returned by the /users and /groups endpoints because it allows filtering by global permissions too.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPISearchPermissionsRequest

func (*ProjectAPIService) SearchPermissionsExecute ¶

func (a *ProjectAPIService) SearchPermissionsExecute(r ProjectAPISearchPermissionsRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) SetAutoDeclineSettings ¶

func (a *ProjectAPIService) SetAutoDeclineSettings(ctx context.Context, projectKey string) ProjectAPISetAutoDeclineSettingsRequest

SetAutoDeclineSettings Create/Update auto decline settings

Creates or updates the auto decline settings for the supplied project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for this project to call the resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPISetAutoDeclineSettingsRequest

func (*ProjectAPIService) SetAutoDeclineSettingsExecute ¶

Execute executes the request

@return RestAutoDeclineSettings

func (*ProjectAPIService) SetConfiguration ¶

func (a *ProjectAPIService) SetConfiguration(ctx context.Context, projectKey string, scriptId string) ProjectAPISetConfigurationRequest

SetConfiguration Create/update a hook script

Creates/updates the hook script configuration for the provided hook script and project.

This endpoint requires **PROJECT_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param scriptId The ID of the hook script
@return ProjectAPISetConfigurationRequest

func (*ProjectAPIService) SetConfigurationExecute ¶

Execute executes the request

@return RestHookScriptConfig

func (*ProjectAPIService) SetDefaultBranch2 ¶

func (a *ProjectAPIService) SetDefaultBranch2(ctx context.Context, projectKey string, repositorySlug string) ProjectAPISetDefaultBranch2Request

SetDefaultBranch2 Update default branch for repository

Update the default branch of a repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPISetDefaultBranch2Request

func (*ProjectAPIService) SetDefaultBranch2Execute ¶

func (a *ProjectAPIService) SetDefaultBranch2Execute(r ProjectAPISetDefaultBranch2Request) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) SetPermissionForGroups1 ¶

func (a *ProjectAPIService) SetPermissionForGroups1(ctx context.Context, projectKey string) ProjectAPISetPermissionForGroups1Request

SetPermissionForGroups1 Update group project permission

Promote or demote a group's permission level for the specified project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource. In addition, a user may not demote a group's permission level if theirown permission level would be reduced as a result.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPISetPermissionForGroups1Request

func (*ProjectAPIService) SetPermissionForGroups1Execute ¶

func (a *ProjectAPIService) SetPermissionForGroups1Execute(r ProjectAPISetPermissionForGroups1Request) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) SetPermissionForUsers1 ¶

func (a *ProjectAPIService) SetPermissionForUsers1(ctx context.Context, projectKey string) ProjectAPISetPermissionForUsers1Request

SetPermissionForUsers1 Update user project permission

Promote or demote a user's permission level for the specified project.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project or a higher global permission to call this resource. In addition, a user may not reduce their own permission level unless they have a global permission that already implies that permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@return ProjectAPISetPermissionForUsers1Request

func (*ProjectAPIService) SetPermissionForUsers1Execute ¶

func (a *ProjectAPIService) SetPermissionForUsers1Execute(r ProjectAPISetPermissionForUsers1Request) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) SetSettings ¶

func (a *ProjectAPIService) SetSettings(ctx context.Context, projectKey string, hookKey string) ProjectAPISetSettingsRequest

SetSettings Update repository hook settings

Modify the settings for a repository hook for this project.

The service will reject any settings which are too large, the current limit is 32KB once serialized.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

A JSON document can be provided to use as the settings for the hook. These structure and validity of the document is decided by the plugin providing the hook.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The complete module key of the hook module.
@return ProjectAPISetSettingsRequest

func (*ProjectAPIService) SetSettingsExecute ¶

Execute executes the request

@return ExampleSettings

func (*ProjectAPIService) StreamContributing ¶

func (a *ProjectAPIService) StreamContributing(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIStreamContributingRequest

StreamContributing Get repository contributing guidelines

Retrieves the contributing guidelines for the repository, if they've been defined.

This checks the repository for a CONTRIBUTING file, optionally with an md or txt extension, and, if found, streams it. By default, the <i>raw content</i> of the file is streamed. Appending <code>?markup</code> to the URL will stream an HTML-rendered version instead.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIStreamContributingRequest

func (*ProjectAPIService) StreamContributingExecute ¶

func (a *ProjectAPIService) StreamContributingExecute(r ProjectAPIStreamContributingRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) StreamLicense ¶

func (a *ProjectAPIService) StreamLicense(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIStreamLicenseRequest

StreamLicense Get repository license

Retrieves the license for the repository, if it's been defined.

This checks the repository for a <pre>LICENSE</pre> file, optionally with an <pre>md</pre> or <pre>txt</pre>extension, and, if found, streams it. By default, the <i>raw content</i> of the file is streamed. Appending <pre>?markup</pre> to the URL will stream an HTML-rendered version instead.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIStreamLicenseRequest

func (*ProjectAPIService) StreamLicenseExecute ¶

func (a *ProjectAPIService) StreamLicenseExecute(r ProjectAPIStreamLicenseRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) StreamReadme ¶

func (a *ProjectAPIService) StreamReadme(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIStreamReadmeRequest

StreamReadme Get repository readme

Retrieves the README for the repository, if it's been defined.

This checks the repository for a <pre>README</pre> file, optionally with an <pre>md</pre> or <pre>txt</pre>extension, and, if found, streams it. By default, the <i>raw content</i> of the file is streamed. Appending <pre>?markup</pre> to the URL will stream an HTML-rendered version instead. Note that, when streaming HTML, relative URLs in the README will not work if applied relative to this URL.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIStreamReadmeRequest

func (*ProjectAPIService) StreamReadmeExecute ¶

func (a *ProjectAPIService) StreamReadmeExecute(r ProjectAPIStreamReadmeRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) TestWebhook ¶

func (a *ProjectAPIService) TestWebhook(ctx context.Context, projectKey string) ProjectAPITestWebhookRequest

TestWebhook Test webhook

Test connectivity to a specific endpoint.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPITestWebhookRequest

func (*ProjectAPIService) TestWebhookExecute ¶

func (a *ProjectAPIService) TestWebhookExecute(r ProjectAPITestWebhookRequest) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*ProjectAPIService) UpdateProject ¶

func (a *ProjectAPIService) UpdateProject(ctx context.Context, projectKey string) ProjectAPIUpdateProjectRequest

UpdateProject Update project

Update the project matching the <strong>projectKey</strong> supplied in the resource path.

To include a custom avatar for the updated project, the project definition should contain an additional attribute with the key <code>avatar</code> and the value a data URI containing Base64-encoded image data. The URI should be in the following format: ``` data:(content type, e.g. image/png);base64,(data)```

If the data is not Base64-encoded, or if a character set is defined in the URI, or the URI is otherwise invalid, <em>project creation will fail</em>.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIUpdateProjectRequest

func (*ProjectAPIService) UpdateProjectExecute ¶

Execute executes the request

@return RestProject

func (*ProjectAPIService) UpdatePullRequestSettings ¶

func (a *ProjectAPIService) UpdatePullRequestSettings(ctx context.Context, projectKey string, scmId string) ProjectAPIUpdatePullRequestSettingsRequest

UpdatePullRequestSettings Update merge strategy

Update the pull request merge strategy configuration for this project and SCM.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the context repository to call this resource.

Only the strategies provided will be enabled, the default must be set and included in the set of strategies.

An explicitly set pull request merge strategy configuration can be deleted by POSTing a document with an empty "mergeConfig" attribute. i.e:

<pre>{
    "mergeConfig": {}
}

</pre>

Upon completion of this request, the effective configuration will be the configuration explicitly set for the SCM, or if no such explicit configuration is set then the default configuration will be used.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param scmId The SCM to get strategies for.
@return ProjectAPIUpdatePullRequestSettingsRequest

func (*ProjectAPIService) UpdatePullRequestSettingsExecute ¶

Execute executes the request

@return RestPullRequestSettings

func (*ProjectAPIService) UpdateRepository ¶

func (a *ProjectAPIService) UpdateRepository(ctx context.Context, projectKey string, repositorySlug string) ProjectAPIUpdateRepositoryRequest

UpdateRepository Update repository

Update the repository matching the <strong>repositorySlug</strong> supplied in the resource path.

The repository's slug is derived from its name. If the name changes the slug may also change.

This resource can be used to change the repository's default branch by specifying a new default branch in the request. For example: <code>"defaultBranch":"main"</code>

This resource can be used to move the repository to a different project by specifying a new project in the request. For example: <code>"project":{"key":"NEW_KEY"}</code>

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return ProjectAPIUpdateRepositoryRequest

func (*ProjectAPIService) UpdateRepositoryExecute ¶

Execute executes the request

@return RestRepository

func (*ProjectAPIService) UpdateWebhook ¶

func (a *ProjectAPIService) UpdateWebhook(ctx context.Context, projectKey string, webhookId string) ProjectAPIUpdateWebhookRequest

UpdateWebhook Update webhook

Update an existing webhook.

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId Id of the existing webhook
@return ProjectAPIUpdateWebhookRequest

func (*ProjectAPIService) UpdateWebhookExecute ¶

Execute executes the request

@return RestWebhook

func (*ProjectAPIService) UploadAvatar ¶

func (a *ProjectAPIService) UploadAvatar(ctx context.Context, projectKey string) ProjectAPIUploadAvatarRequest

UploadAvatar Update project avatar

Update the avatar for the project matching the supplied <strong>projectKey</strong>.

This resource accepts POST multipart form data, containing a single image in a form-field named 'avatar'.

There are configurable server limits on both the dimensions (1024x1024 pixels by default) and uploaded file size (1MB by default). Several different image formats are supported, but <strong>PNG</strong> and <strong>JPEG</strong> are preferred due to the file size limit.

This resource has Cross-Site Request Forgery (XSRF) protection. To allow the request to pass the XSRF check the caller needs to send an <code>X-Atlassian-Token</code> HTTP header with the value <code>no-check</code>.

An example <a href="http://curl.haxx.se/">curl</a> request to upload an image name 'avatar.png' would be: ```curl -X POST -u username:password -H "X-Atlassian-Token: no-check" http://example.com/rest/api/1.0/projects/STASH/avatar.png -F avatar=@avatar.png ```

The authenticated user must have <strong>PROJECT_ADMIN</strong> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return ProjectAPIUploadAvatarRequest

func (*ProjectAPIService) UploadAvatarExecute ¶

func (a *ProjectAPIService) UploadAvatarExecute(r ProjectAPIUploadAvatarRequest) (*http.Response, error)

Execute executes the request

type ProjectAPISetAutoDeclineSettingsRequest ¶

type ProjectAPISetAutoDeclineSettingsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPISetAutoDeclineSettingsRequest) Execute ¶

func (ProjectAPISetAutoDeclineSettingsRequest) RestAutoDeclineSettingsRequest ¶

func (r ProjectAPISetAutoDeclineSettingsRequest) RestAutoDeclineSettingsRequest(restAutoDeclineSettingsRequest RestAutoDeclineSettingsRequest) ProjectAPISetAutoDeclineSettingsRequest

The settings to create or update

type ProjectAPISetConfigurationRequest ¶

type ProjectAPISetConfigurationRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPISetConfigurationRequest) Execute ¶

func (ProjectAPISetConfigurationRequest) RestHookScriptTriggers ¶

func (r ProjectAPISetConfigurationRequest) RestHookScriptTriggers(restHookScriptTriggers RestHookScriptTriggers) ProjectAPISetConfigurationRequest

The hook triggers for which the hook script should be run

type ProjectAPISetDefaultBranch2Request ¶

type ProjectAPISetDefaultBranch2Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPISetDefaultBranch2Request) Execute ¶

func (ProjectAPISetDefaultBranch2Request) RestBranch ¶

The branch to set as default

type ProjectAPISetPermissionForGroups1Request ¶

type ProjectAPISetPermissionForGroups1Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPISetPermissionForGroups1Request) Execute ¶

func (ProjectAPISetPermissionForGroups1Request) Name ¶

The names of the groups

func (ProjectAPISetPermissionForGroups1Request) Permission ¶

The permission to grant.See the [permissions documentation](https://confluence.atlassian.com/display/BitbucketServer/Using+project+permissions)for a detailed explanation of what each permission entails. Available project permissions are: - PROJECT_READ - PROJECT_WRITE - PROJECT_ADMIN

type ProjectAPISetPermissionForUsers1Request ¶

type ProjectAPISetPermissionForUsers1Request struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPISetPermissionForUsers1Request) Execute ¶

func (ProjectAPISetPermissionForUsers1Request) Name ¶

The names of the users

func (ProjectAPISetPermissionForUsers1Request) Permission ¶

The permission to grant.See the [permissions documentation](https://confluence.atlassian.com/display/BitbucketServer/Using+project+permissions)for a detailed explanation of what each permission entails. Available project permissions are: - PROJECT_READ - PROJECT_WRITE - PROJECT_ADMIN

type ProjectAPISetSettingsRequest ¶

type ProjectAPISetSettingsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPISetSettingsRequest) ExampleSettings ¶

The raw settings.

func (ProjectAPISetSettingsRequest) Execute ¶

type ProjectAPIStreamContributingRequest ¶

type ProjectAPIStreamContributingRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIStreamContributingRequest) At ¶

A specific commit or ref to retrieve the guidelines at, or the default branch if not specified

func (ProjectAPIStreamContributingRequest) Execute ¶

func (ProjectAPIStreamContributingRequest) Hardwrap ¶

(Optional) Whether the markup implementation should convert newlines to breaks. If not specified, the value of the &lt;code&gt;markup.render.hardwrap&lt;/code&gt; property, which is &lt;code&gt;true&lt;/code&gt; by default, will be used

func (ProjectAPIStreamContributingRequest) HtmlEscape ¶

(Optional) true if HTML should be escaped in the input markup, false otherwise. If not specified, the value of the &lt;code&gt;markup.render.html.escape&lt;/code&gt; property, which is &lt;code&gt;true&lt;/code&gt; by default, will be used

func (ProjectAPIStreamContributingRequest) IncludeHeadingId ¶

(Optional) true if headings should contain an ID based on the heading content. If not specified, the value of the &lt;code&gt;markup.render.headerids&lt;/code&gt; property, which is false by default, will be used

func (ProjectAPIStreamContributingRequest) Markup ¶

If present or &lt;code&gt;\&quot;true\&quot;&lt;/code&gt;, triggers the raw content to be markup-rendered and returned as HTML; otherwise, if not specified, or any value other than &lt;code&gt;\&quot;true\&quot;&lt;/code&gt;, the content is streamed without markup

type ProjectAPIStreamLicenseRequest ¶

type ProjectAPIStreamLicenseRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIStreamLicenseRequest) At ¶

A specific commit or ref to retrieve the guidelines at, or the default branch if not specified

func (ProjectAPIStreamLicenseRequest) Execute ¶

func (ProjectAPIStreamLicenseRequest) Hardwrap ¶

(Optional) Whether the markup implementation should convert newlines to breaks. If not specified, the value of the &lt;code&gt;markup.render.hardwrap&lt;/code&gt; property, which is &lt;code&gt;true&lt;/code&gt; by default, will be used

func (ProjectAPIStreamLicenseRequest) HtmlEscape ¶

(Optional) true if HTML should be escaped in the input markup, false otherwise. If not specified, the value of the &lt;code&gt;markup.render.html.escape&lt;/code&gt; property, which is &lt;code&gt;true&lt;/code&gt; by default, will be used

func (ProjectAPIStreamLicenseRequest) IncludeHeadingId ¶

func (r ProjectAPIStreamLicenseRequest) IncludeHeadingId(includeHeadingId string) ProjectAPIStreamLicenseRequest

(Optional) true if headings should contain an ID based on the heading content. If not specified, the value of the &lt;code&gt;markup.render.headerids&lt;/code&gt; property, which is false by default, will be used

func (ProjectAPIStreamLicenseRequest) Markup ¶

If present or &lt;code&gt;\&quot;true\&quot;&lt;/code&gt;, triggers the raw content to be markup-rendered and returned as HTML; otherwise, if not specified, or any value other than &lt;code&gt;\&quot;true\&quot;&lt;/code&gt;, the content is streamed without markup

type ProjectAPIStreamReadmeRequest ¶

type ProjectAPIStreamReadmeRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIStreamReadmeRequest) At ¶

A specific commit or ref to retrieve the guidelines at, or the default branch if not specified

func (ProjectAPIStreamReadmeRequest) Execute ¶

func (ProjectAPIStreamReadmeRequest) Hardwrap ¶

(Optional) Whether the markup implementation should convert newlines to breaks. If not specified, the value of the &lt;code&gt;markup.render.hardwrap&lt;/code&gt; property, which is &lt;code&gt;true&lt;/code&gt; by default, will be used

func (ProjectAPIStreamReadmeRequest) HtmlEscape ¶

(Optional) true if HTML should be escaped in the input markup, false otherwise. If not specified, the value of the &lt;code&gt;markup.render.html.escape&lt;/code&gt; property, which is &lt;code&gt;true&lt;/code&gt; by default, will be used

func (ProjectAPIStreamReadmeRequest) IncludeHeadingId ¶

func (r ProjectAPIStreamReadmeRequest) IncludeHeadingId(includeHeadingId string) ProjectAPIStreamReadmeRequest

(Optional) true if headings should contain an ID based on the heading content. If not specified, the value of the &lt;code&gt;markup.render.headerids&lt;/code&gt; property, which is false by default, will be used

func (ProjectAPIStreamReadmeRequest) Markup ¶

If present or &lt;code&gt;\&quot;true\&quot;&lt;/code&gt;, triggers the raw content to be markup-rendered and returned as HTML; otherwise, if not specified, or any value other than &lt;code&gt;\&quot;true\&quot;&lt;/code&gt;, the content is streamed without markup

type ProjectAPITestWebhookRequest ¶

type ProjectAPITestWebhookRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPITestWebhookRequest) Execute ¶

func (r ProjectAPITestWebhookRequest) Execute() (interface{}, *http.Response, error)

func (ProjectAPITestWebhookRequest) RestWebhookCredentials ¶

func (r ProjectAPITestWebhookRequest) RestWebhookCredentials(restWebhookCredentials RestWebhookCredentials) ProjectAPITestWebhookRequest

Basic authentication credentials, if required.

func (ProjectAPITestWebhookRequest) SslVerificationRequired ¶

func (r ProjectAPITestWebhookRequest) SslVerificationRequired(sslVerificationRequired bool) ProjectAPITestWebhookRequest

func (ProjectAPITestWebhookRequest) Url ¶

The url in which to connect to

func (ProjectAPITestWebhookRequest) WebhookId ¶

type ProjectAPIUpdateProjectRequest ¶

type ProjectAPIUpdateProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIUpdateProjectRequest) Execute ¶

func (ProjectAPIUpdateProjectRequest) RestProject ¶

Project parameters to update.

type ProjectAPIUpdatePullRequestSettingsRequest ¶

type ProjectAPIUpdatePullRequestSettingsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIUpdatePullRequestSettingsRequest) Execute ¶

func (ProjectAPIUpdatePullRequestSettingsRequest) RestPullRequestSettings ¶

The settings.

type ProjectAPIUpdateRepositoryRequest ¶

type ProjectAPIUpdateRepositoryRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIUpdateRepositoryRequest) Execute ¶

func (ProjectAPIUpdateRepositoryRequest) RestRepository ¶

The updated repository.

type ProjectAPIUpdateWebhookRequest ¶

type ProjectAPIUpdateWebhookRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIUpdateWebhookRequest) Execute ¶

func (ProjectAPIUpdateWebhookRequest) RestWebhook ¶

The representation of the updated values for the webhook

type ProjectAPIUploadAvatarRequest ¶

type ProjectAPIUploadAvatarRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ProjectAPIUploadAvatarRequest) Avatar ¶

The avatar file to upload.

func (ProjectAPIUploadAvatarRequest) Execute ¶

type PullRequestsAPIApplySuggestionRequest ¶

type PullRequestsAPIApplySuggestionRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIApplySuggestionRequest) Execute ¶

func (PullRequestsAPIApplySuggestionRequest) RestApplySuggestionRequest ¶

func (r PullRequestsAPIApplySuggestionRequest) RestApplySuggestionRequest(restApplySuggestionRequest RestApplySuggestionRequest) PullRequestsAPIApplySuggestionRequest

A request containing other parameters required to apply a suggestion - The given versions/hashes must match the server&#39;s version/hashes or the suggestion application will fail (in order to avoid applying the suggestion to the wrong place

type PullRequestsAPIApproveRequest ¶

type PullRequestsAPIApproveRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIApproveRequest) Execute ¶

type PullRequestsAPIAssignParticipantRoleRequest ¶

type PullRequestsAPIAssignParticipantRoleRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIAssignParticipantRoleRequest) Execute ¶

func (PullRequestsAPIAssignParticipantRoleRequest) RestPullRequestAssignParticipantRoleRequest ¶

func (r PullRequestsAPIAssignParticipantRoleRequest) RestPullRequestAssignParticipantRoleRequest(restPullRequestAssignParticipantRoleRequest RestPullRequestAssignParticipantRoleRequest) PullRequestsAPIAssignParticipantRoleRequest

The participant to be added to the pull request, includes the user and their role

type PullRequestsAPICanMergeRequest ¶

type PullRequestsAPICanMergeRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPICanMergeRequest) Execute ¶

type PullRequestsAPICanRebaseRequest ¶

type PullRequestsAPICanRebaseRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPICanRebaseRequest) Execute ¶

type PullRequestsAPICreate1Request ¶

type PullRequestsAPICreate1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPICreate1Request) Execute ¶

func (PullRequestsAPICreate1Request) RestReviewerGroup ¶

func (r PullRequestsAPICreate1Request) RestReviewerGroup(restReviewerGroup RestReviewerGroup) PullRequestsAPICreate1Request

The reviewer group to be create

type PullRequestsAPICreate2Request ¶

type PullRequestsAPICreate2Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPICreate2Request) Execute ¶

func (PullRequestsAPICreate2Request) RestReviewerGroup ¶

func (r PullRequestsAPICreate2Request) RestReviewerGroup(restReviewerGroup RestReviewerGroup) PullRequestsAPICreate2Request

The request containing the details of the reviewer group.

type PullRequestsAPICreateComment1Request ¶

type PullRequestsAPICreateComment1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPICreateComment1Request) Execute ¶

func (PullRequestsAPICreateComment1Request) RestComment ¶

The comment to add.

type PullRequestsAPICreateComment2Request ¶

type PullRequestsAPICreateComment2Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPICreateComment2Request) Execute ¶

func (PullRequestsAPICreateComment2Request) RestComment ¶

The comment to add

type PullRequestsAPICreatePullRequestCondition1Request ¶

type PullRequestsAPICreatePullRequestCondition1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPICreatePullRequestCondition1Request) Execute ¶

func (PullRequestsAPICreatePullRequestCondition1Request) RestDefaultReviewersRequest ¶

The details needed to create a default reviewer pull request condition.

type PullRequestsAPICreatePullRequestConditionRequest ¶

type PullRequestsAPICreatePullRequestConditionRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPICreatePullRequestConditionRequest) Execute ¶

func (PullRequestsAPICreatePullRequestConditionRequest) RestDefaultReviewersRequest ¶

The details needed to create a default reviewer pull request condition.

type PullRequestsAPICreateRequest ¶

type PullRequestsAPICreateRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPICreateRequest) Execute ¶

func (PullRequestsAPICreateRequest) RestPullRequest ¶

The pull request data

type PullRequestsAPIDeclineRequest ¶

type PullRequestsAPIDeclineRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIDeclineRequest) Execute ¶

func (PullRequestsAPIDeclineRequest) RestPullRequestDeclineRequest ¶

func (r PullRequestsAPIDeclineRequest) RestPullRequestDeclineRequest(restPullRequestDeclineRequest RestPullRequestDeclineRequest) PullRequestsAPIDeclineRequest

The body holder

func (PullRequestsAPIDeclineRequest) Version ¶

The current version of the pull request. If the server&#39;s version isn&#39;t the same as the specified version the operation will fail. To determine the current version of the pull request it should be fetched from the server prior to this operation. Look for the &#39;version&#39; attribute in the returned JSON structure.

type PullRequestsAPIDelete3Request ¶

type PullRequestsAPIDelete3Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIDelete3Request) Execute ¶

func (PullRequestsAPIDelete3Request) RestPullRequestDeleteRequest ¶

func (r PullRequestsAPIDelete3Request) RestPullRequestDeleteRequest(restPullRequestDeleteRequest RestPullRequestDeleteRequest) PullRequestsAPIDelete3Request

A body containing the version of the pull request

type PullRequestsAPIDelete4Request ¶

type PullRequestsAPIDelete4Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIDelete4Request) Execute ¶

type PullRequestsAPIDelete5Request ¶

type PullRequestsAPIDelete5Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIDelete5Request) Execute ¶

type PullRequestsAPIDeleteComment1Request ¶

type PullRequestsAPIDeleteComment1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIDeleteComment1Request) Execute ¶

func (PullRequestsAPIDeleteComment1Request) Version ¶

The expected version of the comment. This must match the server&#39;s version of the comment or the delete will fail. To determine the current version of the comment, the comment should be fetched from the server prior to the delete. Look for the &#39;version&#39; attribute in the returned JSON structure.

type PullRequestsAPIDeleteComment2Request ¶

type PullRequestsAPIDeleteComment2Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIDeleteComment2Request) Execute ¶

func (PullRequestsAPIDeleteComment2Request) Version ¶

The expected version of the comment. This must match the server&#39;s version of the comment or the delete will fail. To determine the current version of the comment, the comment should be fetched from the server prior to the delete. Look for the &#39;version&#39; attribute in the returned JSON structure.

type PullRequestsAPIDeletePullRequestCondition1Request ¶

type PullRequestsAPIDeletePullRequestCondition1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIDeletePullRequestCondition1Request) Execute ¶

type PullRequestsAPIDeletePullRequestConditionRequest ¶

type PullRequestsAPIDeletePullRequestConditionRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIDeletePullRequestConditionRequest) Execute ¶

type PullRequestsAPIDiscardReviewRequest ¶

type PullRequestsAPIDiscardReviewRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIDiscardReviewRequest) Execute ¶

type PullRequestsAPIFinishReviewRequest ¶

type PullRequestsAPIFinishReviewRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIFinishReviewRequest) Execute ¶

func (PullRequestsAPIFinishReviewRequest) RestPullRequestFinishReviewRequest ¶

func (r PullRequestsAPIFinishReviewRequest) RestPullRequestFinishReviewRequest(restPullRequestFinishReviewRequest RestPullRequestFinishReviewRequest) PullRequestsAPIFinishReviewRequest

The REST request which contains comment text and participant status

type PullRequestsAPIGet3Request ¶

type PullRequestsAPIGet3Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGet3Request) Execute ¶

type PullRequestsAPIGetActivitiesRequest ¶

type PullRequestsAPIGetActivitiesRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetActivitiesRequest) Execute ¶

func (PullRequestsAPIGetActivitiesRequest) FromId ¶

(optional) the ID of the activity item to use as the first item in the returned page

func (PullRequestsAPIGetActivitiesRequest) FromType ¶

(required if &lt;strong&gt;fromId&lt;/strong&gt; is present) the type of the activity item specified by &lt;strong&gt;fromId&lt;/strong&gt; (either &lt;strong&gt;COMMENT&lt;/strong&gt; or &lt;strong&gt;ACTIVITY&lt;/strong&gt;)

func (PullRequestsAPIGetActivitiesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIGetActivitiesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PullRequestsAPIGetComment1Request ¶

type PullRequestsAPIGetComment1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetComment1Request) Execute ¶

type PullRequestsAPIGetComment2Request ¶

type PullRequestsAPIGetComment2Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetComment2Request) Execute ¶

type PullRequestsAPIGetComments1Request ¶

type PullRequestsAPIGetComments1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetComments1Request) Count ¶

If true only the count of the comments by state will be returned (and not the body of the comments).

func (PullRequestsAPIGetComments1Request) Execute ¶

func (PullRequestsAPIGetComments1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIGetComments1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (PullRequestsAPIGetComments1Request) State ¶

func (PullRequestsAPIGetComments1Request) States ¶

(optional). If supplied, only comments with a state in the given list will be returned. The state can be OPEN or RESOLVED.

type PullRequestsAPIGetComments2Request ¶

type PullRequestsAPIGetComments2Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetComments2Request) AnchorState ¶

ACTIVE to stream the active comments; ORPHANED to stream the orphaned comments; ALL to stream both the active and the orphaned comments;

func (PullRequestsAPIGetComments2Request) DiffType ¶

func (PullRequestsAPIGetComments2Request) DiffTypes ¶

EFFECTIVE to stream the comments related to the effective diff of the pull request; RANGE to stream comments related to a commit range between two arbitrary commits (requires &#39;fromHash&#39; and &#39;toHash&#39;); COMMIT to stream comments related to a commit between two arbitrary commits (requires &#39;fromHash&#39; and &#39;toHash&#39;)

func (PullRequestsAPIGetComments2Request) Execute ¶

func (PullRequestsAPIGetComments2Request) FromHash ¶

The from commit hash to stream comments for a RANGE or COMMIT arbitrary change scope

func (PullRequestsAPIGetComments2Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIGetComments2Request) Path ¶

The path to stream comments for a given path

func (PullRequestsAPIGetComments2Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (PullRequestsAPIGetComments2Request) State ¶

func (PullRequestsAPIGetComments2Request) States ¶

(optional). If supplied, only comments with a state in the given list will be returned. The state can be OPEN or RESOLVED.

func (PullRequestsAPIGetComments2Request) ToHash ¶

The to commit hash to stream comments for a RANGE or COMMIT arbitrary change scope

type PullRequestsAPIGetCommitMessageSuggestionRequest ¶

type PullRequestsAPIGetCommitMessageSuggestionRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetCommitMessageSuggestionRequest) Execute ¶

type PullRequestsAPIGetCommits1Request ¶

type PullRequestsAPIGetCommits1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetCommits1Request) AvatarScheme ¶

The desired scheme for the avatar URL. If the parameter is not present URLs will use the same scheme as this request

func (PullRequestsAPIGetCommits1Request) AvatarSize ¶

If present the service adds avatar URLs for commit authors. Should be an integer specifying the desired size in pixels. If the parameter is not present, avatar URLs will not be setCOMMIT to stream comments related to a commit between two arbitrary commits (requires &#39;fromHash&#39; and &#39;toHash&#39;)

func (PullRequestsAPIGetCommits1Request) Execute ¶

func (PullRequestsAPIGetCommits1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIGetCommits1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (PullRequestsAPIGetCommits1Request) WithCounts ¶

If set to true, the service will add \&quot;authorCount\&quot; and \&quot;totalCount\&quot; at the end of the page. \&quot;authorCount\&quot; is the number of different authors and \&quot;totalCount\&quot; is the total number of commits.

type PullRequestsAPIGetMergeConfigRequest ¶

type PullRequestsAPIGetMergeConfigRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetMergeConfigRequest) Execute ¶

type PullRequestsAPIGetPageRequest ¶

type PullRequestsAPIGetPageRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetPageRequest) At ¶

(optional) a &lt;i&gt;fully-qualified&lt;/i&gt; branch ID to find pull requests to or from, such as refs/heads/master

func (PullRequestsAPIGetPageRequest) Direction ¶

(optional, defaults to &lt;strong&gt;INCOMING&lt;/strong&gt;) the direction relative to the specified repository. Either &lt;strong&gt;INCOMING&lt;/strong&gt; or &lt;strong&gt;OUTGOING&lt;/strong&gt;.

func (PullRequestsAPIGetPageRequest) Execute ¶

func (PullRequestsAPIGetPageRequest) FilterText ¶

(optional) If specified, only pull requests where the title or description contains the supplied string will be returned.

func (PullRequestsAPIGetPageRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIGetPageRequest) Order ¶

(optional, defaults to &lt;strong&gt;NEWEST&lt;/strong&gt;) the order to return pull requests in, either &lt;strong&gt;OLDEST&lt;/strong&gt; (as in: \&quot;oldest first\&quot;) or &lt;strong&gt;NEWEST&lt;/strong&gt;.

func (PullRequestsAPIGetPageRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (PullRequestsAPIGetPageRequest) State ¶

(optional, defaults to &lt;strong&gt;OPEN&lt;/strong&gt;). Supply &lt;strong&gt;ALL&lt;/strong&gt; to return pull request in any state. If a state is supplied only pull requests in the specified state will be returned. Either &lt;strong&gt;OPEN&lt;/strong&gt;, &lt;strong&gt;DECLINED&lt;/strong&gt; or &lt;strong&gt;MERGED&lt;/strong&gt;.

func (PullRequestsAPIGetPageRequest) WithAttributes ¶

func (r PullRequestsAPIGetPageRequest) WithAttributes(withAttributes string) PullRequestsAPIGetPageRequest

(optional) defaults to true, whether to return additional pull request attributes

func (PullRequestsAPIGetPageRequest) WithProperties ¶

func (r PullRequestsAPIGetPageRequest) WithProperties(withProperties string) PullRequestsAPIGetPageRequest

(optional) defaults to true, whether to return additional pull request properties

type PullRequestsAPIGetPullRequestConditions1Request ¶

type PullRequestsAPIGetPullRequestConditions1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetPullRequestConditions1Request) Execute ¶

type PullRequestsAPIGetPullRequestConditionsRequest ¶

type PullRequestsAPIGetPullRequestConditionsRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetPullRequestConditionsRequest) Execute ¶

type PullRequestsAPIGetPullRequestsRequest ¶

type PullRequestsAPIGetPullRequestsRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetPullRequestsRequest) Execute ¶

func (PullRequestsAPIGetPullRequestsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIGetPullRequestsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PullRequestsAPIGetReviewRequest ¶

type PullRequestsAPIGetReviewRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetReviewRequest) Execute ¶

func (PullRequestsAPIGetReviewRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIGetReviewRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PullRequestsAPIGetReviewerGroup1Request ¶

type PullRequestsAPIGetReviewerGroup1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetReviewerGroup1Request) Execute ¶

type PullRequestsAPIGetReviewerGroupRequest ¶

type PullRequestsAPIGetReviewerGroupRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetReviewerGroupRequest) Execute ¶

type PullRequestsAPIGetReviewerGroups1Request ¶

type PullRequestsAPIGetReviewerGroups1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetReviewerGroups1Request) Execute ¶

func (PullRequestsAPIGetReviewerGroups1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIGetReviewerGroups1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PullRequestsAPIGetReviewerGroupsRequest ¶

type PullRequestsAPIGetReviewerGroupsRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetReviewerGroupsRequest) Execute ¶

func (PullRequestsAPIGetReviewerGroupsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIGetReviewerGroupsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PullRequestsAPIGetReviewersRequest ¶

type PullRequestsAPIGetReviewersRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetReviewersRequest) Execute ¶

func (PullRequestsAPIGetReviewersRequest) SourceRefId ¶

The ID of the source ref

func (PullRequestsAPIGetReviewersRequest) SourceRepoId ¶

The ID of the repository in which the source ref exists

func (PullRequestsAPIGetReviewersRequest) TargetRefId ¶

The ID of the target ref

func (PullRequestsAPIGetReviewersRequest) TargetRepoId ¶

The ID of the repository in which the target ref exists

type PullRequestsAPIGetUsersRequest ¶

type PullRequestsAPIGetUsersRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIGetUsersRequest) Execute ¶

type PullRequestsAPIListParticipantsRequest ¶

type PullRequestsAPIListParticipantsRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIListParticipantsRequest) Execute ¶

func (PullRequestsAPIListParticipantsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIListParticipantsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PullRequestsAPIMergeRequest ¶

type PullRequestsAPIMergeRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIMergeRequest) Execute ¶

func (PullRequestsAPIMergeRequest) RestPullRequestMergeRequest ¶

func (r PullRequestsAPIMergeRequest) RestPullRequestMergeRequest(restPullRequestMergeRequest RestPullRequestMergeRequest) PullRequestsAPIMergeRequest

The body holder

func (PullRequestsAPIMergeRequest) Version ¶

The current version of the pull request. If the server&#39;s version isn&#39;t the same as the specified version the operation will fail. To determine the current version of the pull request it should be fetched from the server prior to this operation. Look for the &#39;version&#39; attribute in the returned JSON structure.

type PullRequestsAPIReact1Request ¶

type PullRequestsAPIReact1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIReact1Request) Execute ¶

type PullRequestsAPIRebaseRequest ¶

type PullRequestsAPIRebaseRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIRebaseRequest) Execute ¶

func (PullRequestsAPIRebaseRequest) RestPullRequestRebaseRequest ¶

func (r PullRequestsAPIRebaseRequest) RestPullRequestRebaseRequest(restPullRequestRebaseRequest RestPullRequestRebaseRequest) PullRequestsAPIRebaseRequest

The pull request rebase request.

type PullRequestsAPIReopenRequest ¶

type PullRequestsAPIReopenRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIReopenRequest) Execute ¶

func (PullRequestsAPIReopenRequest) RestPullRequestReopenRequest ¶

func (r PullRequestsAPIReopenRequest) RestPullRequestReopenRequest(restPullRequestReopenRequest RestPullRequestReopenRequest) PullRequestsAPIReopenRequest

The body holder

func (PullRequestsAPIReopenRequest) Version ¶

The current version of the pull request. If the server&#39;s version isn&#39;t the same as the specified version the operation will fail. To determine the current version of the pull request it should be fetched from the server prior to this operation. Look for the &#39;version&#39; attribute in the returned JSON structure.

type PullRequestsAPISearchRequest ¶

type PullRequestsAPISearchRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPISearchRequest) Direction ¶

(optional), Defaults to &lt;strong&gt;INCOMING&lt;/strong&gt;) the direction relative to the specified repository. Either &lt;strong&gt;INCOMING&lt;/strong&gt; or &lt;strong&gt;OUTGOING&lt;/strong&gt;.

func (PullRequestsAPISearchRequest) Execute ¶

func (PullRequestsAPISearchRequest) Filter ¶

(optional) Return only users, whose username, name or email address &lt;i&gt;contain&lt;/i&gt; the filter value

func (PullRequestsAPISearchRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPISearchRequest) Role ¶

(optional) The role associated with the pull request participant. This must be one of AUTHOR, REVIEWER, or PARTICIPANT

func (PullRequestsAPISearchRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type PullRequestsAPIService ¶

type PullRequestsAPIService service

PullRequestsAPIService PullRequestsAPI service

func (*PullRequestsAPIService) ApplySuggestion ¶

func (a *PullRequestsAPIService) ApplySuggestion(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) PullRequestsAPIApplySuggestionRequest

ApplySuggestion Apply pull request suggestion

Apply a suggestion contained within a comment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The ID of the comment to retrieve.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIApplySuggestionRequest

func (*PullRequestsAPIService) ApplySuggestionExecute ¶

Execute executes the request

func (*PullRequestsAPIService) Approve ¶

func (a *PullRequestsAPIService) Approve(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIApproveRequest

Approve Approve pull request

Approve a pull request as the current user. Implicitly adds the user as a participant if they are not already.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

<strong>Deprecated since 4.2</strong>. Use /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/participants/{userSlug} instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIApproveRequest

Deprecated

func (*PullRequestsAPIService) ApproveExecute ¶

Execute executes the request

@return RestPullRequestParticipant

Deprecated

func (*PullRequestsAPIService) AssignParticipantRole ¶

func (a *PullRequestsAPIService) AssignParticipantRole(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIAssignParticipantRoleRequest

AssignParticipantRole Assign pull request participant role

Assigns a participant to an explicit role in pull request. Currently only the REVIEWER role may be assigned.

If the user is not yet a participant in the pull request, they are made one and assigned the supplied role.

If the user is already a participant in the pull request, their previous role is replaced with the supplied role unless they are already assigned the AUTHOR role which cannot be changed and will result in a Bad Request (400) response code.

The authenticated user must have <strong>REPO_WRITE</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIAssignParticipantRoleRequest

func (*PullRequestsAPIService) AssignParticipantRoleExecute ¶

Execute executes the request

@return RestPullRequestParticipant

func (*PullRequestsAPIService) CanMerge ¶

func (a *PullRequestsAPIService) CanMerge(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPICanMergeRequest

CanMerge Test if pull request can be merged

Test whether a pull request can be merged.

A pull request may not be merged if:

- there are conflicts that need to be manually resolved before merging; and/or - one or more merge checks have vetoed the merge.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPICanMergeRequest

func (*PullRequestsAPIService) CanMergeExecute ¶

Execute executes the request

@return RestPullRequestMergeability

func (*PullRequestsAPIService) CanRebase ¶

func (a *PullRequestsAPIService) CanRebase(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPICanRebaseRequest

CanRebase Check PR rebase precondition

Checks preconditions to determine whether the pull request can be rebased.

Some of the preconditions are:

- The pull request is between Git repositories - The pull request is currently open - The pull request's {@link PullRequest#getFromRef "from" ref} is a <i>branch</i>

  • In other words, the qualified ID for the "from" ref must start with <code>refs/heads/</code>
  • Tags, and other non-standard refs, cannot be rebased

- The current user has an e-mail address

  • Pull requests cannot be rebased anonymously
  • `git rebase` records the current user as the committer for the rebased commits, which requires a name and e-mail address

- The current user has <i>write</i> access to the {@link PullRequest#getFromRef "from" ref}'s repository

  • Note that in order to <i>view</i> a pull request a user is only required to have <i>read</i> access to the {@link PullRequest#getToRef toRef}'s repository, so just because a user can <i>see</i> a pull request does not mean they can request a rebase

This list is not exhaustive, and the exact set of preconditions applied can be extended by third-party add-ons.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository.
@param repositorySlug The repository slug.
@return PullRequestsAPICanRebaseRequest

func (*PullRequestsAPIService) CanRebaseExecute ¶

Execute executes the request

@return RestPullRequestRebaseability

func (*PullRequestsAPIService) Create ¶

func (a *PullRequestsAPIService) Create(ctx context.Context, projectKey string, repositorySlug string) PullRequestsAPICreateRequest

Create Create pull request

Create a new pull request from a source branch or tag to a target branch. The source and target may be in the same repository, or different ones. (Note that different repositories must belong to the same <code>Repository#getHierarchyId()</code> hierarchy.)

The <code>fromRef</code> may be a branch or a tag. The <code>toRef</code> is required to be a branch. Tags are not allowed as targets because tags are intended to be immutable and should not be changed after they are created.

The authenticated user must have <strong>REPO_READ</strong> permission for the <code>fromRef</code> and <code>toRef</code> repositories to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PullRequestsAPICreateRequest

func (*PullRequestsAPIService) Create1 ¶

Create1 Create reviewer group

Create a reviewer group.

The authenticated user must have <b>PROJECT_ADMIN</b> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return PullRequestsAPICreate1Request

func (*PullRequestsAPIService) Create1Execute ¶

Execute executes the request

@return RestReviewerGroup

func (*PullRequestsAPIService) Create2 ¶

func (a *PullRequestsAPIService) Create2(ctx context.Context, projectKey string, repositorySlug string) PullRequestsAPICreate2Request

Create2 Create reviewer group

Create a reviewer group.

The authenticated user must have <b>REPO_ADMIN</b> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PullRequestsAPICreate2Request

func (*PullRequestsAPIService) Create2Execute ¶

Execute executes the request

@return RestReviewerGroup

func (*PullRequestsAPIService) CreateComment1 ¶

func (a *PullRequestsAPIService) CreateComment1(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPICreateComment1Request

CreateComment1 Add new blocker comment

Add a new blocker comment.

Comments can be added in a few places by setting different attributes:

General pull request blocker comment: ```

{
     "text": "A task on a pull request."
}

```

Blocker reply to a comment:

```

{
     "text": "This reply is a task.",
     "parent": {
         "id": 1
     }
}

```

General blocker file comment:

```

{
     "text": "A blocker comment on a file.",
     "anchor": {
         "diffType": "RANGE",
         "fromHash": "6df3858eeb9a53a911cd17e66a9174d44ffb02cd",
         "path": "path/to/file",
         "srcPath": "path/to/file",
         "toHash": "04c7c5c931b9418ca7b66f51fe934d0bd9b2ba4b"
     }
 }

```

Blocker file line comment:

```

{
     "text": "A task on a particular line within a file.",
     "anchor": {
         "diffType": "COMMIT",
         "line": 1,
         "lineType": "CONTEXT",
         "fileType": "FROM",
         "fromHash": "6df3858eeb9a53a911cd17e66a9174d44ffb02cd",
         "path": "path/to/file",
         "srcPath": "path/to/file",
         "toHash": "04c7c5c931b9418ca7b66f51fe934d0bd9b2ba4b"
     }
 }

```

For file and line comments, 'path' refers to the path of the file to which the comment should be applied and 'srcPath' refers to the path the that file used to have (only required for copies and moves). Also, fromHash and toHash refer to the sinceId / untilId (respectively) used to produce the diff on which the comment was added. Finally diffType refers to the type of diff the comment was added on. For backwards compatibility purposes if no diffType is provided and no fromHash/toHash pair is provided the diffType will be resolved to 'EFFECTIVE'. In any other cases the diffType is REQUIRED.

For line comments, 'line' refers to the line in the diff that the comment should apply to. 'lineType' refers to the type of diff hunk, which can be:

- 'ADDED' - for an added line; - 'REMOVED' - for a removed line; or - 'CONTEXT' - for a line that was unmodified but is in the vicinity of the diff.

'fileType' refers to the file of the diff to which the anchor should be attached - which is of relevance when displaying the diff in a side-by-side way. Currently the supported values are:

- 'FROM' - the source file of the diff

  • 'TO' - the destination file of the diff

If the current user is not a participant the user is added as a watcher of the pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPICreateComment1Request

func (*PullRequestsAPIService) CreateComment1Execute ¶

Execute executes the request

@return RestComment

func (*PullRequestsAPIService) CreateComment2 ¶

func (a *PullRequestsAPIService) CreateComment2(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPICreateComment2Request

CreateComment2 Add pull request comment

Add a new comment.

Comments can be added in a few places by setting different attributes: </p>General pull request comment:

<pre> {
  "text": "An insightful general comment on a pull request."
}
</pre> Reply to a comment:  <pre> {
  "text": "A measured reply.",
  "parent": {
     "id": 1
   }
}
</pre> General file comment:  <pre> {
  "text": "An insightful general comment on a file.",
  "anchor": {
     "diffType": "RANGE",
     "fromHash": "6df3858eeb9a53a911cd17e66a9174d44ffb02cd",
     "path": "path/to/file",
     "srcPath": "path/to/file",
     "toHash": "04c7c5c931b9418ca7b66f51fe934d0bd9b2ba4b"
  }
}
</pre> File line comment:  <pre> {
  "text": "A pithy comment on a particular line within a file.",
  "anchor": {
     "diffType": "COMMIT",
     "line": 1,
     "lineType": "CONTEXT",
     "fileType": "FROM",
     "fromHash": "6df3858eeb9a53a911cd17e66a9174d44ffb02cd",
     "path": "path/to/file",
     "srcPath": "path/to/file",
     "toHash": "04c7c5c931b9418ca7b66f51fe934d0bd9b2ba4b"
   }
}
</pre>

Add a new task.

Tasks are just comments with the attribute 'severity' set to 'BLOCKER':

General pull request task:  <pre> {
   "text": "A task on a pull request.",
   "severity": "BLOCKER"
 }
 </pre>

 Add a pending comment.

Pending comments are just comments with the attribute 'state' set to 'PENDING':

Pending comment: <pre> {
   "text": "This is a pending comment",
   "state": "PENDING"
 }
 </pre>

For file and line comments, 'path' refers to the path of the file to which the comment should be applied and 'srcPath' refers to the path the that file used to have (only required for copies and moves). Also, fromHash and toHash refer to the sinceId / untilId (respectively) used to produce the diff on which the comment was added. Finally diffType refers to the type of diff the comment was added on. For backwards compatibility purposes if no diffType is provided and no fromHash/toHash pair is provided the diffType will be resolved to 'EFFECTIVE'. In any other cases the diffType is REQUIRED.

For line comments, 'line' refers to the line in the diff that the comment should apply to. 'lineType' refers to the type of diff hunk, which can be:

- 'ADDED' - for an added line; - 'REMOVED' - for a removed line; or - 'CONTEXT' - for a line that was unmodified but is in the vicinity of the diff. </ul>'fileType' refers to the file of the diff to which the anchor should be attached - which is of relevance when displaying the diff in a side-by-side way. Currently the supported values are:

- 'FROM' - the source file of the diff - 'TO' - the destination file of the diff </ul>If the current user is not a participant the user is added as a watcher of the pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPICreateComment2Request

func (*PullRequestsAPIService) CreateComment2Execute ¶

Execute executes the request

@return RestComment

func (*PullRequestsAPIService) CreateExecute ¶

Execute executes the request

@return RestPullRequest

func (*PullRequestsAPIService) CreatePullRequestCondition ¶

func (a *PullRequestsAPIService) CreatePullRequestCondition(ctx context.Context, projectKey string) PullRequestsAPICreatePullRequestConditionRequest

CreatePullRequestCondition Create default reviewer

Create a default reviewer pull request condition for the given project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return PullRequestsAPICreatePullRequestConditionRequest

func (*PullRequestsAPIService) CreatePullRequestCondition1 ¶

func (a *PullRequestsAPIService) CreatePullRequestCondition1(ctx context.Context, projectKey string, repositorySlug string) PullRequestsAPICreatePullRequestCondition1Request

CreatePullRequestCondition1 Create default reviewers condition

Create a default reviewer pull request condition for the given repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PullRequestsAPICreatePullRequestCondition1Request

func (*PullRequestsAPIService) CreatePullRequestCondition1Execute ¶

Execute executes the request

@return RestPullRequestCondition

func (*PullRequestsAPIService) CreatePullRequestConditionExecute ¶

Execute executes the request

@return RestPullRequestCondition

func (*PullRequestsAPIService) Decline ¶

func (a *PullRequestsAPIService) Decline(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIDeclineRequest

Decline Decline pull request

Decline a pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pullrequest ID provided by the path
@param repositorySlug The repository slug.
@return PullRequestsAPIDeclineRequest

func (*PullRequestsAPIService) DeclineExecute ¶

Execute executes the request

@return RestPullRequest

func (*PullRequestsAPIService) Delete3 ¶

func (a *PullRequestsAPIService) Delete3(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIDelete3Request

Delete3 Delete pull request

Deletes a pull request.

To call this resource, users must be authenticated and have permission to view the pull request. Additionally, they must:

- be the pull request author, if the system is configured to allow authors to delete their own pull requests (this is the default) OR - have repository administrator permission for the repository the pull request is targeting

A body containing the version of the pull request must be provided with this request.

`{ "version": 1 }`

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIDelete3Request

func (*PullRequestsAPIService) Delete3Execute ¶

Execute executes the request

func (*PullRequestsAPIService) Delete4 ¶

Delete4 Delete reviewer group

Deletes a reviewer group.

The authenticated user must have <b>PROJECT_ADMIN</b> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the reviewer group to be deleted
@return PullRequestsAPIDelete4Request

func (*PullRequestsAPIService) Delete4Execute ¶

Execute executes the request

func (*PullRequestsAPIService) Delete5 ¶

func (a *PullRequestsAPIService) Delete5(ctx context.Context, projectKey string, id string, repositorySlug string) PullRequestsAPIDelete5Request

Delete5 Delete reviewer group

Deletes a reviewer group.

The authenticated user must have <b>REPO_ADMIN</b> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the reviewer group to be deleted
@param repositorySlug The repository slug.
@return PullRequestsAPIDelete5Request

func (*PullRequestsAPIService) Delete5Execute ¶

Execute executes the request

func (*PullRequestsAPIService) DeleteComment1 ¶

func (a *PullRequestsAPIService) DeleteComment1(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) PullRequestsAPIDeleteComment1Request

DeleteComment1 Delete pull request comment

Delete a pull request comment. Anyone can delete their own comment. Only users with <strong>REPO_ADMIN</strong> and above may delete comments created by other users.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The ID of the comment to retrieve.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIDeleteComment1Request

func (*PullRequestsAPIService) DeleteComment1Execute ¶

Execute executes the request

func (*PullRequestsAPIService) DeleteComment2 ¶

func (a *PullRequestsAPIService) DeleteComment2(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) PullRequestsAPIDeleteComment2Request

DeleteComment2 Delete a pull request comment

Delete a pull request comment. Anyone can delete their own comment. Only users with <strong>REPO_ADMIN</strong> and above may delete comments created by other users.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The ID of the comment to retrieve.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIDeleteComment2Request

func (*PullRequestsAPIService) DeleteComment2Execute ¶

Execute executes the request

func (*PullRequestsAPIService) DeletePullRequestCondition ¶

func (a *PullRequestsAPIService) DeletePullRequestCondition(ctx context.Context, projectKey string, id string) PullRequestsAPIDeletePullRequestConditionRequest

DeletePullRequestCondition Remove default reviewer

Delete the default reviewer pull request condition associated with the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the pull request condition.
@return PullRequestsAPIDeletePullRequestConditionRequest

func (*PullRequestsAPIService) DeletePullRequestCondition1 ¶

func (a *PullRequestsAPIService) DeletePullRequestCondition1(ctx context.Context, projectKey string, id int32, repositorySlug string) PullRequestsAPIDeletePullRequestCondition1Request

DeletePullRequestCondition1 Delete a default reviewer condition

Delete the default reviewer pull request condition associated with the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id
@param repositorySlug The repository slug.
@return PullRequestsAPIDeletePullRequestCondition1Request

func (*PullRequestsAPIService) DeletePullRequestCondition1Execute ¶

Execute executes the request

func (*PullRequestsAPIService) DeletePullRequestConditionExecute ¶

Execute executes the request

func (*PullRequestsAPIService) DiscardReview ¶

func (a *PullRequestsAPIService) DiscardReview(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIDiscardReviewRequest

DiscardReview Discard pull request review

Discard a pull request review for the authenticated user.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIDiscardReviewRequest

func (*PullRequestsAPIService) DiscardReviewExecute ¶

Execute executes the request

func (*PullRequestsAPIService) FinishReview ¶

func (a *PullRequestsAPIService) FinishReview(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIFinishReviewRequest

FinishReview Complete pull request review

Complete a review on a pull request.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIFinishReviewRequest

func (*PullRequestsAPIService) FinishReviewExecute ¶

Execute executes the request

func (*PullRequestsAPIService) Get3 ¶

func (a *PullRequestsAPIService) Get3(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIGet3Request

Get3 Get pull request

Retrieve a pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIGet3Request

func (*PullRequestsAPIService) Get3Execute ¶

Execute executes the request

@return RestPullRequest

func (*PullRequestsAPIService) GetActivities ¶

func (a *PullRequestsAPIService) GetActivities(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIGetActivitiesRequest

GetActivities Get pull request activity

Retrieve a page of activity associated with a pull request.

Activity items include comments, approvals, rescopes (i.e. adding and removing of commits), merges and more.

Different types of activity items may be introduced in newer versions of Stash or by user installed plugins, so clients should be flexible enough to handle unexpected entity shapes in the returned page.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIGetActivitiesRequest

func (*PullRequestsAPIService) GetActivitiesExecute ¶

Execute executes the request

@return GetActivities200Response

func (*PullRequestsAPIService) GetComment1 ¶

func (a *PullRequestsAPIService) GetComment1(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) PullRequestsAPIGetComment1Request

GetComment1 Get pull request comment

Retrieves a pull request comment.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The ID of the comment to retrieve
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIGetComment1Request

func (*PullRequestsAPIService) GetComment1Execute ¶

Execute executes the request

@return RestComment

func (*PullRequestsAPIService) GetComment2 ¶

func (a *PullRequestsAPIService) GetComment2(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) PullRequestsAPIGetComment2Request

GetComment2 Get a pull request comment

Retrieves a pull request comment.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The ID of the comment to retrieve.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIGetComment2Request

func (*PullRequestsAPIService) GetComment2Execute ¶

Execute executes the request

@return RestComment

func (*PullRequestsAPIService) GetComments1 ¶

func (a *PullRequestsAPIService) GetComments1(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIGetComments1Request

GetComments1 Search pull request comments

Gets comments matching the given set of field values for the specified pull request. (Note this does <b>not</b> perform any kind of searching for comments by their text).

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIGetComments1Request

func (*PullRequestsAPIService) GetComments1Execute ¶

Execute executes the request

@return GetComments200Response

func (*PullRequestsAPIService) GetComments2 ¶

func (a *PullRequestsAPIService) GetComments2(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIGetComments2Request

GetComments2 Get pull request comments for path

Gets comments for the specified pull request and path.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIGetComments2Request

func (*PullRequestsAPIService) GetComments2Execute ¶

Execute executes the request

@return GetComments200Response

func (*PullRequestsAPIService) GetCommitMessageSuggestion ¶

func (a *PullRequestsAPIService) GetCommitMessageSuggestion(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIGetCommitMessageSuggestionRequest

GetCommitMessageSuggestion Get commit message suggestion

Retrieve a suggested commit message for the given Pull Request.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request to generate the suggestion for
@param repositorySlug The repository slug.
@return PullRequestsAPIGetCommitMessageSuggestionRequest

func (*PullRequestsAPIService) GetCommitMessageSuggestionExecute ¶

Execute executes the request

@return RestCommitMessageSuggestion

func (*PullRequestsAPIService) GetCommits1 ¶

func (a *PullRequestsAPIService) GetCommits1(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIGetCommits1Request

GetCommits1 Get pull request commits

Retrieve commits for the specified pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId ID of the pullrequest, part of the path
@param repositorySlug The repository slug.
@return PullRequestsAPIGetCommits1Request

func (*PullRequestsAPIService) GetCommits1Execute ¶

Execute executes the request

@return GetCommits200Response

func (*PullRequestsAPIService) GetMergeConfig ¶

GetMergeConfig Get merge strategies

Retrieve the merge strategies available for this instance.

The user must be authenticated to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scmId the id of the scm to get strategies for
@return PullRequestsAPIGetMergeConfigRequest

func (*PullRequestsAPIService) GetMergeConfigExecute ¶

Execute executes the request

@return RestPullRequestMergeConfig

func (*PullRequestsAPIService) GetPage ¶

func (a *PullRequestsAPIService) GetPage(ctx context.Context, projectKey string, repositorySlug string) PullRequestsAPIGetPageRequest

GetPage Get pull requests for repository

Retrieve a page of pull requests to or from the specified repository.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource. Optionally clients can specify PR participant filters. Each filter has a mandatory username.N parameter, and the optional role.N and approved.N parameters.

- username.N - the "root" of a single participant filter, where "N" is a natural number starting from 1. This allows clients to specify multiple participant filters, by providing consecutive filters as username.1, username.2 etc. Note that the filters numbering has to start with 1 and be continuous for all filters to be processed. The total allowed number of participant filters is 10 and all filters exceeding that limit will be dropped. - role.N(optional) the role associated with username.N. This must be one of AUTHOR, REVIEWER, or PARTICIPANT - approved.N (optional) the approved status associated with username.N. That is whether username.N has approved the PR. Either true, or false

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PullRequestsAPIGetPageRequest

func (*PullRequestsAPIService) GetPageExecute ¶

Execute executes the request

@return GetPullRequests1200Response

func (*PullRequestsAPIService) GetPullRequestConditions ¶

GetPullRequestConditions Get default reviewers

Return a page of default reviewer pull request conditions that have been configured for this project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return PullRequestsAPIGetPullRequestConditionsRequest

func (*PullRequestsAPIService) GetPullRequestConditions1 ¶

func (a *PullRequestsAPIService) GetPullRequestConditions1(ctx context.Context, projectKey string, repositorySlug string) PullRequestsAPIGetPullRequestConditions1Request

GetPullRequestConditions1 Get configured default reviewers

Return a page of default reviewer pull request conditions that have been configured for this repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PullRequestsAPIGetPullRequestConditions1Request

func (*PullRequestsAPIService) GetPullRequestConditions1Execute ¶

Execute executes the request

@return []RestPullRequestCondition

func (*PullRequestsAPIService) GetPullRequestConditionsExecute ¶

Execute executes the request

@return []RestPullRequestCondition

func (*PullRequestsAPIService) GetPullRequests ¶

func (a *PullRequestsAPIService) GetPullRequests(ctx context.Context, projectKey string, commitId string, repositorySlug string) PullRequestsAPIGetPullRequestsRequest

GetPullRequests Get repository pull requests containing commit

Retrieve a page of pull requests in the current repository that contain the given commit.

The user must be authenticated and have access to the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId the commit ID
@param repositorySlug The repository slug
@return PullRequestsAPIGetPullRequestsRequest

func (*PullRequestsAPIService) GetPullRequestsExecute ¶

Execute executes the request

@return GetPullRequests1200Response

func (*PullRequestsAPIService) GetReview ¶

func (a *PullRequestsAPIService) GetReview(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIGetReviewRequest

GetReview Get pull request comment thread

Get the <code>CommentThread</code> threads which have <code>Comment</code> comments that have a <code>CommentState#PENDING</code> pending state and are part of the pull request review for the authenticated user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIGetReviewRequest

func (*PullRequestsAPIService) GetReviewExecute ¶

Execute executes the request

@return GetComments200Response

func (*PullRequestsAPIService) GetReviewerGroup ¶

GetReviewerGroup Get reviewer group

Retrieve a reviewer group.

The authenticated user must have <b>PROJECT_READ</b> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the reviewer group to be retrieved
@return PullRequestsAPIGetReviewerGroupRequest

func (*PullRequestsAPIService) GetReviewerGroup1 ¶

func (a *PullRequestsAPIService) GetReviewerGroup1(ctx context.Context, projectKey string, id string, repositorySlug string) PullRequestsAPIGetReviewerGroup1Request

GetReviewerGroup1 Get reviewer group

Retrieve a reviewer group.

The authenticated user must have <b>REPO_READ</b> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the reviewer group to be retrieved
@param repositorySlug The repository slug.
@return PullRequestsAPIGetReviewerGroup1Request

func (*PullRequestsAPIService) GetReviewerGroup1Execute ¶

Execute executes the request

@return RestReviewerGroup

func (*PullRequestsAPIService) GetReviewerGroupExecute ¶

Execute executes the request

@return RestReviewerGroup

func (*PullRequestsAPIService) GetReviewerGroups ¶

GetReviewerGroups Get all reviewer groups

Retrieve a page of reviewer groups of a given scope.

The authenticated user must have <b>PROJECT_READ</b> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return PullRequestsAPIGetReviewerGroupsRequest

func (*PullRequestsAPIService) GetReviewerGroups1 ¶

func (a *PullRequestsAPIService) GetReviewerGroups1(ctx context.Context, projectKey string, repositorySlug string) PullRequestsAPIGetReviewerGroups1Request

GetReviewerGroups1 Get all reviewer groups

Retrieve a page of reviewer groups of a given scope.

The authenticated user must have <b>REPO_READ</b> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PullRequestsAPIGetReviewerGroups1Request

func (*PullRequestsAPIService) GetReviewerGroups1Execute ¶

Execute executes the request

@return GetReviewerGroups1200Response

func (*PullRequestsAPIService) GetReviewerGroupsExecute ¶

Execute executes the request

@return GetReviewerGroups1200Response

func (*PullRequestsAPIService) GetReviewers ¶

func (a *PullRequestsAPIService) GetReviewers(ctx context.Context, projectKey string, repositorySlug string) PullRequestsAPIGetReviewersRequest

GetReviewers Get required reviewers for PR creation

Return a set of users who are required reviewers for pull requests created from the given source repository and ref to the given target ref in this repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PullRequestsAPIGetReviewersRequest

func (*PullRequestsAPIService) GetReviewersExecute ¶

Execute executes the request

@return []RestPullRequestCondition

func (*PullRequestsAPIService) GetUsers ¶

func (a *PullRequestsAPIService) GetUsers(ctx context.Context, projectKey string, id string, repositorySlug string) PullRequestsAPIGetUsersRequest

GetUsers Get reviewer group users

Retrieve a list of the users of a reviewer group.

This does not return all the users of the group, only the users who have <b>REPO_READ</b> permission for the specified repository.

The authenticated user must have <b>REPO_READ</b> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the reviewer group to be retrieved
@param repositorySlug The repository slug.
@return PullRequestsAPIGetUsersRequest

func (*PullRequestsAPIService) GetUsersExecute ¶

Execute executes the request

@return []RestApplicationUser

func (*PullRequestsAPIService) ListParticipants ¶

func (a *PullRequestsAPIService) ListParticipants(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIListParticipantsRequest

ListParticipants Get pull request participants

Retrieves a page of the participants for a given pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIListParticipantsRequest

func (*PullRequestsAPIService) ListParticipantsExecute ¶

Execute executes the request

@return ListParticipants200Response

func (*PullRequestsAPIService) Merge ¶

func (a *PullRequestsAPIService) Merge(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIMergeRequest

Merge Merge pull request

Merge the specified pull request.

The authenticated user must have <strong>REPO_WRITE</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIMergeRequest

func (*PullRequestsAPIService) MergeExecute ¶

Execute executes the request

@return RestPullRequest

func (*PullRequestsAPIService) React1 ¶

func (a *PullRequestsAPIService) React1(ctx context.Context, projectKey string, commentId string, pullRequestId string, emoticon string, repositorySlug string) PullRequestsAPIReact1Request

React1 React to a PR comment

Add an emoticon reaction to a pull request comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The comment id.
@param pullRequestId The pull request id.
@param emoticon The emoticon to add
@param repositorySlug The repository slug.
@return PullRequestsAPIReact1Request

func (*PullRequestsAPIService) React1Execute ¶

Execute executes the request

@return RestUserReaction

func (*PullRequestsAPIService) Rebase ¶

func (a *PullRequestsAPIService) Rebase(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIRebaseRequest

Rebase Rebase pull request

Rebases the specified pull request, rewriting the incoming commits to start from the tip commit of the pull request's target branch. <i>This operation alters the pull request's source branch and cannot be undone.</i>

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets <i>and</i> <strong>REPO_WRITE</strong> permission for the pull request's source repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository.
@param repositorySlug The repository slug.
@return PullRequestsAPIRebaseRequest

func (*PullRequestsAPIService) RebaseExecute ¶

Execute executes the request

@return RestPullRequestRebaseResult

func (*PullRequestsAPIService) Reopen ¶

func (a *PullRequestsAPIService) Reopen(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIReopenRequest

Reopen Re-open pull request

Re-open a declined pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIReopenRequest

func (*PullRequestsAPIService) ReopenExecute ¶

Execute executes the request

@return RestPullRequest

func (*PullRequestsAPIService) Search ¶

func (a *PullRequestsAPIService) Search(ctx context.Context, projectKey string, repositorySlug string) PullRequestsAPISearchRequest

Search Search pull request participants

Retrieve a page of participant users for all the pull requests to or from the specified repository.

Optionally clients can specify following filters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return PullRequestsAPISearchRequest

func (*PullRequestsAPIService) SearchExecute ¶

Execute executes the request

@return GetLikers200Response

func (*PullRequestsAPIService) SetMergeConfig ¶

SetMergeConfig Update merge strategies

Update the pull request merge strategies for the context repository.

The authenticated user must have <strong>ADMIN</strong> permission to call this resource.

Only the strategies provided will be enabled, only one may be set to default ¶

The commit message template will not be updated if not provided, and will be deleted if the `commitMessageTemplate` attribute is empty, i.e: `commitMessageTemplate: {}`.

An explicitly set pull request merge strategy configuration can be deleted by POSTing a document with an empty `mergeConfig` attribute. i.e: ```

{
    "mergeConfig": {}
}

```

Upon completion of this request, the effective configuration will be the default configuration.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scmId the id of the scm to get strategies for
@return PullRequestsAPISetMergeConfigRequest

func (*PullRequestsAPIService) SetMergeConfigExecute ¶

Execute executes the request

@return RestPullRequestMergeConfig

func (*PullRequestsAPIService) StreamChanges1 ¶

func (a *PullRequestsAPIService) StreamChanges1(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIStreamChanges1Request

StreamChanges1 Gets pull request changes

Gets changes for the specified PullRequest.

If the changeScope query parameter is set to 'UNREVIEWED', the application will attempt to stream unreviewed changes based on the lastReviewedCommit of the current user, which are the changes between the lastReviewedCommit and the latest commit of the source branch. The current user is considered to <i>not</i> have any unreviewed changes for the pull request when the lastReviewedCommit is either null (everything is unreviewed, so all changes are streamed), equal to the latest commit of the source branch (everything is reviewed), or no longer on the source branch (the source branch has been rebased). In these cases, the application will fall back to streaming all changes (the default), which is the effective diff for the pull request. The type of changes streamed can be determined by the changeScope parameter included in the properties map of the response.

Note: This resource is currently <i>not paged</i>. The server will return at most one page. The server will truncate the number of changes to either the request's page limit or an internal maximum, whichever is smaller. The start parameter of the page request is also ignored.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIStreamChanges1Request

func (*PullRequestsAPIService) StreamChanges1Execute ¶

Execute executes the request

@return RestChange

func (*PullRequestsAPIService) StreamDiff2 ¶

func (a *PullRequestsAPIService) StreamDiff2(ctx context.Context, path string, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIStreamDiff2Request

StreamDiff2 Stream a diff within a pull request

Streams a diff within a pull request.

If the specified file has been copied, moved or renamed, the <code>srcPath</code> must also be specified to produce the correct diff.

To stream a raw text representation of the diff, this endpoint can be called with the request header 'Accept: text/plain'.

Note: This RESTful endpoint is currently <i>not paged</i>. The server will internally apply a hard cap to the streamed lines, and it is not possible to request subsequent pages if that cap is exceeded.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param path The path to the file which should be diffed (optional)
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIStreamDiff2Request

func (*PullRequestsAPIService) StreamDiff2Execute ¶

Execute executes the request

@return StreamDiff1200Response

func (*PullRequestsAPIService) StreamPatch1 ¶

func (a *PullRequestsAPIService) StreamPatch1(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIStreamPatch1Request

StreamPatch1 Stream pull request as patch

Streams a patch representing a pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIStreamPatch1Request

func (*PullRequestsAPIService) StreamPatch1Execute ¶

Execute executes the request

func (*PullRequestsAPIService) StreamRawDiff2 ¶

func (a *PullRequestsAPIService) StreamRawDiff2(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIStreamRawDiff2Request

StreamRawDiff2 Stream raw pull request diff

Streams the raw diff for a pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIStreamRawDiff2Request

func (*PullRequestsAPIService) StreamRawDiff2Execute ¶

Execute executes the request

func (*PullRequestsAPIService) UnReact1 ¶

func (a *PullRequestsAPIService) UnReact1(ctx context.Context, projectKey string, commentId string, pullRequestId string, emoticon string, repositorySlug string) PullRequestsAPIUnReact1Request

UnReact1 Remove a reaction from a PR comment

Remove an emoticon reaction from a pull request comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The comment id.
@param pullRequestId The pull request id.
@param emoticon The emoticon to remove
@param repositorySlug The repository slug.
@return PullRequestsAPIUnReact1Request

func (*PullRequestsAPIService) UnReact1Execute ¶

Execute executes the request

func (*PullRequestsAPIService) UnassignParticipantRole ¶

func (a *PullRequestsAPIService) UnassignParticipantRole(ctx context.Context, projectKey string, userSlug string, pullRequestId string, repositorySlug string) PullRequestsAPIUnassignParticipantRoleRequest

UnassignParticipantRole Unassign pull request participant

Unassigns a participant from the REVIEWER role they may have been given in a pull request.

If the participant has no explicit role this method has no effect.

Afterwards, the user will still remain a participant in the pull request but their role will be reduced to PARTICIPANT. This is because once made a participant of a pull request, a user will forever remain a participant. Only their role may be altered.

The authenticated user must have <strong>REPO_WRITE</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param userSlug The slug for the user being unassigned
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIUnassignParticipantRoleRequest

func (*PullRequestsAPIService) UnassignParticipantRole1 ¶

func (a *PullRequestsAPIService) UnassignParticipantRole1(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIUnassignParticipantRole1Request

UnassignParticipantRole1 Unassign pull request participant

Unassigns a participant from the REVIEWER role they may have been given in a pull request.

If the participant has no explicit role this method has no effect.

Afterwards, the user will still remain a participant in the pull request but their role will be reduced to PARTICIPANT. This is because once made a participant of a pull request, a user will forever remain a participant. Only their role may be altered.

The authenticated user must have <strong>REPO_WRITE</strong> permission for the repository that this pull request targets to call this resource.

<strong>Deprecated since 4.2</strong>. Use /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/participants/{userSlug} instead.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIUnassignParticipantRole1Request

Deprecated

func (*PullRequestsAPIService) UnassignParticipantRole1Execute ¶

Execute executes the request Deprecated

func (*PullRequestsAPIService) UnassignParticipantRoleExecute ¶

Execute executes the request

func (*PullRequestsAPIService) Unwatch1 ¶

func (a *PullRequestsAPIService) Unwatch1(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIUnwatch1Request

Unwatch1 Stop watching pull request

Remove the authenticated user as a watcher for the specified pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIUnwatch1Request

func (*PullRequestsAPIService) Unwatch1Execute ¶

Execute executes the request

func (*PullRequestsAPIService) Update ¶

func (a *PullRequestsAPIService) Update(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIUpdateRequest

Update Update pull request metadata

Update the title, description, reviewers or destination branch of an existing pull request.

**Note:** the <em>reviewers</em> list may be updated using this resource. However the <em>author</em> and <em>participants</em> list may not.

The authenticated user must either:

- be the author of the pull request and have the <strong>REPO_READ</strong> permission for the repository that this pull request targets; or - have the <strong>REPO_WRITE</strong> permission for the repository that this pull request targets

to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIUpdateRequest

func (*PullRequestsAPIService) Update1 ¶

Update1 Update reviewer group attributes

Update the attributes of a reviewer group.

The authenticated user must have <b>PROJECT_READ</b> permission for the specified project to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the reviewer group to be updated
@return PullRequestsAPIUpdate1Request

func (*PullRequestsAPIService) Update1Execute ¶

Execute executes the request

@return RestReviewerGroup

func (*PullRequestsAPIService) Update2 ¶

func (a *PullRequestsAPIService) Update2(ctx context.Context, projectKey string, id string, repositorySlug string) PullRequestsAPIUpdate2Request

Update2 Update reviewer group attributes

Update the attributes of a reviewer group.

The authenticated user must have <b>REPO_ADMIN</b> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the reviewer group to be updated
@param repositorySlug The repository slug.
@return PullRequestsAPIUpdate2Request

func (*PullRequestsAPIService) Update2Execute ¶

Execute executes the request

@return RestReviewerGroup

func (*PullRequestsAPIService) UpdateComment1 ¶

func (a *PullRequestsAPIService) UpdateComment1(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) PullRequestsAPIUpdateComment1Request

UpdateComment1 Update pull request comment

Update a comment, with the following restrictions:

- only the author of the comment may update the <i>text</i> of the comment - only the author of the comment, the author of the pull request or repository admins and above may update the other fields of a comment

Convert a comment to a task or vice versa.

Comments can be converted to tasks by setting the 'severity' attribute to 'BLOCKER': ```

{ "severity": "BLOCKER" }

```

Tasks can be converted to comments by setting the 'severity' attribute to 'NORMAL': ```

{ "severity": "NORMAL" }

```

Resolve a blocker comment.

Blocker comments can be resolved by setting the 'state' attribute to 'RESOLVED': ```

{ "state": "RESOLVED" } ```

<strong>Note:</strong> the supplied JSON object must contain a <code>version</code> that must match the server's version of the comment or the update will fail. To determine the current version of the comment, the comment should be fetched from the server prior to the update. Look for the 'version' attribute in the returned JSON structure.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The ID of the comment to retrieve.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIUpdateComment1Request

func (*PullRequestsAPIService) UpdateComment1Execute ¶

Execute executes the request

@return RestComment

func (*PullRequestsAPIService) UpdateComment2 ¶

func (a *PullRequestsAPIService) UpdateComment2(ctx context.Context, projectKey string, commentId string, pullRequestId string, repositorySlug string) PullRequestsAPIUpdateComment2Request

UpdateComment2 Update pull request comment

Update a comment, with the following restrictions:

- only the author of the comment may update the <i>text</i> of the comment - only the author of the comment, the author of the pull request or repository admins and above may update the other fields of a comment </ul>

Convert a comment to a task or vice versa.

Comments can be converted to tasks by setting the 'severity' attribute to 'BLOCKER':

<pre> {
"severity": "BLOCKER"
}
</pre>
Tasks can be converted to comments by setting the 'severity' attribute to 'NORMAL':  <pre> {
 "severity": "NORMAL"
 }
 </pre>

Resolve a task.

Tasks can be resolved by setting the 'state' attribute to 'RESOLVED':  <pre> {
 "state": "RESOLVED"
 }
 </pre>

<strong>Note:</strong> the supplied JSON object must contain a <code>version</code> that must match the server's version of the comment or the update will fail. To determine the current version of the comment, the comment should be fetched from the server prior to the update. Look for the 'version' attribute in the returned JSON structure.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The ID of the comment to retrieve.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIUpdateComment2Request

func (*PullRequestsAPIService) UpdateComment2Execute ¶

Execute executes the request

@return RestComment

func (*PullRequestsAPIService) UpdateExecute ¶

Execute executes the request

@return RestPullRequest

func (*PullRequestsAPIService) UpdatePullRequestCondition ¶

func (a *PullRequestsAPIService) UpdatePullRequestCondition(ctx context.Context, projectKey string, id string) PullRequestsAPIUpdatePullRequestConditionRequest

UpdatePullRequestCondition Update the default reviewer

Update the default reviewer pull request condition for the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the pull request condition.
@return PullRequestsAPIUpdatePullRequestConditionRequest

func (*PullRequestsAPIService) UpdatePullRequestCondition1 ¶

func (a *PullRequestsAPIService) UpdatePullRequestCondition1(ctx context.Context, projectKey string, id string, repositorySlug string) PullRequestsAPIUpdatePullRequestCondition1Request

UpdatePullRequestCondition1 Update a default reviewer condition

Update the default reviewer pull request condition for the given ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The ID of the pull request condition
@param repositorySlug The repository slug.
@return PullRequestsAPIUpdatePullRequestCondition1Request

func (*PullRequestsAPIService) UpdatePullRequestCondition1Execute ¶

Execute executes the request

@return RestPullRequestCondition

func (*PullRequestsAPIService) UpdatePullRequestConditionExecute ¶

Execute executes the request

@return RestPullRequestCondition

func (*PullRequestsAPIService) UpdateStatus ¶

func (a *PullRequestsAPIService) UpdateStatus(ctx context.Context, projectKey string, userSlug string, pullRequestId string, repositorySlug string) PullRequestsAPIUpdateStatusRequest

UpdateStatus Change pull request status

Change the current user's status for a pull request. Implicitly adds the user as a participant if they are not already. If the current user is the author, this method will fail.

The possible values for {@code status} are <strong>UNAPPROVED</strong>, <strong>NEEDS_WORK</strong> (which is referred to as "Requested changes" in the frontend from 8.10 onward), or <strong>APPROVED</strong>.

If the new {@code status} is <strong>NEEDS_WORK</strong> or <strong>APPROVED</strong> then the {@code lastReviewedCommit} for the participant will be updated to the latest commit of the source branch of the pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param userSlug The slug for the user changing their status
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIUpdateStatusRequest

func (*PullRequestsAPIService) UpdateStatusExecute ¶

Execute executes the request

@return RestPullRequestParticipant

func (*PullRequestsAPIService) Watch1 ¶

func (a *PullRequestsAPIService) Watch1(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIWatch1Request

Watch1 Watch pull request

Add the authenticated user as a watcher for the specified pull request.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The pull request ID.
@param repositorySlug The repository slug.
@return PullRequestsAPIWatch1Request

func (*PullRequestsAPIService) Watch1Execute ¶

Execute executes the request

func (*PullRequestsAPIService) WithdrawApproval ¶

func (a *PullRequestsAPIService) WithdrawApproval(ctx context.Context, projectKey string, pullRequestId string, repositorySlug string) PullRequestsAPIWithdrawApprovalRequest

WithdrawApproval Unapprove pull request

Remove approval from a pull request as the current user. This does not remove the user as a participant.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that this pull request targets to call this resource.

<strong>Deprecated since 4.2</strong>. Use /rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/participants/{userSlug} instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param pullRequestId The ID of the pull request within the repository
@param repositorySlug The repository slug.
@return PullRequestsAPIWithdrawApprovalRequest

Deprecated

func (*PullRequestsAPIService) WithdrawApprovalExecute ¶

Execute executes the request

@return RestPullRequestParticipant

Deprecated

type PullRequestsAPISetMergeConfigRequest ¶

type PullRequestsAPISetMergeConfigRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPISetMergeConfigRequest) Execute ¶

func (PullRequestsAPISetMergeConfigRequest) RestPullRequestSettings ¶

the settings

type PullRequestsAPIStreamChanges1Request ¶

type PullRequestsAPIStreamChanges1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIStreamChanges1Request) ChangeScope ¶

UNREVIEWED to stream the unreviewed changes for the current user (if they exist); RANGE to stream changes between two arbitrary commits (requires &#39;sinceId&#39; and &#39;untilId&#39;); otherwise ALL to stream all changes (the default)

func (PullRequestsAPIStreamChanges1Request) Execute ¶

func (PullRequestsAPIStreamChanges1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIStreamChanges1Request) SinceId ¶

The since commit hash to stream changes for a RANGE arbitrary change scope

func (PullRequestsAPIStreamChanges1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (PullRequestsAPIStreamChanges1Request) UntilId ¶

The until commit hash to stream changes for a RANGE arbitrary change scope

func (PullRequestsAPIStreamChanges1Request) WithComments ¶

true to apply comment counts in the changes (the default); otherwise, false to stream changes without comment counts

type PullRequestsAPIStreamDiff2Request ¶

type PullRequestsAPIStreamDiff2Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIStreamDiff2Request) AvatarScheme ¶

The security scheme for avatar URLs. If the scheme is not present then it is inherited from the request. It can be set to \&quot;https\&quot; to force the use of secure URLs. Not applicable if streaming raw diff

func (PullRequestsAPIStreamDiff2Request) AvatarSize ¶

If present the service adds avatar URLs for comment authors where the provided value specifies the desired avatar size in pixels. Not applicable if streaming raw diff

func (PullRequestsAPIStreamDiff2Request) ContextLines ¶

The number of context lines to include around added/removed lines in the diff

func (PullRequestsAPIStreamDiff2Request) DiffType ¶

The type of diff being requested. When withComments is true this works as a hint to the system to attach the correct set of comments to the diff. Not applicable if streaming raw diff

func (PullRequestsAPIStreamDiff2Request) Execute ¶

func (PullRequestsAPIStreamDiff2Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (PullRequestsAPIStreamDiff2Request) SinceId ¶

The since commit hash to stream a diff between two arbitrary hashes

func (PullRequestsAPIStreamDiff2Request) SrcPath ¶

The previous path to the file, if the file has been copied, moved or renamed

func (PullRequestsAPIStreamDiff2Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (PullRequestsAPIStreamDiff2Request) UntilId ¶

The until commit hash to stream a diff between two arbitrary hashes

func (PullRequestsAPIStreamDiff2Request) Whitespace ¶

Optional whitespace flag which can be set to &lt;code&gt;ignore-all&lt;/code&gt;

func (PullRequestsAPIStreamDiff2Request) WithComments ¶

&lt;code&gt;true&lt;/code&gt; to embed comments in the diff (the default); otherwise, &lt;code&gt;false&lt;/code&gt; to stream the diff without comments. Not applicable if streaming raw diff

type PullRequestsAPIStreamPatch1Request ¶

type PullRequestsAPIStreamPatch1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIStreamPatch1Request) Execute ¶

type PullRequestsAPIStreamRawDiff2Request ¶

type PullRequestsAPIStreamRawDiff2Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIStreamRawDiff2Request) ContextLines ¶

The number of context lines to include around added/removed lines in the diff

func (PullRequestsAPIStreamRawDiff2Request) Execute ¶

func (PullRequestsAPIStreamRawDiff2Request) Whitespace ¶

optional whitespace flag which can be set to &lt;code&gt;ignore-all&lt;/code&gt;

type PullRequestsAPIUnReact1Request ¶

type PullRequestsAPIUnReact1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUnReact1Request) Execute ¶

type PullRequestsAPIUnassignParticipantRole1Request ¶

type PullRequestsAPIUnassignParticipantRole1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUnassignParticipantRole1Request) Execute ¶

func (PullRequestsAPIUnassignParticipantRole1Request) Username ¶

type PullRequestsAPIUnassignParticipantRoleRequest ¶

type PullRequestsAPIUnassignParticipantRoleRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUnassignParticipantRoleRequest) Execute ¶

type PullRequestsAPIUnwatch1Request ¶

type PullRequestsAPIUnwatch1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUnwatch1Request) Execute ¶

type PullRequestsAPIUpdate1Request ¶

type PullRequestsAPIUpdate1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUpdate1Request) Execute ¶

func (PullRequestsAPIUpdate1Request) RestReviewerGroup ¶

func (r PullRequestsAPIUpdate1Request) RestReviewerGroup(restReviewerGroup RestReviewerGroup) PullRequestsAPIUpdate1Request

The request containing the attributes of the reviewer group to be updated. Only the attributes to be updated need to be present in this object.

type PullRequestsAPIUpdate2Request ¶

type PullRequestsAPIUpdate2Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUpdate2Request) Execute ¶

func (PullRequestsAPIUpdate2Request) RestReviewerGroup ¶

func (r PullRequestsAPIUpdate2Request) RestReviewerGroup(restReviewerGroup RestReviewerGroup) PullRequestsAPIUpdate2Request

The request containing the attributes of the reviewer group to be updated. Only the attributes to be updated need to be present in this object.

type PullRequestsAPIUpdateComment1Request ¶

type PullRequestsAPIUpdateComment1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUpdateComment1Request) Execute ¶

func (PullRequestsAPIUpdateComment1Request) RestComment ¶

The comment to add.

type PullRequestsAPIUpdateComment2Request ¶

type PullRequestsAPIUpdateComment2Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUpdateComment2Request) Execute ¶

func (PullRequestsAPIUpdateComment2Request) RestComment ¶

The updated comment

type PullRequestsAPIUpdatePullRequestCondition1Request ¶

type PullRequestsAPIUpdatePullRequestCondition1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUpdatePullRequestCondition1Request) Execute ¶

func (PullRequestsAPIUpdatePullRequestCondition1Request) UpdatePullRequestCondition1Request ¶

type PullRequestsAPIUpdatePullRequestConditionRequest ¶

type PullRequestsAPIUpdatePullRequestConditionRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUpdatePullRequestConditionRequest) Execute ¶

func (PullRequestsAPIUpdatePullRequestConditionRequest) RestDefaultReviewersRequest ¶

The new details for the default reviewer pull request condition.

type PullRequestsAPIUpdateRequest ¶

type PullRequestsAPIUpdateRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUpdateRequest) Execute ¶

func (PullRequestsAPIUpdateRequest) RestPullRequest ¶

The updated pull request

type PullRequestsAPIUpdateStatusRequest ¶

type PullRequestsAPIUpdateStatusRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIUpdateStatusRequest) Execute ¶

func (PullRequestsAPIUpdateStatusRequest) RestPullRequestAssignStatusRequest ¶

func (r PullRequestsAPIUpdateStatusRequest) RestPullRequestAssignStatusRequest(restPullRequestAssignStatusRequest RestPullRequestAssignStatusRequest) PullRequestsAPIUpdateStatusRequest

The participant representing the status to set, includes the status of the participant

type PullRequestsAPIWatch1Request ¶

type PullRequestsAPIWatch1Request struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIWatch1Request) Execute ¶

type PullRequestsAPIWithdrawApprovalRequest ¶

type PullRequestsAPIWithdrawApprovalRequest struct {
	ApiService *PullRequestsAPIService
	// contains filtered or unexported fields
}

func (PullRequestsAPIWithdrawApprovalRequest) Execute ¶

type RepositoryAPIAddLabelRequest ¶

type RepositoryAPIAddLabelRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIAddLabelRequest) Execute ¶

func (RepositoryAPIAddLabelRequest) RestLabel ¶

The label to apply

type RepositoryAPICreateBranchForRepositoryRequest ¶

type RepositoryAPICreateBranchForRepositoryRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPICreateBranchForRepositoryRequest) Execute ¶

func (RepositoryAPICreateBranchForRepositoryRequest) RestCreateBranchRequest ¶

The request to create a branch containing a &lt;strong&gt;name&lt;/strong&gt;, &lt;strong&gt;startPoint&lt;/strong&gt;, and optionally a &lt;strong&gt;message&lt;/strong&gt;

type RepositoryAPICreateBranchRequest ¶

type RepositoryAPICreateBranchRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPICreateBranchRequest) Execute ¶

func (RepositoryAPICreateBranchRequest) RestBranchCreateRequest ¶

func (r RepositoryAPICreateBranchRequest) RestBranchCreateRequest(restBranchCreateRequest RestBranchCreateRequest) RepositoryAPICreateBranchRequest

type RepositoryAPICreateCommentRequest ¶

type RepositoryAPICreateCommentRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPICreateCommentRequest) Execute ¶

func (RepositoryAPICreateCommentRequest) RestComment ¶

the comment

func (RepositoryAPICreateCommentRequest) Since ¶

For a merge commit, a parent can be provided to specify which diff the comments should be on. For a commit range, a sinceId can be provided to specify where the comments should be anchored from.

type RepositoryAPICreateRestrictions1Request ¶

type RepositoryAPICreateRestrictions1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPICreateRestrictions1Request) Execute ¶

func (RepositoryAPICreateRestrictions1Request) RestRestrictionRequest ¶

The request containing a list of the details of the restrictions to create.

type RepositoryAPICreateTagForRepositoryRequest ¶

type RepositoryAPICreateTagForRepositoryRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPICreateTagForRepositoryRequest) Execute ¶

func (RepositoryAPICreateTagForRepositoryRequest) RestCreateTagRequest ¶

The request to create a tag containing a &lt;strong&gt;name&lt;/strong&gt;, &lt;strong&gt;startPoint&lt;/strong&gt;, and optionally a &lt;strong&gt;message&lt;/strong&gt;

type RepositoryAPICreateTagRequest ¶

type RepositoryAPICreateTagRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPICreateTagRequest) Execute ¶

func (RepositoryAPICreateTagRequest) RestGitTagCreateRequest ¶

func (r RepositoryAPICreateTagRequest) RestGitTagCreateRequest(restGitTagCreateRequest RestGitTagCreateRequest) RepositoryAPICreateTagRequest

The create git tag request.

type RepositoryAPICreateWebhook1Request ¶

type RepositoryAPICreateWebhook1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPICreateWebhook1Request) Execute ¶

func (RepositoryAPICreateWebhook1Request) RestWebhook ¶

The webhook to be created for this repository.

type RepositoryAPIDeleteAttachmentMetadataRequest ¶

type RepositoryAPIDeleteAttachmentMetadataRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDeleteAttachmentMetadataRequest) Execute ¶

type RepositoryAPIDeleteAttachmentRequest ¶

type RepositoryAPIDeleteAttachmentRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDeleteAttachmentRequest) Execute ¶

type RepositoryAPIDeleteAutoDeclineSettings1Request ¶

type RepositoryAPIDeleteAutoDeclineSettings1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDeleteAutoDeclineSettings1Request) Execute ¶

type RepositoryAPIDeleteBranchRequest ¶

type RepositoryAPIDeleteBranchRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDeleteBranchRequest) Execute ¶

func (RepositoryAPIDeleteBranchRequest) RestBranchDeleteRequest ¶

func (r RepositoryAPIDeleteBranchRequest) RestBranchDeleteRequest(restBranchDeleteRequest RestBranchDeleteRequest) RepositoryAPIDeleteBranchRequest

Branch delete request

type RepositoryAPIDeleteCommentRequest ¶

type RepositoryAPIDeleteCommentRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDeleteCommentRequest) Execute ¶

func (RepositoryAPIDeleteCommentRequest) Version ¶

The expected version of the comment. This must match the server&#39;s version of the comment or the delete will fail. To determine the current version of the comment, the comment should be fetched from the server prior to the delete. Look for the &#39;version&#39; attribute in the returned JSON structure.

type RepositoryAPIDeleteRepositoryHookRequest ¶

type RepositoryAPIDeleteRepositoryHookRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDeleteRepositoryHookRequest) Execute ¶

type RepositoryAPIDeleteRestriction1Request ¶

type RepositoryAPIDeleteRestriction1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDeleteRestriction1Request) Execute ¶

type RepositoryAPIDeleteTagRequest ¶

type RepositoryAPIDeleteTagRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDeleteTagRequest) Execute ¶

type RepositoryAPIDeleteWebhook1Request ¶

type RepositoryAPIDeleteWebhook1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDeleteWebhook1Request) Execute ¶

type RepositoryAPIDisableHook1Request ¶

type RepositoryAPIDisableHook1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIDisableHook1Request) Execute ¶

type RepositoryAPIEditFileRequest ¶

type RepositoryAPIEditFileRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIEditFileRequest) Branch ¶

The branch on which the &lt;code&gt;path&lt;/code&gt; should be modified or created.

func (RepositoryAPIEditFileRequest) Content ¶

The full content of the file at &lt;code&gt;path&lt;/code&gt;.

func (RepositoryAPIEditFileRequest) Execute ¶

func (RepositoryAPIEditFileRequest) Message ¶

The message associated with this change, to be used as the commit message. Or null if the default message should be used.

func (RepositoryAPIEditFileRequest) SourceBranch ¶

The starting point for &lt;code&gt;branch&lt;/code&gt;. If provided and different from &lt;code&gt;branch&lt;/code&gt;, &lt;code&gt;branch&lt;/code&gt; will be created as a new branch, branching off from &lt;code&gt;sourceBranch&lt;/code&gt;.

func (RepositoryAPIEditFileRequest) SourceCommitId ¶

func (r RepositoryAPIEditFileRequest) SourceCommitId(sourceCommitId string) RepositoryAPIEditFileRequest

The commit ID of the file before it was edited, used to identify if content has changed. Or null if this is a new file

type RepositoryAPIEnableHook1Request ¶

type RepositoryAPIEnableHook1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIEnableHook1Request) ContentLength ¶

The content length.

func (RepositoryAPIEnableHook1Request) Execute ¶

type RepositoryAPIFindBranchesRequest ¶

type RepositoryAPIFindBranchesRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIFindBranchesRequest) Execute ¶

func (RepositoryAPIFindBranchesRequest) FilterText ¶

(optional) Partial match for a ref ID to filter minimal refs for

func (RepositoryAPIFindBranchesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIFindBranchesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIFindByCommitRequest ¶

type RepositoryAPIFindByCommitRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIFindByCommitRequest) Execute ¶

func (RepositoryAPIFindByCommitRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIFindByCommitRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIFindWebhooks1Request ¶

type RepositoryAPIFindWebhooks1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIFindWebhooks1Request) Event ¶

List of &lt;code&gt;com.atlassian.webhooks.WebhookEvent&lt;/code&gt; IDs to filter for

func (RepositoryAPIFindWebhooks1Request) Execute ¶

func (RepositoryAPIFindWebhooks1Request) Statistics ¶

&lt;code&gt;true&lt;/code&gt; if statistics should be provided for all found webhooks

type RepositoryAPIGetAllLabelsForRepositoryRequest ¶

type RepositoryAPIGetAllLabelsForRepositoryRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetAllLabelsForRepositoryRequest) Execute ¶

type RepositoryAPIGetArchiveRequest ¶

type RepositoryAPIGetArchiveRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetArchiveRequest) At ¶

The commit to stream an archive of; if not supplied, an archive of the default branch is streamed

func (RepositoryAPIGetArchiveRequest) Execute ¶

func (RepositoryAPIGetArchiveRequest) Filename ¶

A filename to include the \&quot;Content-Disposition\&quot; header

func (RepositoryAPIGetArchiveRequest) Format ¶

The format to stream the archive in; must be one of: zip, tar, tar.gz or tgz

func (RepositoryAPIGetArchiveRequest) Path ¶

Paths to include in the streamed archive; may be repeated to include multiple paths

func (RepositoryAPIGetArchiveRequest) Prefix ¶

A prefix to apply to all entries in the streamed archive; if the supplied prefix does not end with a trailing /, one will be added automatically

type RepositoryAPIGetAttachmentMetadataRequest ¶

type RepositoryAPIGetAttachmentMetadataRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetAttachmentMetadataRequest) Execute ¶

type RepositoryAPIGetAttachmentRequest ¶

type RepositoryAPIGetAttachmentRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetAttachmentRequest) Execute ¶

func (RepositoryAPIGetAttachmentRequest) Range_ ¶

func (RepositoryAPIGetAttachmentRequest) UserAgent ¶

type RepositoryAPIGetAutoDeclineSettings1Request ¶

type RepositoryAPIGetAutoDeclineSettings1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetAutoDeclineSettings1Request) Execute ¶

type RepositoryAPIGetBranchesRequest ¶

type RepositoryAPIGetBranchesRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetBranchesRequest) Base ¶

Base branch or tag to compare each branch to (for the metadata providers that uses that information

func (RepositoryAPIGetBranchesRequest) BoostMatches ¶

Controls whether exact and prefix matches will be boosted to the top

func (RepositoryAPIGetBranchesRequest) Details ¶

Whether to retrieve plugin-provided metadata about each branch

func (RepositoryAPIGetBranchesRequest) Execute ¶

func (RepositoryAPIGetBranchesRequest) FilterText ¶

The text to match on

func (RepositoryAPIGetBranchesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetBranchesRequest) OrderBy ¶

Ordering of refs either ALPHABETICAL (by name) or MODIFICATION (last updated)

func (RepositoryAPIGetBranchesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIGetChanges1Request ¶

type RepositoryAPIGetChanges1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetChanges1Request) Execute ¶

func (RepositoryAPIGetChanges1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetChanges1Request) Since ¶

The commit to which &lt;code&gt;until&lt;/code&gt; should be compared to produce a page of changes. If not specified the commit&#39;s first parent is assumed (if one exists)

func (RepositoryAPIGetChanges1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (RepositoryAPIGetChanges1Request) Until ¶

The commit to retrieve changes for

type RepositoryAPIGetChangesRequest ¶

type RepositoryAPIGetChangesRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetChangesRequest) Execute ¶

func (RepositoryAPIGetChangesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetChangesRequest) Since ¶

The commit to which &lt;code&gt;until&lt;/code&gt; should be compared to produce a page of changes. If not specified the commit&#39;s first parent is assumed (if one exists)

func (RepositoryAPIGetChangesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (RepositoryAPIGetChangesRequest) WithComments ¶

&lt;code&gt;true&lt;/code&gt; to apply comment counts in the changes (the default); otherwise, &lt;code&gt;false&lt;/code&gt; to stream changes without comment counts

type RepositoryAPIGetCommentRequest ¶

type RepositoryAPIGetCommentRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetCommentRequest) Execute ¶

type RepositoryAPIGetCommentsRequest ¶

type RepositoryAPIGetCommentsRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetCommentsRequest) Execute ¶

func (RepositoryAPIGetCommentsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetCommentsRequest) Path ¶

The path to the file on which comments were made

func (RepositoryAPIGetCommentsRequest) Since ¶

For a merge commit, a parent can be provided to specify which diff the comments are on. For a commit range, a sinceId can be provided to specify where the comments are anchored from.

func (RepositoryAPIGetCommentsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIGetCommitRequest ¶

type RepositoryAPIGetCommitRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetCommitRequest) Execute ¶

func (RepositoryAPIGetCommitRequest) Path ¶

An optional path to filter the commit by. If supplied the details returned &lt;i&gt;may not&lt;/i&gt; be for the specified commit. Instead, starting from the specified commit, they will be the details for the first commit affecting the specified path.

type RepositoryAPIGetCommitsRequest ¶

type RepositoryAPIGetCommitsRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetCommitsRequest) AvatarScheme ¶

The desired scheme for the avatar URL. If the parameter is not present URLs will use the same scheme as this request

func (RepositoryAPIGetCommitsRequest) AvatarSize ¶

If present the service adds avatar URLs for commit authors. Should be an integer specifying the desired size in pixels. If the parameter is not present, avatar URLs will not be set

func (RepositoryAPIGetCommitsRequest) Execute ¶

func (RepositoryAPIGetCommitsRequest) FollowRenames ¶

If &lt;code&gt;true&lt;/code&gt;, the commit history of the specified file will be followed past renames. Only valid for a path to a single file.

func (RepositoryAPIGetCommitsRequest) IgnoreMissing ¶

&lt;code&gt;true&lt;/code&gt; to ignore missing commits, &lt;code&gt;false&lt;/code&gt; otherwise

func (RepositoryAPIGetCommitsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetCommitsRequest) Merges ¶

If present, controls how merge commits should be filtered. Can be either &lt;code&gt;exclude&lt;/code&gt;, to exclude merge commits, &lt;code&gt;include&lt;/code&gt;, to include both merge commits and non-merge commits or &lt;code&gt;only&lt;/code&gt;, to only return merge commits.

func (RepositoryAPIGetCommitsRequest) Path ¶

An optional path to filter commits by

func (RepositoryAPIGetCommitsRequest) Since ¶

The commit ID or ref (exclusively) to retrieve commits after

func (RepositoryAPIGetCommitsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (RepositoryAPIGetCommitsRequest) Until ¶

The commit ID (SHA1) or ref (inclusively) to retrieve commits before

func (RepositoryAPIGetCommitsRequest) WithCounts ¶

Optionally include the total number of commits and total number of unique authors

type RepositoryAPIGetConfigurations1Request ¶

type RepositoryAPIGetConfigurations1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetConfigurations1Request) Execute ¶

func (RepositoryAPIGetConfigurations1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetConfigurations1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIGetContent1Request ¶

type RepositoryAPIGetContent1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetContent1Request) At ¶

The commit ID or ref to retrieve the content for

func (RepositoryAPIGetContent1Request) Blame ¶

If present and not equal to &#39;false&#39;, the blame will be returned for the file as well

func (RepositoryAPIGetContent1Request) Execute ¶

func (RepositoryAPIGetContent1Request) NoContent ¶

If blame&amp;amp;noContent only the blame is retrieved instead of the contents

func (RepositoryAPIGetContent1Request) Size ¶

If true only the size will be returned for the file path instead of the contents

func (RepositoryAPIGetContent1Request) Type_ ¶

If true only the type will be returned for the file path instead of the contents

type RepositoryAPIGetContentRequest ¶

type RepositoryAPIGetContentRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetContentRequest) At ¶

The commit ID or ref to retrieve the content for

func (RepositoryAPIGetContentRequest) Blame ¶

If present and not equal to &#39;false&#39;, the blame will be returned for the file as well

func (RepositoryAPIGetContentRequest) Execute ¶

func (RepositoryAPIGetContentRequest) NoContent ¶

If blame&amp;amp;noContent only the blame is retrieved instead of the contents

func (RepositoryAPIGetContentRequest) Size ¶

If true only the size will be returned for the file path instead of the contents

func (RepositoryAPIGetContentRequest) Type_ ¶

If true only the type will be returned for the file path instead of the contents

type RepositoryAPIGetDefaultBranch1Request ¶

type RepositoryAPIGetDefaultBranch1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetDefaultBranch1Request) Execute ¶

type RepositoryAPIGetLatestInvocation1Request ¶

type RepositoryAPIGetLatestInvocation1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetLatestInvocation1Request) Event ¶

The string ID of a specific event to retrieve the last invocation for.

func (RepositoryAPIGetLatestInvocation1Request) Execute ¶

func (RepositoryAPIGetLatestInvocation1Request) Outcome ¶

The outcome to filter for. Can be SUCCESS, FAILURE, ERROR. None specified means that the all will be considered

type RepositoryAPIGetPullRequestSettings1Request ¶

type RepositoryAPIGetPullRequestSettings1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetPullRequestSettings1Request) Execute ¶

type RepositoryAPIGetRefChangeActivityRequest ¶

type RepositoryAPIGetRefChangeActivityRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetRefChangeActivityRequest) Execute ¶

func (RepositoryAPIGetRefChangeActivityRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetRefChangeActivityRequest) Ref ¶

(optional) exact match for a ref ID to filter ref change activity for

func (RepositoryAPIGetRefChangeActivityRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIGetRepositories1Request ¶

type RepositoryAPIGetRepositories1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetRepositories1Request) Archived ¶

(optional) if specified, this will limit the resulting repository list to ones whose are &lt;tt&gt;ACTIVE&lt;/tt&gt;, &lt;tt&gt;ARCHIVED&lt;/tt&gt; or &lt;tt&gt;ALL&lt;/tt&gt; for both. The match performed is case-insensitive. This filter defaults to &lt;tt&gt;ACTIVE&lt;/tt&gt; when not set. &lt;em&gt;Available since 8.0&lt;/em&gt;

func (RepositoryAPIGetRepositories1Request) Execute ¶

func (RepositoryAPIGetRepositories1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetRepositories1Request) Name ¶

(optional) if specified, this will limit the resulting repository list to ones whose name matches this parameter&#39;s value. The match performed is case-insensitive and any leading and/or trailing whitespace characters on the &lt;code&gt;name&lt;/code&gt; parameter will be stripped.

func (RepositoryAPIGetRepositories1Request) Permission ¶

(optional) if specified, it must be a valid repository permission level name and will limit the resulting repository list to ones that the requesting user has the specified permission level to. If not specified, the default implicit &#39;read&#39; permission level will be assumed. The currently supported explicit permission values are &lt;tt&gt;REPO_READ&lt;/tt&gt;, &lt;tt&gt;REPO_WRITE&lt;/tt&gt; and &lt;tt&gt;REPO_ADMIN&lt;/tt&gt;.

func (RepositoryAPIGetRepositories1Request) Projectkey ¶

(optional) if specified, this will limit the resulting repository list to ones whose project&#39;s key matches this parameter&#39;s value. The match performed is case-insensitive and any leading and/or trailing whitespace characters on the &lt;code&gt;projectKey&lt;/code&gt; parameter will be stripped. &lt;em&gt;Available since 8.0&lt;/em&gt;

func (RepositoryAPIGetRepositories1Request) Projectname ¶

(optional) if specified, this will limit the resulting repository list to ones whose project&#39;s name matches this parameter&#39;s value. The match performed is case-insensitive and any leading and/or trailing whitespace characters on the &lt;code&gt;projectname&lt;/code&gt; parameter will be stripped.

func (RepositoryAPIGetRepositories1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (RepositoryAPIGetRepositories1Request) State ¶

(optional) if specified, it must be a valid repository state name and will limit the resulting repository list to ones that are in the specified state. The currently supported explicit state values are &lt;tt&gt;AVAILABLE&lt;/tt&gt;, &lt;tt&gt;INITIALISING&lt;/tt&gt; and &lt;tt&gt;INITIALISATION_FAILED&lt;/tt&gt;.&lt;br&gt; &lt;em&gt;Available since 5.13&lt;/em&gt;

func (RepositoryAPIGetRepositories1Request) Visibility ¶

(optional) if specified, this will limit the resulting repository list based on the repositories visibility. Valid values are &lt;em&gt;public&lt;/em&gt; or &lt;em&gt;private&lt;/em&gt;.

type RepositoryAPIGetRepositoriesRecentlyAccessedRequest ¶

type RepositoryAPIGetRepositoriesRecentlyAccessedRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetRepositoriesRecentlyAccessedRequest) Execute ¶

func (RepositoryAPIGetRepositoriesRecentlyAccessedRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetRepositoriesRecentlyAccessedRequest) Permission ¶

(optional) If specified, it must be a valid repository permission level name and will limit the resulting repository list to ones that the requesting user has the specified permission level to. If not specified, the default &lt;code&gt;REPO_READ&lt;/code&gt; permission level will be assumed.

func (RepositoryAPIGetRepositoriesRecentlyAccessedRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIGetRepositoryHook1Request ¶

type RepositoryAPIGetRepositoryHook1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetRepositoryHook1Request) Execute ¶

type RepositoryAPIGetRepositoryHooks1Request ¶

type RepositoryAPIGetRepositoryHooks1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetRepositoryHooks1Request) Execute ¶

func (RepositoryAPIGetRepositoryHooks1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetRepositoryHooks1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (RepositoryAPIGetRepositoryHooks1Request) Type_ ¶

The optional type to filter by.

type RepositoryAPIGetRestriction1Request ¶

type RepositoryAPIGetRestriction1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetRestriction1Request) Execute ¶

type RepositoryAPIGetRestrictions1Request ¶

type RepositoryAPIGetRestrictions1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetRestrictions1Request) Execute ¶

func (RepositoryAPIGetRestrictions1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetRestrictions1Request) MatcherId ¶

Matcher id to filter on. Requires the matcherType parameter to be specified also.

func (RepositoryAPIGetRestrictions1Request) MatcherType ¶

Matcher type to filter on

func (RepositoryAPIGetRestrictions1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (RepositoryAPIGetRestrictions1Request) Type_ ¶

Types of restrictions to filter on.

type RepositoryAPIGetSettings1Request ¶

type RepositoryAPIGetSettings1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetSettings1Request) Execute ¶

type RepositoryAPIGetStatistics1Request ¶

type RepositoryAPIGetStatistics1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetStatistics1Request) Event ¶

The string ID of a specific event to retrieve the last invocation for. May be empty, in which case all events are considered

func (RepositoryAPIGetStatistics1Request) Execute ¶

func (r RepositoryAPIGetStatistics1Request) Execute() (interface{}, *http.Response, error)

type RepositoryAPIGetStatisticsSummary1Request ¶

type RepositoryAPIGetStatisticsSummary1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetStatisticsSummary1Request) Execute ¶

func (r RepositoryAPIGetStatisticsSummary1Request) Execute() (interface{}, *http.Response, error)

type RepositoryAPIGetStatusRequest ¶

type RepositoryAPIGetStatusRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetStatusRequest) At ¶

Retrieves the synchronization status for the specified ref within the repository, rather than for the entire repository

func (RepositoryAPIGetStatusRequest) Execute ¶

type RepositoryAPIGetTagRequest ¶

type RepositoryAPIGetTagRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetTagRequest) Execute ¶

type RepositoryAPIGetTagsRequest ¶

type RepositoryAPIGetTagsRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetTagsRequest) Execute ¶

func (RepositoryAPIGetTagsRequest) FilterText ¶

The text to match on.

func (RepositoryAPIGetTagsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIGetTagsRequest) OrderBy ¶

Ordering of refs either ALPHABETICAL (by name) or MODIFICATION (last updated)

func (RepositoryAPIGetTagsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIGetWebhook1Request ¶

type RepositoryAPIGetWebhook1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIGetWebhook1Request) Execute ¶

func (RepositoryAPIGetWebhook1Request) Statistics ¶

&lt;code&gt;true&lt;/code&gt; if statistics should be provided for the webhook

type RepositoryAPIReactRequest ¶

type RepositoryAPIReactRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIReactRequest) Execute ¶

type RepositoryAPIRemoveConfiguration1Request ¶

type RepositoryAPIRemoveConfiguration1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIRemoveConfiguration1Request) Execute ¶

type RepositoryAPIRemoveLabelRequest ¶

type RepositoryAPIRemoveLabelRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIRemoveLabelRequest) Execute ¶

type RepositoryAPISaveAttachmentMetadataRequest ¶

type RepositoryAPISaveAttachmentMetadataRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPISaveAttachmentMetadataRequest) Body ¶

The attachment metadata can be any valid JSON content

func (RepositoryAPISaveAttachmentMetadataRequest) Execute ¶

type RepositoryAPISearchWebhooksRequest ¶

type RepositoryAPISearchWebhooksRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPISearchWebhooksRequest) Event ¶

List of &lt;code&gt;com.atlassian.webhooks.WebhookEvent&lt;/code&gt; ids to filter for

func (RepositoryAPISearchWebhooksRequest) Execute ¶

func (RepositoryAPISearchWebhooksRequest) ScopeType ¶

Scopes to filter by. This parameter can be specified once e.g. \&quot;scopeType&#x3D;repository\&quot;, or twice e.g. \&quot;scopeType&#x3D;repository&amp;scopeType&#x3D;project\&quot;, to filter by more than one scope level.

func (RepositoryAPISearchWebhooksRequest) Statistics ¶

&lt;code&gt;true&lt;/code&gt; if statistics should be provided for all found webhooks

type RepositoryAPIService ¶

type RepositoryAPIService service

RepositoryAPIService RepositoryAPI service

func (*RepositoryAPIService) AddLabel ¶

func (a *RepositoryAPIService) AddLabel(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIAddLabelRequest

AddLabel Add repository label

Applies a label to the repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIAddLabelRequest

func (*RepositoryAPIService) AddLabelExecute ¶

Execute executes the request

@return RestLabel

func (*RepositoryAPIService) CreateBranch ¶

func (a *RepositoryAPIService) CreateBranch(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPICreateBranchRequest

CreateBranch Create branch

Creates a branch in the specified repository.

The authenticated user must have an effective <strong>REPO_WRITE</strong> permission to call this resource. If branch permissions are set up in the repository, the authenticated user must also have access to the branch name that is to be created.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPICreateBranchRequest

func (*RepositoryAPIService) CreateBranchExecute ¶

Execute executes the request

@return RestBranch

func (*RepositoryAPIService) CreateBranchForRepository ¶

func (a *RepositoryAPIService) CreateBranchForRepository(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPICreateBranchForRepositoryRequest

CreateBranchForRepository Create branch

Creates a branch using the information provided in the RestCreateBranchRequest request ¶

The authenticated user must have <strong>REPO_WRITE</strong> permission for the context repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPICreateBranchForRepositoryRequest

func (*RepositoryAPIService) CreateBranchForRepositoryExecute ¶

Execute executes the request

@return RestBranch

func (*RepositoryAPIService) CreateComment ¶

func (a *RepositoryAPIService) CreateComment(ctx context.Context, projectKey string, commitId string, repositorySlug string) RepositoryAPICreateCommentRequest

CreateComment Add a new commit comment

Add a new comment.

Comments can be added in a few places by setting different attributes:

General commit comment:

```{
      "text": "An insightful general comment on a commit."
}

</pre> Reply to a comment:

<pre>{
      "text": "A measured reply.",
      "parent": {
          "id": 1
      }
}

</pre> General file comment:

<pre>{
      "text": "An insightful general comment on a file.",
      "anchor": {
          "diffType": "COMMIT",
          "fromHash": "6df3858eeb9a53a911cd17e66a9174d44ffb02cd",
          "path": "path/to/file",
          "srcPath": "path/to/file",
          "toHash": "04c7c5c931b9418ca7b66f51fe934d0bd9b2ba4b"
      }
}

</pre> File line comment:

<pre>{
      "text": "A pithy comment on a particular line within a file.",
      "anchor": {
          "diffType": "COMMIT",
          "line": 1,
          "lineType": "CONTEXT",
          "fileType": "FROM",
          "fromHash": "6df3858eeb9a53a911cd17e66a9174d44ffb02cd",
          "path": "path/to/file",
          "srcPath": "path/to/file",
          "toHash": "04c7c5c931b9418ca7b66f51fe934d0bd9b2ba4b"
      }
}

```

Note: general file comments are an experimental feature and may change in the near future!

For file and line comments, 'path' refers to the path of the file to which the comment should be applied and 'srcPath' refers to the path the that file used to have (only required for copies and moves). Also, fromHash and toHash refer to the sinceId / untilId (respectively) used to produce the diff on which the comment was added. Finally diffType refers to the type of diff the comment was added on.

For line comments, 'line' refers to the line in the diff that the comment should apply to. 'lineType' refers to the type of diff hunk, which can be:- 'ADDED' - for an added line;</li>- 'REMOVED' - for a removed line; or</li>- 'CONTEXT' - for a line that was unmodified but is in the vicinity of the diff.</li>'fileType' refers to the file of the diff to which the anchor should be attached - which is of relevance when displaying the diff in a side-by-side way. Currently the supported values are:- 'FROM' - the source file of the diff</li>- 'TO' - the destination file of the diff</li>If the current user is not a participant the user is added as one and updated to watch the commit.

The authenticated user must have REPO_READ permission for the repository that the commit is in to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId The <i>full ID</i> of the commit within the repository
@param repositorySlug The repository slug
@return RepositoryAPICreateCommentRequest

func (*RepositoryAPIService) CreateCommentExecute ¶

Execute executes the request

@return RestComment

func (*RepositoryAPIService) CreateRestrictions1 ¶

func (a *RepositoryAPIService) CreateRestrictions1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPICreateRestrictions1Request

CreateRestrictions1 Create multiple ref restrictions

Allows creating multiple restrictions at once.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPICreateRestrictions1Request

func (*RepositoryAPIService) CreateRestrictions1Execute ¶

Execute executes the request

@return RestRefRestriction

func (*RepositoryAPIService) CreateTag ¶

func (a *RepositoryAPIService) CreateTag(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPICreateTagRequest

CreateTag Create tag

Creates a tag in the specified repository.

The authenticated user must have an effective <strong>REPO_WRITE</strong> permission to call this resource.

'LIGHTWEIGHT' and 'ANNOTATED' are the two type of tags that can be created. The 'startPoint' can either be a ref or a 'commit'.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPICreateTagRequest

func (*RepositoryAPIService) CreateTagExecute ¶

Execute executes the request

@return RestTag

func (*RepositoryAPIService) CreateTagForRepository ¶

func (a *RepositoryAPIService) CreateTagForRepository(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPICreateTagForRepositoryRequest

CreateTagForRepository Create tag

Creates a tag using the information provided in the RestCreateTagRequest request ¶

The authenticated user must have <strong>REPO_WRITE</strong> permission for the context repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPICreateTagForRepositoryRequest

func (*RepositoryAPIService) CreateTagForRepositoryExecute ¶

Execute executes the request

@return RestTag

func (*RepositoryAPIService) CreateWebhook1 ¶

func (a *RepositoryAPIService) CreateWebhook1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPICreateWebhook1Request

CreateWebhook1 Create webhook

Create a webhook for the repository specified via the URL.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPICreateWebhook1Request

func (*RepositoryAPIService) CreateWebhook1Execute ¶

Execute executes the request

@return RestWebhook

func (*RepositoryAPIService) DeleteAttachment ¶

func (a *RepositoryAPIService) DeleteAttachment(ctx context.Context, projectKey string, attachmentId string, repositorySlug string) RepositoryAPIDeleteAttachmentRequest

DeleteAttachment Delete an attachment

Delete an attachment.

The user must be authenticated and have <strong>REPO_ADMIN</strong> permission for the specified repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param attachmentId the attachment ID
@param repositorySlug The repository slug
@return RepositoryAPIDeleteAttachmentRequest

func (*RepositoryAPIService) DeleteAttachmentExecute ¶

Execute executes the request

func (*RepositoryAPIService) DeleteAttachmentMetadata ¶

func (a *RepositoryAPIService) DeleteAttachmentMetadata(ctx context.Context, projectKey string, attachmentId string, repositorySlug string) RepositoryAPIDeleteAttachmentMetadataRequest

DeleteAttachmentMetadata Delete attachment metadata

Delete attachment metadata.

The user must be authenticated and have <strong>REPO_ADMIN</strong> permission for the specified repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param attachmentId the attachment ID
@param repositorySlug The repository slug
@return RepositoryAPIDeleteAttachmentMetadataRequest

func (*RepositoryAPIService) DeleteAttachmentMetadataExecute ¶

func (a *RepositoryAPIService) DeleteAttachmentMetadataExecute(r RepositoryAPIDeleteAttachmentMetadataRequest) (*http.Response, error)

Execute executes the request

func (*RepositoryAPIService) DeleteAutoDeclineSettings1 ¶

func (a *RepositoryAPIService) DeleteAutoDeclineSettings1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIDeleteAutoDeclineSettings1Request

DeleteAutoDeclineSettings1 Delete auto decline settings

Delete auto decline settings for the supplied repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for this repository to call the resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param repositorySlug The repository slug
@return RepositoryAPIDeleteAutoDeclineSettings1Request

func (*RepositoryAPIService) DeleteAutoDeclineSettings1Execute ¶

func (a *RepositoryAPIService) DeleteAutoDeclineSettings1Execute(r RepositoryAPIDeleteAutoDeclineSettings1Request) (*http.Response, error)

Execute executes the request

func (*RepositoryAPIService) DeleteBranch ¶

func (a *RepositoryAPIService) DeleteBranch(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIDeleteBranchRequest

DeleteBranch Delete branch

Deletes a branch in the specified repository.

If the branch does not exist, this operation will not raise an error. In other words after calling this resource
and receiving a 204 response the branch provided in the request is guaranteed to not exist in the specified
repository any more, regardless of its existence beforehand.

The optional 'endPoint' parameter of the request may contain a commit ID that the provided ref name is
expected to point to. Should the ref point to a different commit ID, a 400 response will be returned with
appropriate error details.

The authenticated user must have an effective <strong>REPO_WRITE</strong> permission to call this resource. If
branch permissions are set up in the repository, the authenticated user must also have access to the branch name
that is to be deleted.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIDeleteBranchRequest

func (*RepositoryAPIService) DeleteBranchExecute ¶

Execute executes the request

func (*RepositoryAPIService) DeleteComment ¶

func (a *RepositoryAPIService) DeleteComment(ctx context.Context, projectKey string, commentId string, commitId string, repositorySlug string) RepositoryAPIDeleteCommentRequest

DeleteComment Delete a commit comment

Delete a commit comment. Anyone can delete their own comment. Only users with <strong>REPO_ADMIN</strong> and above may delete comments created by other users. Comments which have replies <i>may not be deleted</i>, regardless of the user's granted permissions.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that the commit is in to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commentId the comment
@param commitId The <i>full ID</i> of the commit within the repository
@param repositorySlug The repository slug
@return RepositoryAPIDeleteCommentRequest

func (*RepositoryAPIService) DeleteCommentExecute ¶

Execute executes the request

func (*RepositoryAPIService) DeleteRepositoryHook ¶

func (a *RepositoryAPIService) DeleteRepositoryHook(ctx context.Context, projectKey string, hookKey string, repositorySlug string) RepositoryAPIDeleteRepositoryHookRequest

DeleteRepositoryHook Delete repository hook

Delete repository hook configuration for the supplied <strong>hookKey</strong> and <strong>repositorySlug</strong>

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@param repositorySlug The repository slug.
@return RepositoryAPIDeleteRepositoryHookRequest

func (*RepositoryAPIService) DeleteRepositoryHookExecute ¶

Execute executes the request

func (*RepositoryAPIService) DeleteRestriction1 ¶

func (a *RepositoryAPIService) DeleteRestriction1(ctx context.Context, projectKey string, id string, repositorySlug string) RepositoryAPIDeleteRestriction1Request

DeleteRestriction1 Delete a ref restriction

Deletes a restriction as specified by a restriction id.

The authenticated user must have <strong>REPO_ADMIN</strong> permission or higher to call this resource. Only authenticated users may call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The restriction id.
@param repositorySlug The repository slug.
@return RepositoryAPIDeleteRestriction1Request

func (*RepositoryAPIService) DeleteRestriction1Execute ¶

Execute executes the request

func (*RepositoryAPIService) DeleteTag ¶

func (a *RepositoryAPIService) DeleteTag(ctx context.Context, projectKey string, name string, repositorySlug string) RepositoryAPIDeleteTagRequest

DeleteTag Delete tag

Deletes a tag in the specified repository.

The authenticated user must have an effective <strong>REPO_WRITE</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param name The name of the tag to be deleted.
@param repositorySlug The repository slug.
@return RepositoryAPIDeleteTagRequest

func (*RepositoryAPIService) DeleteTagExecute ¶

Execute executes the request

func (*RepositoryAPIService) DeleteWebhook1 ¶

func (a *RepositoryAPIService) DeleteWebhook1(ctx context.Context, projectKey string, webhookId string, repositorySlug string) RepositoryAPIDeleteWebhook1Request

DeleteWebhook1 Delete webhook

Delete a webhook for the repository specified via the URL.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId The ID of the webhook to be deleted.
@param repositorySlug The repository slug.
@return RepositoryAPIDeleteWebhook1Request

func (*RepositoryAPIService) DeleteWebhook1Execute ¶

Execute executes the request

func (*RepositoryAPIService) DisableHook1 ¶

func (a *RepositoryAPIService) DisableHook1(ctx context.Context, projectKey string, hookKey string, repositorySlug string) RepositoryAPIDisableHook1Request

DisableHook1 Disable repository hook

Disable a repository hook for this repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@param repositorySlug The repository slug.
@return RepositoryAPIDisableHook1Request

func (*RepositoryAPIService) DisableHook1Execute ¶

Execute executes the request

@return RestRepositoryHook

func (*RepositoryAPIService) EditFile ¶

func (a *RepositoryAPIService) EditFile(ctx context.Context, path string, projectKey string, repositorySlug string) RepositoryAPIEditFileRequest

EditFile Edit file

Update the content of path, on the given repository and branch.

This resource accepts PUT multipart form data, containing the file in a form-field named content.

An example <a href="http://curl.haxx.se/">curl</a> request to update 'README.md' would be:

```curl -X PUT -u username:password -F content=@README.md -F 'message=Updated using file-edit REST API' -F branch=master -F sourceCommitId=5636641a50b http://example.com/rest/api/latest/projects/PROJECT_1/repos/repo_1/browse/README.md ```

- branch: the branch on which the path should be modified or created - content: the full content of the file at path - message: the message associated with this change, to be used as the commit message. Or null if the default message should be used. - sourceCommitId: the commit ID of the file before it was edited, used to identify if content has changed. Or null if this is a new file

The file can be updated or created on a new branch. In this case, the sourceBranch parameter should be provided to identify the starting point for the new branch and the branch parameter identifies the branch to create the new commit on.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param path The path of the file that is to be modified or created
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIEditFileRequest

func (*RepositoryAPIService) EditFileExecute ¶

Execute executes the request

@return RestCommit

func (*RepositoryAPIService) EnableHook1 ¶

func (a *RepositoryAPIService) EnableHook1(ctx context.Context, projectKey string, hookKey string, repositorySlug string) RepositoryAPIEnableHook1Request

EnableHook1 Enable repository hook

Enable a repository hook for this repository and optionally apply new configuration.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

A JSON document may be provided to use as the settings for the hook. These structure and validity of the document is decided by the plugin providing the hook.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@param repositorySlug The repository slug.
@return RepositoryAPIEnableHook1Request

func (*RepositoryAPIService) EnableHook1Execute ¶

Execute executes the request

@return RestRepositoryHook

func (*RepositoryAPIService) FindBranches ¶

func (a *RepositoryAPIService) FindBranches(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIFindBranchesRequest

FindBranches Get branches with ref change activities for repository

Retrieve a page of branches with ref change activities for a specific repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIFindBranchesRequest

func (*RepositoryAPIService) FindBranchesExecute ¶

Execute executes the request

@return FindByCommit200Response

func (*RepositoryAPIService) FindByCommit ¶

func (a *RepositoryAPIService) FindByCommit(ctx context.Context, projectKey string, commitId string, repositorySlug string) RepositoryAPIFindByCommitRequest

FindByCommit Get branch

Gets the branch information associated with a single commit from a given repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commitId
@param repositorySlug The repository slug.
@return RepositoryAPIFindByCommitRequest

func (*RepositoryAPIService) FindByCommitExecute ¶

Execute executes the request

@return FindByCommit200Response

func (*RepositoryAPIService) FindWebhooks1 ¶

func (a *RepositoryAPIService) FindWebhooks1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIFindWebhooks1Request

FindWebhooks1 Find webhooks

Find webhooks in this repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIFindWebhooks1Request

func (*RepositoryAPIService) FindWebhooks1Execute ¶

Execute executes the request

func (*RepositoryAPIService) GetAllLabelsForRepository ¶

func (a *RepositoryAPIService) GetAllLabelsForRepository(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetAllLabelsForRepositoryRequest

GetAllLabelsForRepository Get repository labels

Get all labels applied to the given repository.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetAllLabelsForRepositoryRequest

func (*RepositoryAPIService) GetAllLabelsForRepositoryExecute ¶

Execute executes the request

@return RestLabel

func (*RepositoryAPIService) GetArchive ¶

func (a *RepositoryAPIService) GetArchive(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetArchiveRequest

GetArchive Stream archive of repository

Streams an archive of the repository's contents at the requested commit. If no `at=` commit is requested, an archive of the default branch is streamed.

The <code>filename=</code> query parameter may be used to specify the exact filename to include in the "Content-Disposition" header. If an explicit filename is not provided, one will be automatically generated based on what is being archived. Its format depends on the at= value:

- No <code>at=</code> commit: &lt;slug&gt;-&lt;default-branch-name&gt;@&lt;commit&gt;.&lt;format&gt;; e.g. example-master@43c2f8a0fe8.zip - <code>at=</code>sha: &lt;slug&gt;-&lt;at&gt;.&lt;format&gt;; e.g. example-09bcbb00100cfbb5310fb6834a1d5ce6cac253e9.tar.gz - <code>at=</code>branchOrTag: &lt;slug&gt;-&lt;branchOrTag&gt;@&lt;commit&gt;.&lt;format&gt;; e.g. example-feature@bbb225f16e1.tar

  • If the branch or tag is qualified (e.g. refs/heads/master, the short name (master) will be included in the filename
  • If the branch or tag's <i>short name</i> includes slashes (e.g. release/4.6), they will be converted to hyphens in the filename (release-4.5)

Archives may be requested in the following formats by adding the <code>format=</code> query parameter:

- zip: A zip file using standard compression (Default) - tar: An uncompressed tarball - tar.gz or tgz: A GZip-compressed tarball

The contents of the archive may be filtered by using the <code>path=</code> query parameter to specify paths to include. <code>path=</code> may be specified multiple times to include multiple paths.

The <code>prefix=</code> query parameter may be used to define a directory (or multiple directories) where the archive's contents should be placed. If the prefix does not end with /, one will be added automatically. The prefix is <i>always</i> treated as a directory; it is not possible to use it to prepend characters to the entries in the archive.

Archives of public repositories may be streamed by any authenticated or anonymous user. Streaming archives for non-public repositories requires an <i>authenticated user</i> with at least <b>REPO_READ</b> permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetArchiveRequest

func (*RepositoryAPIService) GetArchiveExecute ¶

Execute executes the request

func (*RepositoryAPIService) GetAttachment ¶

func (a *RepositoryAPIService) GetAttachment(ctx context.Context, projectKey string, attachmentId string, repositorySlug string) RepositoryAPIGetAttachmentRequest

GetAttachment Get an attachment

Retrieve the attachment.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository that is associated to the attachment.

Range requests (see IETF RFC7233) are supported. However only a single range issupported. If multiple ranges are passed the ranges will be ignored and the entire content will be returned in the response.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param attachmentId the attachment ID
@param repositorySlug The repository slug
@return RepositoryAPIGetAttachmentRequest

func (*RepositoryAPIService) GetAttachmentExecute ¶

Execute executes the request

func (*RepositoryAPIService) GetAttachmentMetadata ¶

func (a *RepositoryAPIService) GetAttachmentMetadata(ctx context.Context, projectKey string, attachmentId string, repositorySlug string) RepositoryAPIGetAttachmentMetadataRequest

GetAttachmentMetadata Get attachment metadata

Retrieve the attachment metadata.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository that is associated to the attachment that has the attachment metadata.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param attachmentId the attachment ID
@param repositorySlug The repository slug
@return RepositoryAPIGetAttachmentMetadataRequest

func (*RepositoryAPIService) GetAttachmentMetadataExecute ¶

Execute executes the request

@return RestAttachmentMetadata

func (*RepositoryAPIService) GetAutoDeclineSettings1 ¶

func (a *RepositoryAPIService) GetAutoDeclineSettings1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetAutoDeclineSettings1Request

GetAutoDeclineSettings1 Get auto decline settings

Retrieves the auto decline settings for the supplied repository. Project settings will be returned if no explicit settings have been set for the repository. In the case that there are no project settings, the default settings will be returned.

The authenticated user must have <strong>REPO_READ</strong> permission for this repository to call the resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param repositorySlug The repository slug
@return RepositoryAPIGetAutoDeclineSettings1Request

func (*RepositoryAPIService) GetAutoDeclineSettings1Execute ¶

Execute executes the request

@return RestAutoDeclineSettings

func (*RepositoryAPIService) GetBranches ¶

func (a *RepositoryAPIService) GetBranches(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetBranchesRequest

GetBranches Find branches

Retrieve the branches matching the supplied <strong>filterText</strong> param.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetBranchesRequest

func (*RepositoryAPIService) GetBranchesExecute ¶

Execute executes the request

@return GetBranches200Response

func (*RepositoryAPIService) GetChanges ¶

func (a *RepositoryAPIService) GetChanges(ctx context.Context, projectKey string, commitId string, repositorySlug string) RepositoryAPIGetChangesRequest

GetChanges Get changes in commit

Retrieve a page of changes made in a specified commit.

<strong>Note:</strong> The implementation will apply a hard cap (<code>page.max.changes</code>) and it is not possible to request subsequent content when that cap is exceeded.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId The commit to retrieve changes for
@param repositorySlug The repository slug
@return RepositoryAPIGetChangesRequest

func (*RepositoryAPIService) GetChanges1 ¶

func (a *RepositoryAPIService) GetChanges1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetChanges1Request

GetChanges1 Get changes made in commit

Retrieve a page of changes made in a specified commit.

<strong>Note:</strong> The implementation will apply a hard cap ({@code page.max.changes}) and it is not possible to request subsequent content when that cap is exceeded.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetChanges1Request

func (*RepositoryAPIService) GetChanges1Execute ¶

Execute executes the request

@return GetChanges1200Response

func (*RepositoryAPIService) GetChangesExecute ¶

Execute executes the request

@return GetChanges1200Response

func (*RepositoryAPIService) GetComment ¶

func (a *RepositoryAPIService) GetComment(ctx context.Context, projectKey string, commentId string, commitId string, repositorySlug string) RepositoryAPIGetCommentRequest

GetComment Get a commit comment

Retrieves a commit discussion comment.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that the commit is in to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commentId The ID of the comment to retrieve
@param commitId The <i>full ID</i> of the commit within the repository
@param repositorySlug The repository slug
@return RepositoryAPIGetCommentRequest

func (*RepositoryAPIService) GetCommentExecute ¶

Execute executes the request

@return RestComment

func (*RepositoryAPIService) GetComments ¶

func (a *RepositoryAPIService) GetComments(ctx context.Context, projectKey string, commitId string, repositorySlug string) RepositoryAPIGetCommentsRequest

GetComments Search for commit comments

Retrieves the commit discussion comments that match the specified search criteria.

It is possible to retrieve commit discussion comments that are anchored to a range of commits by providing the sinceId that the comments anchored from.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that the commit is in to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId The <i>full ID</i> of the commit within the repository
@param repositorySlug The repository slug
@return RepositoryAPIGetCommentsRequest

func (*RepositoryAPIService) GetCommentsExecute ¶

Execute executes the request

@return GetComments200Response

func (*RepositoryAPIService) GetCommit ¶

func (a *RepositoryAPIService) GetCommit(ctx context.Context, projectKey string, commitId string, repositorySlug string) RepositoryAPIGetCommitRequest

GetCommit Get commit by ID

Retrieve a single commit <i>identified by its ID</i>. In general, that ID is a SHA1. <u>From 2.11, ref names like "refs/heads/master" are no longer accepted by this resource.</u>

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId The commit ID to retrieve
@param repositorySlug The repository slug
@return RepositoryAPIGetCommitRequest

func (*RepositoryAPIService) GetCommitExecute ¶

Execute executes the request

@return RestCommit

func (*RepositoryAPIService) GetCommits ¶

func (a *RepositoryAPIService) GetCommits(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetCommitsRequest

GetCommits Get commits

Retrieve a page of commits from a given starting commit or "between" two commits. If no explicit commit is specified, the tip of the repository's default branch is assumed. commits may be identified by branch or tag name or by ID. A path may be supplied to restrict the returned commits to only those which affect that path.

The authenticated user must have <b>REPO_READ</b> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param repositorySlug The repository slug
@return RepositoryAPIGetCommitsRequest

func (*RepositoryAPIService) GetCommitsExecute ¶

Execute executes the request

@return GetCommits200Response

func (*RepositoryAPIService) GetConfigurations1 ¶

func (a *RepositoryAPIService) GetConfigurations1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetConfigurations1Request

GetConfigurations1 Get hook scripts

Return a page of hook scripts configured for the specified repository.

This endpoint requires **REPO_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetConfigurations1Request

func (*RepositoryAPIService) GetConfigurations1Execute ¶

Execute executes the request

@return GetConfigurations200Response

func (*RepositoryAPIService) GetContent ¶

func (a *RepositoryAPIService) GetContent(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetContentRequest

GetContent Get file content at revision

Retrieve a page of content for a file path at a specified revision.

Responses from this endpoint vary widely depending on the query parameters. The example JSON is for a request that does not use size, type, blame or noContent.

1. size will return a response like {"size":10000} 2. type will return a response like {"type":"FILE"}, where possible values are "DIRECTORY", "FILE" and "SUBMODULE" 3. blame <i>without</i> noContent will include blame for the lines of content returned on the page 4. blame <i>with</i> noContent will omit file contents and only return blame for the requested lines 5. noContent without blame is ignored and does nothing

The various parameters are "processed" in the above order. That means ?size=true&amp;type=truewill return a size response, not a type one; the type parameter will be ignored.

The blame and noContent query parameters are handled differently from size and type. For blame and noContent, the <i>presence</i> of the parameter implies "true" if no value is specified; size and and type both require an explicit=true or they're treated as "false".

- ?blame is the same as ?blame=true - ?blame&amp;noContent is the same as ?blame=true&amp;noContent=true - ?size is the same as ?size=false - ?type is the same as ?type=false

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetContentRequest

func (*RepositoryAPIService) GetContent1 ¶

func (a *RepositoryAPIService) GetContent1(ctx context.Context, path string, projectKey string, repositorySlug string) RepositoryAPIGetContent1Request

GetContent1 Get file content

Retrieve a page of content for a file path at a specified revision.

Responses from this endpoint vary widely depending on the query parameters. The example JSON is for a request that does not use size, type, blame or noContent.

1. size will return a response like {"size":10000} 2. type will return a response like {"type":"FILE"}, where possible values are "DIRECTORY", "FILE" and "SUBMODULE" 3. blame <i>without</i> noContent will include blame for the lines of content returned on the page 4. blame <i>with</i> noContent will omit file contents and only return blame for the requested lines 5. noContent without blame is ignored and does nothing

The various parameters are "processed" in the above order. That means ?size=true&amp;type=truewill return a size response, not a type one; the type parameter will be ignored.

The blame and noContent query parameters are handled differently from size and type. For blame and noContent, the <i>presence</i> of the parameter implies "true" if no value is specified; size and and type both require an explicit=true or they're treated as "false".

- ?blame is the same as ?blame=true - ?blame&amp;noContent is the same as ?blame=true&amp;noContent=true - ?size is the same as ?size=false - ?type is the same as ?type=false

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param path The file path to retrieve content from
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetContent1Request

func (*RepositoryAPIService) GetContent1Execute ¶

Execute executes the request

func (*RepositoryAPIService) GetContentExecute ¶

Execute executes the request

func (*RepositoryAPIService) GetDefaultBranch1 ¶

func (a *RepositoryAPIService) GetDefaultBranch1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetDefaultBranch1Request

GetDefaultBranch1 Get default branch

Retrieves the repository's default branch, if it has been created. If the repository is empty, 204 No Content will be returned. For non-empty repositories, if the configured default branch has not yet been created a 404 Not Found will be returned.

This URL is deprecated. Callers should use <code>GET /projects/{key}/repos/{slug}/default-branch</code> instead, which allows retrieving the <i>configured</i> default branch even if the ref has not been created yet.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetDefaultBranch1Request

Deprecated

func (*RepositoryAPIService) GetDefaultBranch1Execute ¶

Execute executes the request

@return RestBranch

Deprecated

func (*RepositoryAPIService) GetLatestInvocation1 ¶

func (a *RepositoryAPIService) GetLatestInvocation1(ctx context.Context, projectKey string, webhookId string, repositorySlug string) RepositoryAPIGetLatestInvocation1Request

GetLatestInvocation1 Get last webhook invocation details

Get the latest invocations for a specific webhook.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId ID of the webhook
@param repositorySlug The repository slug.
@return RepositoryAPIGetLatestInvocation1Request

func (*RepositoryAPIService) GetLatestInvocation1Execute ¶

Execute executes the request

@return RestDetailedInvocation

func (*RepositoryAPIService) GetPullRequestSettings1 ¶

func (a *RepositoryAPIService) GetPullRequestSettings1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetPullRequestSettings1Request

GetPullRequestSettings1 Get pull request settings

Retrieve the pull request settings for the context repository.

The authenticated user must have <strong>REPO_READ</strong> permission for the context repository to call this resource.

This resource will call all RestFragments that are registered with the key <strong>bitbucket.repository.settings.pullRequests</strong>. If any fragment fails validations by returning a non-empty Map of errors, then no fragments will execute.

The property keys for the settings that are bundled with the application are ¶

- mergeConfig - the merge strategy configuration for pull requests - requiredApprovers - (Deprecated, please use com.atlassian.bitbucket.server.bundled-hooks.requiredApproversMergeHook instead) the number of approvals required on a pull request for it to be mergeable, or 0 if the merge check is disabled - com.atlassian.bitbucket.server.bundled-hooks.requiredApproversMergeHook - the merge check configuration for required approvers - requiredAllApprovers - whether or not all approvers must approve a pull request for it to be mergeable - requiredAllTasksComplete - whether or not all tasks on a pull request need to be completed for it to be mergeable - requiredSuccessfulBuilds - (Deprecated, please use com.atlassian.bitbucket.server.bitbucket-build.requiredBuildsMergeCheck instead) the number of successful builds on a pull request for it to be mergeable, or 0 if the merge check is disabled - com.atlassian.bitbucket.server.bitbucket-build.requiredBuildsMergeCheck - the merge check configuration for required builds

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetPullRequestSettings1Request

func (*RepositoryAPIService) GetPullRequestSettings1Execute ¶

Execute executes the request

@return RestRepositoryPullRequestSettings

func (*RepositoryAPIService) GetRefChangeActivity ¶

func (a *RepositoryAPIService) GetRefChangeActivity(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetRefChangeActivityRequest

GetRefChangeActivity Get ref change activity

Retrieve a page of repository ref change activity.

The authenticated user must have <strong>REPO_ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetRefChangeActivityRequest

func (*RepositoryAPIService) GetRefChangeActivityExecute ¶

Execute executes the request

@return GetRefChangeActivity200Response

func (*RepositoryAPIService) GetRepositories1 ¶

GetRepositories1 Search for repositories

Retrieve a page of repositories based on query parameters that control the search. See the documentation of the parameters for more details.

This resource is anonymously accessible.

<b>Note on permissions.</b> In absence of the <code>permission</code> query parameter the implicit 'read' permission is assumed. Please note that this permission is lower than the <tt>REPO_READ</tt> permission rather than being equal to it. The implicit 'read' permission for a given repository is assigned to any user that has any of the higher permissions, such as <tt>REPO_READ</tt>, as well as to anonymous users if the repository is marked as public. The important implication of the above is that an anonymous request to this resource with a permission level <tt>REPO_READ</tt> is guaranteed to receive an empty list of repositories as a result. For anonymous requests it is therefore recommended to not specify the <tt>permission</tt> parameter at all.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return RepositoryAPIGetRepositories1Request

func (*RepositoryAPIService) GetRepositories1Execute ¶

Execute executes the request

@return GetRepositoriesRecentlyAccessed200Response

func (*RepositoryAPIService) GetRepositoriesRecentlyAccessed ¶

GetRepositoriesRecentlyAccessed Get recently accessed repositories

Retrieve a page of recently accessed repositories for the currently authenticated user.

Repositories are ordered from most recently to least recently accessed. <p>Only authenticated users may call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return RepositoryAPIGetRepositoriesRecentlyAccessedRequest

func (*RepositoryAPIService) GetRepositoriesRecentlyAccessedExecute ¶

Execute executes the request

@return GetRepositoriesRecentlyAccessed200Response

func (*RepositoryAPIService) GetRepositoryHook1 ¶

func (a *RepositoryAPIService) GetRepositoryHook1(ctx context.Context, projectKey string, hookKey string, repositorySlug string) RepositoryAPIGetRepositoryHook1Request

GetRepositoryHook1 Get repository hook

Retrieve a repository hook for this repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetRepositoryHook1Request

func (*RepositoryAPIService) GetRepositoryHook1Execute ¶

Execute executes the request

@return RestRepositoryHook

func (*RepositoryAPIService) GetRepositoryHooks1 ¶

func (a *RepositoryAPIService) GetRepositoryHooks1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetRepositoryHooks1Request

GetRepositoryHooks1 Get repository hooks

Retrieve a page of repository hooks for this repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetRepositoryHooks1Request

func (*RepositoryAPIService) GetRepositoryHooks1Execute ¶

Execute executes the request

@return GetRepositoryHooks1200Response

func (*RepositoryAPIService) GetRestriction1 ¶

func (a *RepositoryAPIService) GetRestriction1(ctx context.Context, projectKey string, id string, repositorySlug string) RepositoryAPIGetRestriction1Request

GetRestriction1 Get a ref restriction

Returns a restriction as specified by a restriction id.

The authenticated user must have <strong>REPO_ADMIN</strong> permission or higher to call this resource. Only authenticated users may call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The restriction id.
@param repositorySlug The repository slug.
@return RepositoryAPIGetRestriction1Request

func (*RepositoryAPIService) GetRestriction1Execute ¶

Execute executes the request

@return RestRefRestriction

func (*RepositoryAPIService) GetRestrictions1 ¶

func (a *RepositoryAPIService) GetRestrictions1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetRestrictions1Request

GetRestrictions1 Search for ref restrictions

Search for restrictions using the supplied parameters.

The authenticated user must have <strong>REPO_ADMIN</strong> permission or higher to call this resource. Only authenticated users may call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetRestrictions1Request

func (*RepositoryAPIService) GetRestrictions1Execute ¶

Execute executes the request

@return GetRestrictions1200Response

func (*RepositoryAPIService) GetSettings1 ¶

func (a *RepositoryAPIService) GetSettings1(ctx context.Context, projectKey string, hookKey string, repositorySlug string) RepositoryAPIGetSettings1Request

GetSettings1 Get repository hook settings

Retrieve the settings for a repository hook for this repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetSettings1Request

func (*RepositoryAPIService) GetSettings1Execute ¶

Execute executes the request

@return ExampleSettings

func (*RepositoryAPIService) GetStatistics1 ¶

func (a *RepositoryAPIService) GetStatistics1(ctx context.Context, projectKey string, webhookId string, repositorySlug string) RepositoryAPIGetStatistics1Request

GetStatistics1 Get webhook statistics

Get the statistics for a specific webhook.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId ID of the webhook
@param repositorySlug The repository slug.
@return RepositoryAPIGetStatistics1Request

func (*RepositoryAPIService) GetStatistics1Execute ¶

func (a *RepositoryAPIService) GetStatistics1Execute(r RepositoryAPIGetStatistics1Request) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*RepositoryAPIService) GetStatisticsSummary1 ¶

func (a *RepositoryAPIService) GetStatisticsSummary1(ctx context.Context, projectKey string, webhookId string, repositorySlug string) RepositoryAPIGetStatisticsSummary1Request

GetStatisticsSummary1 Get webhook statistics summary

Get the statistics summary for a specific webhook.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId ID of the webhook
@param repositorySlug The repository slug.
@return RepositoryAPIGetStatisticsSummary1Request

func (*RepositoryAPIService) GetStatisticsSummary1Execute ¶

func (a *RepositoryAPIService) GetStatisticsSummary1Execute(r RepositoryAPIGetStatisticsSummary1Request) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*RepositoryAPIService) GetStatus ¶

func (a *RepositoryAPIService) GetStatus(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetStatusRequest

GetStatus Get synchronization status

Retrieves the synchronization status for the specified repository. In addition to listing refs which cannot be synchronized, if any, the status also provides the timestamp for the most recent synchronization and indicates whether synchronization is available and enabled. If "?at" is specified in the URL, the synchronization status for the specified ref is returned, rather than the complete repository status.

The authenticated user must have <b>REPO_READ</b> permission for the repository, or it must be public if the request is anonymous. Additionally, after synchronization is enabled for a repository, meaning synchronization was available at that time, permission changes and other actions can cause it to become unavailable. Even when synchronization is enabled, if it is no longer available for the repository it will not be performed.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetStatusRequest

func (*RepositoryAPIService) GetStatusExecute ¶

Execute executes the request

@return RestRefSyncStatus

func (*RepositoryAPIService) GetTag ¶

func (a *RepositoryAPIService) GetTag(ctx context.Context, projectKey string, name string, repositorySlug string) RepositoryAPIGetTagRequest

GetTag Get tag

Retrieve a tag in the specified repository.

The authenticated user must have <strong>REPO_READ</strong> permission for the context repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param name The name of the tag to be retrieved.
@param repositorySlug The repository slug.
@return RepositoryAPIGetTagRequest

func (*RepositoryAPIService) GetTagExecute ¶

Execute executes the request

@return RestTag

func (*RepositoryAPIService) GetTags ¶

func (a *RepositoryAPIService) GetTags(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIGetTagsRequest

GetTags Find tag

Retrieve the tags matching the supplied <strong>filterText</strong> param.

The authenticated user must have <strong>REPO_READ</strong> permission for the context repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIGetTagsRequest

func (*RepositoryAPIService) GetTagsExecute ¶

Execute executes the request

@return GetTags200Response

func (*RepositoryAPIService) GetWebhook1 ¶

func (a *RepositoryAPIService) GetWebhook1(ctx context.Context, projectKey string, webhookId string, repositorySlug string) RepositoryAPIGetWebhook1Request

GetWebhook1 Get webhook

Get a webhook by ID.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId ID of the webhook
@param repositorySlug The repository slug.
@return RepositoryAPIGetWebhook1Request

func (*RepositoryAPIService) GetWebhook1Execute ¶

Execute executes the request

@return RestWebhook

func (*RepositoryAPIService) React ¶

func (a *RepositoryAPIService) React(ctx context.Context, projectKey string, commentId string, commitId string, emoticon string, repositorySlug string) RepositoryAPIReactRequest

React React to a comment

Add an emoticon reaction to a comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The comment id
@param commitId The commit id
@param emoticon The emoticon to add
@param repositorySlug The repository slug.
@return RepositoryAPIReactRequest

func (*RepositoryAPIService) ReactExecute ¶

Execute executes the request

@return RestUserReaction

func (*RepositoryAPIService) RemoveConfiguration1 ¶

func (a *RepositoryAPIService) RemoveConfiguration1(ctx context.Context, projectKey string, scriptId string, repositorySlug string) RepositoryAPIRemoveConfiguration1Request

RemoveConfiguration1 Remove a hook script

Removes the hook script from the set of hook scripts configured to run in the repository.

This endpoint requires **REPO_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param scriptId The ID of the hook script
@param repositorySlug The repository slug.
@return RepositoryAPIRemoveConfiguration1Request

func (*RepositoryAPIService) RemoveConfiguration1Execute ¶

Execute executes the request

func (*RepositoryAPIService) RemoveLabel ¶

func (a *RepositoryAPIService) RemoveLabel(ctx context.Context, projectKey string, labelName string, repositorySlug string) RepositoryAPIRemoveLabelRequest

RemoveLabel Remove repository label

Remove label that is applied to the given repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param labelName The label to remove
@param repositorySlug The repository slug.
@return RepositoryAPIRemoveLabelRequest

func (*RepositoryAPIService) RemoveLabelExecute ¶

Execute executes the request

func (*RepositoryAPIService) SaveAttachmentMetadata ¶

func (a *RepositoryAPIService) SaveAttachmentMetadata(ctx context.Context, projectKey string, attachmentId string, repositorySlug string) RepositoryAPISaveAttachmentMetadataRequest

SaveAttachmentMetadata Save attachment metadata

Save attachment metadata.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository that is associated to the attachment that has the attachment metadata.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param attachmentId the attachment ID
@param repositorySlug The repository slug
@return RepositoryAPISaveAttachmentMetadataRequest

func (*RepositoryAPIService) SaveAttachmentMetadataExecute ¶

func (a *RepositoryAPIService) SaveAttachmentMetadataExecute(r RepositoryAPISaveAttachmentMetadataRequest) (*http.Response, error)

Execute executes the request

func (*RepositoryAPIService) SearchWebhooks ¶

func (a *RepositoryAPIService) SearchWebhooks(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPISearchWebhooksRequest

SearchWebhooks Search webhooks

Search webhooks in this repository and parent project. This endpoint returns a superset of the results returned by the /webhooks endpoint because it allows filtering by project scope too, not just repository webhooks.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPISearchWebhooksRequest

func (*RepositoryAPIService) SearchWebhooksExecute ¶

Execute executes the request

func (*RepositoryAPIService) SetAutoDeclineSettings1 ¶

func (a *RepositoryAPIService) SetAutoDeclineSettings1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPISetAutoDeclineSettings1Request

SetAutoDeclineSettings1 Create auto decline settings

Creates or updates the auto decline settings for the supplied repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for this repository to call the resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param repositorySlug The repository slug
@return RepositoryAPISetAutoDeclineSettings1Request

func (*RepositoryAPIService) SetAutoDeclineSettings1Execute ¶

Execute executes the request

@return RestAutoDeclineSettings

func (*RepositoryAPIService) SetConfiguration1 ¶

func (a *RepositoryAPIService) SetConfiguration1(ctx context.Context, projectKey string, scriptId string, repositorySlug string) RepositoryAPISetConfiguration1Request

SetConfiguration1 Create/update a hook script

Creates/updates the hook script configuration for the provided hook script and repository.

This endpoint requires **REPO_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param scriptId The ID of the hook script
@param repositorySlug The repository slug.
@return RepositoryAPISetConfiguration1Request

func (*RepositoryAPIService) SetConfiguration1Execute ¶

Execute executes the request

@return RestHookScriptConfig

func (*RepositoryAPIService) SetDefaultBranch1 ¶

func (a *RepositoryAPIService) SetDefaultBranch1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPISetDefaultBranch1Request

SetDefaultBranch1 Update default branch

Update the default branch of a repository.

This URL is deprecated. Callers should use <code>PUT /projects/{key}/repos/{slug}/default-branch</code> instead.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPISetDefaultBranch1Request

Deprecated

func (*RepositoryAPIService) SetDefaultBranch1Execute ¶

Execute executes the request Deprecated

func (*RepositoryAPIService) SetEnabled ¶

func (a *RepositoryAPIService) SetEnabled(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPISetEnabledRequest

SetEnabled Disable synchronization

Enables or disables synchronization for the specified repository. When synchronization is enabled, branches within the repository are immediately synchronized and the status is updated with the outcome. That initial synchronization is performed before the REST request returns, allowing it to return the updated status.

The authenticated user must have <b>REPO_ADMIN</b> permission for the specified repository. Anonymous users cannot manage synchronization, even on public repositories. Additionally, synchronization must be available for the specified repository. Synchronization is only available if:

- The repository is a fork, since its origin is used as upstream - The owning user still has access to the fork's origin, if the repository is a <i>personalfork</i>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPISetEnabledRequest

func (*RepositoryAPIService) SetEnabledExecute ¶

Execute executes the request

@return RestRefSyncStatus

func (*RepositoryAPIService) SetSettings1 ¶

func (a *RepositoryAPIService) SetSettings1(ctx context.Context, projectKey string, hookKey string, repositorySlug string) RepositoryAPISetSettings1Request

SetSettings1 Update repository hook settings

Modify the settings for a repository hook for this repository.

The service will reject any settings which are too large, the current limit is 32KB once serialized.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

A JSON document can be provided to use as the settings for the hook. These structure and validity of the document is decided by the plugin providing the hook.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param hookKey The hook key.
@param repositorySlug The repository slug.
@return RepositoryAPISetSettings1Request

func (*RepositoryAPIService) SetSettings1Execute ¶

Execute executes the request

@return ExampleSettings

func (*RepositoryAPIService) Stream ¶

func (a *RepositoryAPIService) Stream(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIStreamRequest

Stream Stream files

Streams files from the repository's root with the last commit to modify each file. Commit modifications are traversed starting from the <code>at</code> commit or, if not specified, from the tip of the default branch.

Unless the repository is public, the authenticated user must have <b>REPO_READ</b> access to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param repositorySlug The repository slug
@return RepositoryAPIStreamRequest

func (*RepositoryAPIService) Stream1 ¶

func (a *RepositoryAPIService) Stream1(ctx context.Context, path string, projectKey string, repositorySlug string) RepositoryAPIStream1Request

Stream1 Stream files with last modified commit in path

Streams files in the requested <code>path</code> with the last commit to modify each file. Commit modifications are traversed starting from the <code>at</code> commit or, if not specified, from the tip of the default branch.

Unless the repository is public, the authenticated user must have <b>REPO_READ</b> access to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param path The path within the repository whose files should be streamed
@param projectKey The project key
@param repositorySlug The repository slug
@return RepositoryAPIStream1Request

func (*RepositoryAPIService) Stream1Execute ¶

Execute executes the request

@return ExampleFiles

func (*RepositoryAPIService) StreamChanges ¶

func (a *RepositoryAPIService) StreamChanges(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIStreamChangesRequest

StreamChanges Compare commits

Gets the file changes available in the <code> from</code> commit but not in the <code> to</code> commit.

If either the <code> from</code> or <code> to</code> commit are not specified, they will be replaced by the default branch of their containing repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIStreamChangesRequest

func (*RepositoryAPIService) StreamChangesExecute ¶

Execute executes the request

@return GetChanges1200Response

func (*RepositoryAPIService) StreamCommits ¶

func (a *RepositoryAPIService) StreamCommits(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIStreamCommitsRequest

StreamCommits Get accessible commits

Gets the commits accessible from the <code>from</code> commit but not in the <code>to</code> commit.

If either the <code>from</code> or <code>to</code> commit are not specified, they will be replaced by the default branch of their containing repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIStreamCommitsRequest

func (*RepositoryAPIService) StreamCommitsExecute ¶

Execute executes the request

@return GetCommits200Response

func (*RepositoryAPIService) StreamDiff ¶

func (a *RepositoryAPIService) StreamDiff(ctx context.Context, commitId string, repositorySlug string, path string, projectKey string) RepositoryAPIStreamDiffRequest

StreamDiff Get diff between revisions

Retrieve the diff between two provided revisions.

To stream a raw text representation of the diff, this endpoint can be called with the request header 'Accept: text/plain'.

Note:</strong> This resource is currently <i>not paged</i>. The server will internally apply a hard cap to the streamed lines, and it is not possible to request subsequent pages if that cap is exceeded. In the event that the cap is reached, the diff will be cut short and one or more {@code truncated} flags will be set to true on the "segments", "hunks" and "diffs" properties, as well as the top-level object, in the returned JSON response.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param commitId The <i>full ID</i> of the commit within the repository
@param repositorySlug The repository slug
@param path The path to the file which should be diffed (optional)
@param projectKey The project key
@return RepositoryAPIStreamDiffRequest

func (*RepositoryAPIService) StreamDiff1 ¶

func (a *RepositoryAPIService) StreamDiff1(ctx context.Context, path string, projectKey string, repositorySlug string) RepositoryAPIStreamDiff1Request

StreamDiff1 Get diff between commits

Gets a diff of the changes available in the <code>from</code> commit but not in the <code> to</code> commit.

If either the <code> from</code> or <code> to</code> commit are not specified, they will be replaced by the default branch of their containing repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param path the path to the file to diff (optional)
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIStreamDiff1Request

func (*RepositoryAPIService) StreamDiff1Execute ¶

Execute executes the request

@return StreamDiff1200Response

func (*RepositoryAPIService) StreamDiffExecute ¶

Execute executes the request

@return RestDiff

func (*RepositoryAPIService) StreamExecute ¶

Execute executes the request

@return ExampleFiles

func (*RepositoryAPIService) StreamFiles ¶

func (a *RepositoryAPIService) StreamFiles(ctx context.Context, path string, projectKey string, repositorySlug string) RepositoryAPIStreamFilesRequest

StreamFiles Get files in directory

Retrieve a page of files from particular directory of a repository. The search is done recursively, so all files from any sub-directory of the specified directory will be returned.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param path The directory to list files for.
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIStreamFilesRequest

func (*RepositoryAPIService) StreamFiles1 ¶

func (a *RepositoryAPIService) StreamFiles1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIStreamFiles1Request

StreamFiles1 Get files in directory

Retrieve a page of files from particular directory of a repository. The search is done recursively, so all files from any sub-directory of the specified directory will be returned.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIStreamFiles1Request

func (*RepositoryAPIService) StreamFiles1Execute ¶

Execute executes the request

@return StreamFiles1200Response

func (*RepositoryAPIService) StreamFilesExecute ¶

Execute executes the request

@return StreamFiles1200Response

func (*RepositoryAPIService) StreamPatch ¶

func (a *RepositoryAPIService) StreamPatch(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIStreamPatchRequest

StreamPatch Get patch content at revision

Retrieve the patch content for a repository at a specified revision.

Cache headers are added to the response (only if full commit hashes are used, not in the case of short hashes).

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIStreamPatchRequest

func (*RepositoryAPIService) StreamPatchExecute ¶

Execute executes the request

func (*RepositoryAPIService) StreamRaw ¶

func (a *RepositoryAPIService) StreamRaw(ctx context.Context, path string, projectKey string, repositorySlug string) RepositoryAPIStreamRawRequest

StreamRaw Get raw content of a file at revision

Retrieve the raw content for a file path at a specified revision.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param path The file path to retrieve content from
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIStreamRawRequest

func (*RepositoryAPIService) StreamRawDiff ¶

func (a *RepositoryAPIService) StreamRawDiff(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIStreamRawDiffRequest

StreamRawDiff Get raw diff for path

Stream the raw diff between two provided revisions.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIStreamRawDiffRequest

func (*RepositoryAPIService) StreamRawDiff1 ¶

func (a *RepositoryAPIService) StreamRawDiff1(ctx context.Context, path string, projectKey string, repositorySlug string) RepositoryAPIStreamRawDiff1Request

StreamRawDiff1 Get raw diff for path

Stream the raw diff between two provided revisions.

The authenticated user must have <strong>REPO_READ</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param path The path to the file which should be diffed (required)
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIStreamRawDiff1Request

func (*RepositoryAPIService) StreamRawDiff1Execute ¶

Execute executes the request

func (*RepositoryAPIService) StreamRawDiffExecute ¶

Execute executes the request

func (*RepositoryAPIService) StreamRawExecute ¶

Execute executes the request

func (*RepositoryAPIService) Synchronize ¶

func (a *RepositoryAPIService) Synchronize(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPISynchronizeRequest

Synchronize Manual synchronization

Allows developers to apply a manual operation to bring a ref back in sync with upstream when it becomes out of sync due to conflicting changes. The following actions are supported:

- <tt>MERGE</tt>: Merges in commits from the upstream ref. After applying this action, the synchronized ref will be <tt>AHEAD</tt> (as it still includes commits that do not exist upstream.

  • This action is only supported for <tt>DIVERGED</tt> refs
  • If a "commitMessage" is provided in the context, it will be used on the merge commit. Otherwise a default message is used.

- <tt>DISCARD</tt>: <i>Throws away</i> local changes in favour of those made upstream. This is a <i>destructive</i> operation where commits in the local repository are lost.

  • No context entries are supported for this action
  • If the upstream ref has been deleted, the local ref is deleted as well
  • Otherwise, the local ref is updated to reference the same commit as upstream, even if the update is not fast-forward (similar to a forced push)

The authenticated user must have <b>REPO_WRITE</b> permission for the specified repository. Anonymous users cannot synchronize refs, even on public repositories. Additionally, synchronization must be <i>enabled</i> and <i>available</i> for the specified repository.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPISynchronizeRequest

func (*RepositoryAPIService) SynchronizeExecute ¶

Execute executes the request

@return RestRejectedRef

func (*RepositoryAPIService) TestWebhook1 ¶

func (a *RepositoryAPIService) TestWebhook1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPITestWebhook1Request

TestWebhook1 Test webhook

Test connectivity to a specific endpoint.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPITestWebhook1Request

func (*RepositoryAPIService) TestWebhook1Execute ¶

func (a *RepositoryAPIService) TestWebhook1Execute(r RepositoryAPITestWebhook1Request) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*RepositoryAPIService) UnReact ¶

func (a *RepositoryAPIService) UnReact(ctx context.Context, projectKey string, commentId string, commitId string, emoticon string, repositorySlug string) RepositoryAPIUnReactRequest

UnReact Remove a reaction from comment

Remove an emoticon reaction from a comment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param commentId The comment id
@param commitId The commit id
@param emoticon The emoticon to remove
@param repositorySlug The repository slug.
@return RepositoryAPIUnReactRequest

func (*RepositoryAPIService) UnReactExecute ¶

Execute executes the request

func (*RepositoryAPIService) Unwatch ¶

func (a *RepositoryAPIService) Unwatch(ctx context.Context, projectKey string, commitId string, repositorySlug string) RepositoryAPIUnwatchRequest

Unwatch Stop watching commit

Remove the authenticated user as a watcher for the specified commit.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository containing the commit to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId The <i>full ID</i> of the commit within the repository
@param repositorySlug The repository slug
@return RepositoryAPIUnwatchRequest

func (*RepositoryAPIService) Unwatch2 ¶

func (a *RepositoryAPIService) Unwatch2(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIUnwatch2Request

Unwatch2 Stop watching repository

Remove the authenticated user as a watcher for the specified repository.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIUnwatch2Request

func (*RepositoryAPIService) Unwatch2Execute ¶

Execute executes the request

func (*RepositoryAPIService) UnwatchExecute ¶

Execute executes the request

func (*RepositoryAPIService) UpdateComment ¶

func (a *RepositoryAPIService) UpdateComment(ctx context.Context, projectKey string, commentId string, commitId string, repositorySlug string) RepositoryAPIUpdateCommentRequest

UpdateComment Update a commit comment

Update a comment, with the following restrictions:

- only the author of the comment may update the <i>text</i> of the comment - only the author of the comment or repository admins and above may update the other fields of a comment

<strong>Note:</strong> the supplied supplied JSON object must contain a <code>version</code> that must match the server's version of the comment or the update will fail. To determine the current version of the comment, the comment should be fetched from the server prior to the update. Look for the 'version' attribute in the returned JSON structure.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository that the commit is in to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commentId The ID of the comment to retrieve
@param commitId The <i>full ID</i> of the commit within the repository
@param repositorySlug The repository slug
@return RepositoryAPIUpdateCommentRequest

func (*RepositoryAPIService) UpdateCommentExecute ¶

Execute executes the request

@return RestComment

func (*RepositoryAPIService) UpdatePullRequestSettings1 ¶

func (a *RepositoryAPIService) UpdatePullRequestSettings1(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIUpdatePullRequestSettings1Request

UpdatePullRequestSettings1 Update pull request settings

Update the pull request settings for the context repository.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the context repository to call this resource.

This resource will call all RestFragments that are registered with the key <strong>bitbucket.repository.settings.pullRequests</strong>. If any fragment fails validations by returning a non-empty Map of errors, then no fragments will execute.

Only the settings that should be updated need to be included in the request.

The property keys for the settings that are bundled with the application are ¶

- mergeConfig - the merge strategy configuration for pull requests - requiredApprovers - (Deprecated, please use com.atlassian.bitbucket.server.bundled-hooks.requiredApproversMergeHook instead) the number of approvals required on a pull request for it to be mergeable, or 0 to disable the merge check - com.atlassian.bitbucket.server.bundled-hooks.requiredApproversMergeHook - a json map containing the keys 'enabled' (a boolean to enable or disable this merge check) and 'count' (an integer to set the number of required approvals) - requiredAllApprovers - whether or not all approvers must approve a pull request for it to be mergeable - requiredAllTasksComplete - whether or not all tasks on a pull request need to be completed for it to be mergeable - requiredSuccessfulBuilds - (Deprecated, please use com.atlassian.bitbucket.server.bitbucket-build.requiredBuildsMergeCheck instead) the number of successful builds on a pull request for it to be mergeable, or 0 to disable the merge check - com.atlassian.bitbucket.server.bitbucket-build.requiredBuildsMergeCheck - a json map containing the keys 'enabled' (a boolean to enable or disable this merge check) and 'count' (an integer to set the number of required builds)

<strong>Merge strategy configuration deletion:</strong>

An explicitly set pull request merge strategy configuration can be deleted by POSTing a document with an empty "mergeConfig" attribute. i.e:

```{
    "mergeConfig": {
    }
}

```

Upon completion of this request, the effective configuration will be:

- The configuration set for this repository's SCM type as set at the project level, if present, otherwise - the configuration set for this repository's SCM type as set at the instance level, if present, otherwise - the default configuration for this repository's SCM type

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIUpdatePullRequestSettings1Request

func (*RepositoryAPIService) UpdatePullRequestSettings1Execute ¶

Execute executes the request

@return RestRepositoryPullRequestSettings

func (*RepositoryAPIService) UpdateWebhook1 ¶

func (a *RepositoryAPIService) UpdateWebhook1(ctx context.Context, projectKey string, webhookId string, repositorySlug string) RepositoryAPIUpdateWebhook1Request

UpdateWebhook1 Update webhook

Update an existing webhook.

The authenticated user must have <strong>REPO_ADMIN</strong> permission for the specified repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param webhookId Id of the existing webhook
@param repositorySlug The repository slug.
@return RepositoryAPIUpdateWebhook1Request

func (*RepositoryAPIService) UpdateWebhook1Execute ¶

Execute executes the request

@return RestWebhook

func (*RepositoryAPIService) Watch ¶

func (a *RepositoryAPIService) Watch(ctx context.Context, projectKey string, commitId string, repositorySlug string) RepositoryAPIWatchRequest

Watch Watch commit

Add the authenticated user as a watcher for the specified commit.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository containing the commit to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key
@param commitId The <i>full ID</i> of the commit within the repository
@param repositorySlug The repository slug
@return RepositoryAPIWatchRequest

func (*RepositoryAPIService) Watch2 ¶

func (a *RepositoryAPIService) Watch2(ctx context.Context, projectKey string, repositorySlug string) RepositoryAPIWatch2Request

Watch2 Watch repository

Add the authenticated user as a watcher for the specified repository.

The authenticated user must have <strong>REPO_READ</strong> permission for the repository to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return RepositoryAPIWatch2Request

func (*RepositoryAPIService) Watch2Execute ¶

Execute executes the request

func (*RepositoryAPIService) WatchExecute ¶

Execute executes the request

type RepositoryAPISetAutoDeclineSettings1Request ¶

type RepositoryAPISetAutoDeclineSettings1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPISetAutoDeclineSettings1Request) Execute ¶

func (RepositoryAPISetAutoDeclineSettings1Request) RestAutoDeclineSettingsRequest ¶

The settings to create or update

type RepositoryAPISetConfiguration1Request ¶

type RepositoryAPISetConfiguration1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPISetConfiguration1Request) Execute ¶

func (RepositoryAPISetConfiguration1Request) RestHookScriptTriggers ¶

The hook triggers for which the hook script should be run

type RepositoryAPISetDefaultBranch1Request ¶

type RepositoryAPISetDefaultBranch1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPISetDefaultBranch1Request) Execute ¶

func (RepositoryAPISetDefaultBranch1Request) RestBranch ¶

The branch to set as default

type RepositoryAPISetEnabledRequest ¶

type RepositoryAPISetEnabledRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPISetEnabledRequest) Execute ¶

func (RepositoryAPISetEnabledRequest) RestRefSyncStatus ¶

type RepositoryAPISetSettings1Request ¶

type RepositoryAPISetSettings1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPISetSettings1Request) ExampleSettings ¶

The raw settings.

func (RepositoryAPISetSettings1Request) Execute ¶

type RepositoryAPIStream1Request ¶

type RepositoryAPIStream1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStream1Request) At ¶

The commit to use as the starting point when listing files and calculating modifications

func (RepositoryAPIStream1Request) Execute ¶

type RepositoryAPIStreamChangesRequest ¶

type RepositoryAPIStreamChangesRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamChangesRequest) Execute ¶

func (RepositoryAPIStreamChangesRequest) From ¶

the source commit (can be a partial/full commit ID or qualified/unqualified ref name)

func (RepositoryAPIStreamChangesRequest) FromRepo ¶

an optional parameter specifying the source repository containing the source commit if that commit is not present in the current repository; the repository can be specified by either its ID &lt;em&gt;fromRepo&#x3D;42&lt;/em&gt; or by its project key plus its repo slug separated by a slash: &lt;em&gt;fromRepo&#x3D;projectKey/repoSlug&lt;/em&gt;

func (RepositoryAPIStreamChangesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIStreamChangesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (RepositoryAPIStreamChangesRequest) To ¶

the target commit (can be a partial/full commit ID or qualified/unqualified ref name)

type RepositoryAPIStreamCommitsRequest ¶

type RepositoryAPIStreamCommitsRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamCommitsRequest) Execute ¶

func (RepositoryAPIStreamCommitsRequest) From ¶

the source commit (can be a partial/full commit ID or qualified/unqualified ref name)

func (RepositoryAPIStreamCommitsRequest) FromRepo ¶

an optional parameter specifying the source repository containing the source commit if that commit is not present in the current repository; the repository can be specified by either its ID &lt;em&gt;fromRepo&#x3D;42&lt;/em&gt; or by its project key plus its repo slug separated by a slash: &lt;em&gt;fromRepo&#x3D;projectKey/repoSlug&lt;/em&gt;

func (RepositoryAPIStreamCommitsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIStreamCommitsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (RepositoryAPIStreamCommitsRequest) To ¶

the target commit (can be a partial/full commit ID or qualified/unqualified ref name)

type RepositoryAPIStreamDiff1Request ¶

type RepositoryAPIStreamDiff1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamDiff1Request) ContextLines ¶

an optional number of context lines to include around each added or removed lines in the diff

func (RepositoryAPIStreamDiff1Request) Execute ¶

func (RepositoryAPIStreamDiff1Request) From ¶

the source commit (can be a partial/full commit ID or qualified/unqualified ref name)

func (RepositoryAPIStreamDiff1Request) FromRepo ¶

an optional parameter specifying the source repository containing the source commit if that commit is not present in the current repository; the repository can be specified by either its ID &lt;em&gt;fromRepo&#x3D;42&lt;/em&gt; or by its project key plus its repo slug separated by a slash: &lt;em&gt;fromRepo&#x3D;projectKey/repoSlug&lt;/em&gt;

func (RepositoryAPIStreamDiff1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIStreamDiff1Request) SrcPath ¶

source path

func (RepositoryAPIStreamDiff1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (RepositoryAPIStreamDiff1Request) To ¶

the target commit (can be a partial/full commit ID or qualified/unqualified ref name)

func (RepositoryAPIStreamDiff1Request) Whitespace ¶

an optional whitespace flag which can be set to &lt;code&gt;ignore-all&lt;/code&gt;

type RepositoryAPIStreamDiffRequest ¶

type RepositoryAPIStreamDiffRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamDiffRequest) AutoSrcPath ¶

&lt;code&gt;true&lt;/code&gt; to automatically try to find the source path when it&#39;s not provided, &lt;code&gt;false&lt;/code&gt; otherwise. Requires the path to be provided.

func (RepositoryAPIStreamDiffRequest) AvatarScheme ¶

The security scheme for avatar URLs. If the scheme is not present then it is inherited from the request. It can be set to \&quot;https\&quot; to force the use of secure URLs. Not applicable if streaming raw diff

func (RepositoryAPIStreamDiffRequest) AvatarSize ¶

If present the service adds avatar URLs for comment authors where the provided value specifies the desired avatar size in pixels. Not applicable if streaming raw diff

func (RepositoryAPIStreamDiffRequest) ContextLines ¶

The number of context lines to include around added/removed lines in the diff.Not applicable if streaming raw diff

func (RepositoryAPIStreamDiffRequest) Execute ¶

func (RepositoryAPIStreamDiffRequest) Filter ¶

Text used to filter files and lines (optional). Not applicable if streaming raw diff

func (RepositoryAPIStreamDiffRequest) Since ¶

The base revision to diff from. If omitted the parent revision of the until revision is used

func (RepositoryAPIStreamDiffRequest) SrcPath ¶

The source path for the file, if it was copied, moved or renamed

func (RepositoryAPIStreamDiffRequest) Whitespace ¶

Optional whitespace flag which can be set to ignore-all

func (RepositoryAPIStreamDiffRequest) WithComments ¶

&lt;code&gt;true&lt;/code&gt; to embed comments in the diff (the default); otherwise &lt;code&gt;false&lt;/code&gt; to stream the diff without comments. Not applicable if streaming raw diff

type RepositoryAPIStreamFiles1Request ¶

type RepositoryAPIStreamFiles1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamFiles1Request) At ¶

The commit ID or ref (e.g. a branch or tag) to list the files at. If not specified the default branch will be used instead.

func (RepositoryAPIStreamFiles1Request) Execute ¶

func (RepositoryAPIStreamFiles1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIStreamFiles1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIStreamFilesRequest ¶

type RepositoryAPIStreamFilesRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamFilesRequest) At ¶

The commit ID or ref (e.g. a branch or tag) to list the files at. If not specified the default branch will be used instead.

func (RepositoryAPIStreamFilesRequest) Execute ¶

func (RepositoryAPIStreamFilesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (RepositoryAPIStreamFilesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type RepositoryAPIStreamPatchRequest ¶

type RepositoryAPIStreamPatchRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamPatchRequest) AllAncestors ¶

indicates whether or not to generate a patch which includes all the ancestors of the &#39;until&#39; revision. If true, the value provided by &#39;since&#39; is ignored.

func (RepositoryAPIStreamPatchRequest) Execute ¶

func (RepositoryAPIStreamPatchRequest) Since ¶

The base revision from which to generate the patch. This is only applicable when &#39;allAncestors&#39; is false. If omitted the patch will represent one single commit, the &#39;until&#39;.

func (RepositoryAPIStreamPatchRequest) Until ¶

The target revision from which to generate the patch (required)

type RepositoryAPIStreamRawDiff1Request ¶

type RepositoryAPIStreamRawDiff1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamRawDiff1Request) ContextLines ¶

The number of context lines to include around added/removed lines in the diff

func (RepositoryAPIStreamRawDiff1Request) Execute ¶

func (RepositoryAPIStreamRawDiff1Request) Since ¶

The base revision to diff from. If omitted the parent revision of the until revision is used

func (RepositoryAPIStreamRawDiff1Request) SrcPath ¶

The source path for the file, if it was copied, moved or renamed

func (RepositoryAPIStreamRawDiff1Request) Until ¶

The target revision to diff to (required)

func (RepositoryAPIStreamRawDiff1Request) Whitespace ¶

Optional whitespace flag which can be set to &lt;code&gt;ignore-all&lt;/code&gt;

type RepositoryAPIStreamRawDiffRequest ¶

type RepositoryAPIStreamRawDiffRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamRawDiffRequest) ContextLines ¶

The number of context lines to include around added/removed lines in the diff

func (RepositoryAPIStreamRawDiffRequest) Execute ¶

func (RepositoryAPIStreamRawDiffRequest) Since ¶

The base revision to diff from. If omitted the parent revision of the until revision is used

func (RepositoryAPIStreamRawDiffRequest) SrcPath ¶

The source path for the file, if it was copied, moved or renamed

func (RepositoryAPIStreamRawDiffRequest) Until ¶

The target revision to diff to (required)

func (RepositoryAPIStreamRawDiffRequest) Whitespace ¶

Optional whitespace flag which can be set to &lt;code&gt;ignore-all&lt;/code&gt;

type RepositoryAPIStreamRawRequest ¶

type RepositoryAPIStreamRawRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamRawRequest) At ¶

A specific commit or ref to retrieve the raw content at, or the default branch if not specified

func (RepositoryAPIStreamRawRequest) Execute ¶

func (RepositoryAPIStreamRawRequest) Hardwrap ¶

(Optional) Whether the markup implementation should convert newlines to breaks. If not specified, the value of the markup.render.hardwrap property, which is true by default, will be used

func (RepositoryAPIStreamRawRequest) HtmlEscape ¶

(Optional) true if HTML should be escaped in the input markup, false otherwise. If not specified, the value of the markup.render.html.escape property, which is true by default, will be used

func (RepositoryAPIStreamRawRequest) IncludeHeadingId ¶

func (r RepositoryAPIStreamRawRequest) IncludeHeadingId(includeHeadingId string) RepositoryAPIStreamRawRequest

(Optional) true if headings should contain an ID based on the heading content. If not specified, the value of the markup.render.headerids property, which is false by default, will be used

func (RepositoryAPIStreamRawRequest) Markup ¶

If present or \&quot;true\&quot;, triggers the raw content to be markup-rendered and returned as HTML; otherwise, if not specified, or any value other than \&quot;true\&quot;, the content is streamed without markup

type RepositoryAPIStreamRequest ¶

type RepositoryAPIStreamRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIStreamRequest) At ¶

The commit to use as the starting point when listing files and calculating modifications

func (RepositoryAPIStreamRequest) Execute ¶

type RepositoryAPISynchronizeRequest ¶

type RepositoryAPISynchronizeRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPISynchronizeRequest) Execute ¶

func (RepositoryAPISynchronizeRequest) RestRefSyncRequest ¶

type RepositoryAPITestWebhook1Request ¶

type RepositoryAPITestWebhook1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPITestWebhook1Request) Execute ¶

func (r RepositoryAPITestWebhook1Request) Execute() (interface{}, *http.Response, error)

func (RepositoryAPITestWebhook1Request) RestWebhookCredentials ¶

func (r RepositoryAPITestWebhook1Request) RestWebhookCredentials(restWebhookCredentials RestWebhookCredentials) RepositoryAPITestWebhook1Request

Basic authentication credentials, if required.

func (RepositoryAPITestWebhook1Request) SslVerificationRequired ¶

func (r RepositoryAPITestWebhook1Request) SslVerificationRequired(sslVerificationRequired string) RepositoryAPITestWebhook1Request

Whether SSL verification is required for the specified webhook URL. Default value is &lt;code&gt;true&lt;/code&gt;.

func (RepositoryAPITestWebhook1Request) Url ¶

The url in which to connect to

func (RepositoryAPITestWebhook1Request) WebhookId ¶

type RepositoryAPIUnReactRequest ¶

type RepositoryAPIUnReactRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIUnReactRequest) Execute ¶

type RepositoryAPIUnwatch2Request ¶

type RepositoryAPIUnwatch2Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIUnwatch2Request) Execute ¶

type RepositoryAPIUnwatchRequest ¶

type RepositoryAPIUnwatchRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIUnwatchRequest) Execute ¶

type RepositoryAPIUpdateCommentRequest ¶

type RepositoryAPIUpdateCommentRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIUpdateCommentRequest) Execute ¶

func (RepositoryAPIUpdateCommentRequest) RestComment ¶

The comment to update

type RepositoryAPIUpdatePullRequestSettings1Request ¶

type RepositoryAPIUpdatePullRequestSettings1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIUpdatePullRequestSettings1Request) Execute ¶

func (RepositoryAPIUpdatePullRequestSettings1Request) RestRepositoryPullRequestSettings ¶

The updated settings.

type RepositoryAPIUpdateWebhook1Request ¶

type RepositoryAPIUpdateWebhook1Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIUpdateWebhook1Request) Execute ¶

func (RepositoryAPIUpdateWebhook1Request) RestWebhook ¶

The representation of the updated values for the webhook

type RepositoryAPIWatch2Request ¶

type RepositoryAPIWatch2Request struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIWatch2Request) Execute ¶

func (RepositoryAPIWatch2Request) RestRepository ¶

func (r RepositoryAPIWatch2Request) RestRepository(restRepository RestRepository) RepositoryAPIWatch2Request

The repository to watch.

type RepositoryAPIWatchRequest ¶

type RepositoryAPIWatchRequest struct {
	ApiService *RepositoryAPIService
	// contains filtered or unexported fields
}

func (RepositoryAPIWatchRequest) Execute ¶

func (r RepositoryAPIWatchRequest) Execute() (*http.Response, error)

type RepositoryHookDetails ¶

type RepositoryHookDetails struct {
	Version         *string  `json:"version,omitempty"`
	Name            *string  `json:"name,omitempty"`
	Key             *string  `json:"key,omitempty"`
	Type            *string  `json:"type,omitempty"`
	ConfigFormKey   *string  `json:"configFormKey,omitempty"`
	SupportedScopes []string `json:"supportedScopes,omitempty"`
	Description     *string  `json:"description,omitempty"`
}

RepositoryHookDetails struct for RepositoryHookDetails

func NewRepositoryHookDetails ¶

func NewRepositoryHookDetails() *RepositoryHookDetails

NewRepositoryHookDetails instantiates a new RepositoryHookDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRepositoryHookDetailsWithDefaults ¶

func NewRepositoryHookDetailsWithDefaults() *RepositoryHookDetails

NewRepositoryHookDetailsWithDefaults instantiates a new RepositoryHookDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RepositoryHookDetails) GetConfigFormKey ¶

func (o *RepositoryHookDetails) GetConfigFormKey() string

GetConfigFormKey returns the ConfigFormKey field value if set, zero value otherwise.

func (*RepositoryHookDetails) GetConfigFormKeyOk ¶

func (o *RepositoryHookDetails) GetConfigFormKeyOk() (*string, bool)

GetConfigFormKeyOk returns a tuple with the ConfigFormKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHookDetails) GetDescription ¶

func (o *RepositoryHookDetails) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RepositoryHookDetails) GetDescriptionOk ¶

func (o *RepositoryHookDetails) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHookDetails) GetKey ¶

func (o *RepositoryHookDetails) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*RepositoryHookDetails) GetKeyOk ¶

func (o *RepositoryHookDetails) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHookDetails) GetName ¶

func (o *RepositoryHookDetails) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RepositoryHookDetails) GetNameOk ¶

func (o *RepositoryHookDetails) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHookDetails) GetSupportedScopes ¶

func (o *RepositoryHookDetails) GetSupportedScopes() []string

GetSupportedScopes returns the SupportedScopes field value if set, zero value otherwise.

func (*RepositoryHookDetails) GetSupportedScopesOk ¶

func (o *RepositoryHookDetails) GetSupportedScopesOk() ([]string, bool)

GetSupportedScopesOk returns a tuple with the SupportedScopes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHookDetails) GetType ¶

func (o *RepositoryHookDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RepositoryHookDetails) GetTypeOk ¶

func (o *RepositoryHookDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHookDetails) GetVersion ¶

func (o *RepositoryHookDetails) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*RepositoryHookDetails) GetVersionOk ¶

func (o *RepositoryHookDetails) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RepositoryHookDetails) HasConfigFormKey ¶

func (o *RepositoryHookDetails) HasConfigFormKey() bool

HasConfigFormKey returns a boolean if a field has been set.

func (*RepositoryHookDetails) HasDescription ¶

func (o *RepositoryHookDetails) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RepositoryHookDetails) HasKey ¶

func (o *RepositoryHookDetails) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*RepositoryHookDetails) HasName ¶

func (o *RepositoryHookDetails) HasName() bool

HasName returns a boolean if a field has been set.

func (*RepositoryHookDetails) HasSupportedScopes ¶

func (o *RepositoryHookDetails) HasSupportedScopes() bool

HasSupportedScopes returns a boolean if a field has been set.

func (*RepositoryHookDetails) HasType ¶

func (o *RepositoryHookDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (*RepositoryHookDetails) HasVersion ¶

func (o *RepositoryHookDetails) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RepositoryHookDetails) MarshalJSON ¶

func (o RepositoryHookDetails) MarshalJSON() ([]byte, error)

func (*RepositoryHookDetails) SetConfigFormKey ¶

func (o *RepositoryHookDetails) SetConfigFormKey(v string)

SetConfigFormKey gets a reference to the given string and assigns it to the ConfigFormKey field.

func (*RepositoryHookDetails) SetDescription ¶

func (o *RepositoryHookDetails) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RepositoryHookDetails) SetKey ¶

func (o *RepositoryHookDetails) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*RepositoryHookDetails) SetName ¶

func (o *RepositoryHookDetails) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RepositoryHookDetails) SetSupportedScopes ¶

func (o *RepositoryHookDetails) SetSupportedScopes(v []string)

SetSupportedScopes gets a reference to the given []string and assigns it to the SupportedScopes field.

func (*RepositoryHookDetails) SetType ¶

func (o *RepositoryHookDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RepositoryHookDetails) SetVersion ¶

func (o *RepositoryHookDetails) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (RepositoryHookDetails) ToMap ¶

func (o RepositoryHookDetails) ToMap() (map[string]interface{}, error)

type RestAccessToken ¶

type RestAccessToken struct {
	Name        *string    `json:"name,omitempty"`
	Id          *string    `json:"id,omitempty"`
	CreatedDate *time.Time `json:"createdDate,omitempty"`
}

RestAccessToken struct for RestAccessToken

func NewRestAccessToken ¶

func NewRestAccessToken() *RestAccessToken

NewRestAccessToken instantiates a new RestAccessToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAccessTokenWithDefaults ¶

func NewRestAccessTokenWithDefaults() *RestAccessToken

NewRestAccessTokenWithDefaults instantiates a new RestAccessToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAccessToken) GetCreatedDate ¶

func (o *RestAccessToken) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestAccessToken) GetCreatedDateOk ¶

func (o *RestAccessToken) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAccessToken) GetId ¶

func (o *RestAccessToken) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestAccessToken) GetIdOk ¶

func (o *RestAccessToken) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAccessToken) GetName ¶

func (o *RestAccessToken) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestAccessToken) GetNameOk ¶

func (o *RestAccessToken) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAccessToken) HasCreatedDate ¶

func (o *RestAccessToken) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestAccessToken) HasId ¶

func (o *RestAccessToken) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestAccessToken) HasName ¶

func (o *RestAccessToken) HasName() bool

HasName returns a boolean if a field has been set.

func (RestAccessToken) MarshalJSON ¶

func (o RestAccessToken) MarshalJSON() ([]byte, error)

func (*RestAccessToken) SetCreatedDate ¶

func (o *RestAccessToken) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*RestAccessToken) SetId ¶

func (o *RestAccessToken) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestAccessToken) SetName ¶

func (o *RestAccessToken) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestAccessToken) ToMap ¶

func (o RestAccessToken) ToMap() (map[string]interface{}, error)

type RestAccessTokenRequest ¶

type RestAccessTokenRequest struct {
	ExpiryDays  *int32   `json:"expiryDays,omitempty"`
	Name        *string  `json:"name,omitempty"`
	Permissions []string `json:"permissions,omitempty"`
}

RestAccessTokenRequest struct for RestAccessTokenRequest

func NewRestAccessTokenRequest ¶

func NewRestAccessTokenRequest() *RestAccessTokenRequest

NewRestAccessTokenRequest instantiates a new RestAccessTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAccessTokenRequestWithDefaults ¶

func NewRestAccessTokenRequestWithDefaults() *RestAccessTokenRequest

NewRestAccessTokenRequestWithDefaults instantiates a new RestAccessTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAccessTokenRequest) GetExpiryDays ¶

func (o *RestAccessTokenRequest) GetExpiryDays() int32

GetExpiryDays returns the ExpiryDays field value if set, zero value otherwise.

func (*RestAccessTokenRequest) GetExpiryDaysOk ¶

func (o *RestAccessTokenRequest) GetExpiryDaysOk() (*int32, bool)

GetExpiryDaysOk returns a tuple with the ExpiryDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAccessTokenRequest) GetName ¶

func (o *RestAccessTokenRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestAccessTokenRequest) GetNameOk ¶

func (o *RestAccessTokenRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAccessTokenRequest) GetPermissions ¶

func (o *RestAccessTokenRequest) GetPermissions() []string

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*RestAccessTokenRequest) GetPermissionsOk ¶

func (o *RestAccessTokenRequest) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAccessTokenRequest) HasExpiryDays ¶

func (o *RestAccessTokenRequest) HasExpiryDays() bool

HasExpiryDays returns a boolean if a field has been set.

func (*RestAccessTokenRequest) HasName ¶

func (o *RestAccessTokenRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestAccessTokenRequest) HasPermissions ¶

func (o *RestAccessTokenRequest) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (RestAccessTokenRequest) MarshalJSON ¶

func (o RestAccessTokenRequest) MarshalJSON() ([]byte, error)

func (*RestAccessTokenRequest) SetExpiryDays ¶

func (o *RestAccessTokenRequest) SetExpiryDays(v int32)

SetExpiryDays gets a reference to the given int32 and assigns it to the ExpiryDays field.

func (*RestAccessTokenRequest) SetName ¶

func (o *RestAccessTokenRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestAccessTokenRequest) SetPermissions ¶

func (o *RestAccessTokenRequest) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (RestAccessTokenRequest) ToMap ¶

func (o RestAccessTokenRequest) ToMap() (map[string]interface{}, error)

type RestAggregateRejectCounter ¶

type RestAggregateRejectCounter struct {
	LastRejectTime *float32                        `json:"lastRejectTime,omitempty"`
	RejectCount    *int64                          `json:"rejectCount,omitempty"`
	User           *RestPullRequestParticipantUser `json:"user,omitempty"`
}

RestAggregateRejectCounter struct for RestAggregateRejectCounter

func NewRestAggregateRejectCounter ¶

func NewRestAggregateRejectCounter() *RestAggregateRejectCounter

NewRestAggregateRejectCounter instantiates a new RestAggregateRejectCounter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAggregateRejectCounterWithDefaults ¶

func NewRestAggregateRejectCounterWithDefaults() *RestAggregateRejectCounter

NewRestAggregateRejectCounterWithDefaults instantiates a new RestAggregateRejectCounter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAggregateRejectCounter) GetLastRejectTime ¶

func (o *RestAggregateRejectCounter) GetLastRejectTime() float32

GetLastRejectTime returns the LastRejectTime field value if set, zero value otherwise.

func (*RestAggregateRejectCounter) GetLastRejectTimeOk ¶

func (o *RestAggregateRejectCounter) GetLastRejectTimeOk() (*float32, bool)

GetLastRejectTimeOk returns a tuple with the LastRejectTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAggregateRejectCounter) GetRejectCount ¶

func (o *RestAggregateRejectCounter) GetRejectCount() int64

GetRejectCount returns the RejectCount field value if set, zero value otherwise.

func (*RestAggregateRejectCounter) GetRejectCountOk ¶

func (o *RestAggregateRejectCounter) GetRejectCountOk() (*int64, bool)

GetRejectCountOk returns a tuple with the RejectCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAggregateRejectCounter) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*RestAggregateRejectCounter) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAggregateRejectCounter) HasLastRejectTime ¶

func (o *RestAggregateRejectCounter) HasLastRejectTime() bool

HasLastRejectTime returns a boolean if a field has been set.

func (*RestAggregateRejectCounter) HasRejectCount ¶

func (o *RestAggregateRejectCounter) HasRejectCount() bool

HasRejectCount returns a boolean if a field has been set.

func (*RestAggregateRejectCounter) HasUser ¶

func (o *RestAggregateRejectCounter) HasUser() bool

HasUser returns a boolean if a field has been set.

func (RestAggregateRejectCounter) MarshalJSON ¶

func (o RestAggregateRejectCounter) MarshalJSON() ([]byte, error)

func (*RestAggregateRejectCounter) SetLastRejectTime ¶

func (o *RestAggregateRejectCounter) SetLastRejectTime(v float32)

SetLastRejectTime gets a reference to the given float32 and assigns it to the LastRejectTime field.

func (*RestAggregateRejectCounter) SetRejectCount ¶

func (o *RestAggregateRejectCounter) SetRejectCount(v int64)

SetRejectCount gets a reference to the given int64 and assigns it to the RejectCount field.

func (*RestAggregateRejectCounter) SetUser ¶

SetUser gets a reference to the given RestPullRequestParticipantUser and assigns it to the User field.

func (RestAggregateRejectCounter) ToMap ¶

func (o RestAggregateRejectCounter) ToMap() (map[string]interface{}, error)

type RestAnalyticsSettings ¶

type RestAnalyticsSettings struct {
	SupportEntitlementNumber *string `json:"supportEntitlementNumber,omitempty"`
	ServerTime               *int64  `json:"serverTime,omitempty"`
	CanCollectAnalytics      *bool   `json:"canCollectAnalytics,omitempty"`
}

RestAnalyticsSettings struct for RestAnalyticsSettings

func NewRestAnalyticsSettings ¶

func NewRestAnalyticsSettings() *RestAnalyticsSettings

NewRestAnalyticsSettings instantiates a new RestAnalyticsSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAnalyticsSettingsWithDefaults ¶

func NewRestAnalyticsSettingsWithDefaults() *RestAnalyticsSettings

NewRestAnalyticsSettingsWithDefaults instantiates a new RestAnalyticsSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAnalyticsSettings) GetCanCollectAnalytics ¶

func (o *RestAnalyticsSettings) GetCanCollectAnalytics() bool

GetCanCollectAnalytics returns the CanCollectAnalytics field value if set, zero value otherwise.

func (*RestAnalyticsSettings) GetCanCollectAnalyticsOk ¶

func (o *RestAnalyticsSettings) GetCanCollectAnalyticsOk() (*bool, bool)

GetCanCollectAnalyticsOk returns a tuple with the CanCollectAnalytics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAnalyticsSettings) GetServerTime ¶

func (o *RestAnalyticsSettings) GetServerTime() int64

GetServerTime returns the ServerTime field value if set, zero value otherwise.

func (*RestAnalyticsSettings) GetServerTimeOk ¶

func (o *RestAnalyticsSettings) GetServerTimeOk() (*int64, bool)

GetServerTimeOk returns a tuple with the ServerTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAnalyticsSettings) GetSupportEntitlementNumber ¶

func (o *RestAnalyticsSettings) GetSupportEntitlementNumber() string

GetSupportEntitlementNumber returns the SupportEntitlementNumber field value if set, zero value otherwise.

func (*RestAnalyticsSettings) GetSupportEntitlementNumberOk ¶

func (o *RestAnalyticsSettings) GetSupportEntitlementNumberOk() (*string, bool)

GetSupportEntitlementNumberOk returns a tuple with the SupportEntitlementNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAnalyticsSettings) HasCanCollectAnalytics ¶

func (o *RestAnalyticsSettings) HasCanCollectAnalytics() bool

HasCanCollectAnalytics returns a boolean if a field has been set.

func (*RestAnalyticsSettings) HasServerTime ¶

func (o *RestAnalyticsSettings) HasServerTime() bool

HasServerTime returns a boolean if a field has been set.

func (*RestAnalyticsSettings) HasSupportEntitlementNumber ¶

func (o *RestAnalyticsSettings) HasSupportEntitlementNumber() bool

HasSupportEntitlementNumber returns a boolean if a field has been set.

func (RestAnalyticsSettings) MarshalJSON ¶

func (o RestAnalyticsSettings) MarshalJSON() ([]byte, error)

func (*RestAnalyticsSettings) SetCanCollectAnalytics ¶

func (o *RestAnalyticsSettings) SetCanCollectAnalytics(v bool)

SetCanCollectAnalytics gets a reference to the given bool and assigns it to the CanCollectAnalytics field.

func (*RestAnalyticsSettings) SetServerTime ¶

func (o *RestAnalyticsSettings) SetServerTime(v int64)

SetServerTime gets a reference to the given int64 and assigns it to the ServerTime field.

func (*RestAnalyticsSettings) SetSupportEntitlementNumber ¶

func (o *RestAnalyticsSettings) SetSupportEntitlementNumber(v string)

SetSupportEntitlementNumber gets a reference to the given string and assigns it to the SupportEntitlementNumber field.

func (RestAnalyticsSettings) ToMap ¶

func (o RestAnalyticsSettings) ToMap() (map[string]interface{}, error)

type RestAnnouncementBanner ¶

type RestAnnouncementBanner struct {
	Enabled  *bool   `json:"enabled,omitempty"`
	Message  *string `json:"message,omitempty"`
	Audience *string `json:"audience,omitempty"`
}

RestAnnouncementBanner struct for RestAnnouncementBanner

func NewRestAnnouncementBanner ¶

func NewRestAnnouncementBanner() *RestAnnouncementBanner

NewRestAnnouncementBanner instantiates a new RestAnnouncementBanner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAnnouncementBannerWithDefaults ¶

func NewRestAnnouncementBannerWithDefaults() *RestAnnouncementBanner

NewRestAnnouncementBannerWithDefaults instantiates a new RestAnnouncementBanner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAnnouncementBanner) GetAudience ¶

func (o *RestAnnouncementBanner) GetAudience() string

GetAudience returns the Audience field value if set, zero value otherwise.

func (*RestAnnouncementBanner) GetAudienceOk ¶

func (o *RestAnnouncementBanner) GetAudienceOk() (*string, bool)

GetAudienceOk returns a tuple with the Audience field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAnnouncementBanner) GetEnabled ¶

func (o *RestAnnouncementBanner) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestAnnouncementBanner) GetEnabledOk ¶

func (o *RestAnnouncementBanner) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAnnouncementBanner) GetMessage ¶

func (o *RestAnnouncementBanner) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestAnnouncementBanner) GetMessageOk ¶

func (o *RestAnnouncementBanner) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAnnouncementBanner) HasAudience ¶

func (o *RestAnnouncementBanner) HasAudience() bool

HasAudience returns a boolean if a field has been set.

func (*RestAnnouncementBanner) HasEnabled ¶

func (o *RestAnnouncementBanner) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*RestAnnouncementBanner) HasMessage ¶

func (o *RestAnnouncementBanner) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (RestAnnouncementBanner) MarshalJSON ¶

func (o RestAnnouncementBanner) MarshalJSON() ([]byte, error)

func (*RestAnnouncementBanner) SetAudience ¶

func (o *RestAnnouncementBanner) SetAudience(v string)

SetAudience gets a reference to the given string and assigns it to the Audience field.

func (*RestAnnouncementBanner) SetEnabled ¶

func (o *RestAnnouncementBanner) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestAnnouncementBanner) SetMessage ¶

func (o *RestAnnouncementBanner) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (RestAnnouncementBanner) ToMap ¶

func (o RestAnnouncementBanner) ToMap() (map[string]interface{}, error)

type RestApplicationProperties ¶

type RestApplicationProperties struct {
	Version     *string `json:"version,omitempty"`
	DisplayName *string `json:"displayName,omitempty"`
	BuildDate   *string `json:"buildDate,omitempty"`
	BuildNumber *string `json:"buildNumber,omitempty"`
}

RestApplicationProperties struct for RestApplicationProperties

func NewRestApplicationProperties ¶

func NewRestApplicationProperties() *RestApplicationProperties

NewRestApplicationProperties instantiates a new RestApplicationProperties object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestApplicationPropertiesWithDefaults ¶

func NewRestApplicationPropertiesWithDefaults() *RestApplicationProperties

NewRestApplicationPropertiesWithDefaults instantiates a new RestApplicationProperties object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestApplicationProperties) GetBuildDate ¶

func (o *RestApplicationProperties) GetBuildDate() string

GetBuildDate returns the BuildDate field value if set, zero value otherwise.

func (*RestApplicationProperties) GetBuildDateOk ¶

func (o *RestApplicationProperties) GetBuildDateOk() (*string, bool)

GetBuildDateOk returns a tuple with the BuildDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationProperties) GetBuildNumber ¶

func (o *RestApplicationProperties) GetBuildNumber() string

GetBuildNumber returns the BuildNumber field value if set, zero value otherwise.

func (*RestApplicationProperties) GetBuildNumberOk ¶

func (o *RestApplicationProperties) GetBuildNumberOk() (*string, bool)

GetBuildNumberOk returns a tuple with the BuildNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationProperties) GetDisplayName ¶

func (o *RestApplicationProperties) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*RestApplicationProperties) GetDisplayNameOk ¶

func (o *RestApplicationProperties) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationProperties) GetVersion ¶

func (o *RestApplicationProperties) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestApplicationProperties) GetVersionOk ¶

func (o *RestApplicationProperties) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationProperties) HasBuildDate ¶

func (o *RestApplicationProperties) HasBuildDate() bool

HasBuildDate returns a boolean if a field has been set.

func (*RestApplicationProperties) HasBuildNumber ¶

func (o *RestApplicationProperties) HasBuildNumber() bool

HasBuildNumber returns a boolean if a field has been set.

func (*RestApplicationProperties) HasDisplayName ¶

func (o *RestApplicationProperties) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*RestApplicationProperties) HasVersion ¶

func (o *RestApplicationProperties) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestApplicationProperties) MarshalJSON ¶

func (o RestApplicationProperties) MarshalJSON() ([]byte, error)

func (*RestApplicationProperties) SetBuildDate ¶

func (o *RestApplicationProperties) SetBuildDate(v string)

SetBuildDate gets a reference to the given string and assigns it to the BuildDate field.

func (*RestApplicationProperties) SetBuildNumber ¶

func (o *RestApplicationProperties) SetBuildNumber(v string)

SetBuildNumber gets a reference to the given string and assigns it to the BuildNumber field.

func (*RestApplicationProperties) SetDisplayName ¶

func (o *RestApplicationProperties) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*RestApplicationProperties) SetVersion ¶

func (o *RestApplicationProperties) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (RestApplicationProperties) ToMap ¶

func (o RestApplicationProperties) ToMap() (map[string]interface{}, error)

type RestApplicationUser ¶

type RestApplicationUser struct {
	Name         *string                `json:"name,omitempty"`
	Id           *int32                 `json:"id,omitempty"`
	Type         *string                `json:"type,omitempty"`
	DisplayName  *string                `json:"displayName,omitempty"`
	EmailAddress *string                `json:"emailAddress,omitempty"`
	Slug         *string                `json:"slug,omitempty"`
	Links        map[string]interface{} `json:"links,omitempty"`
	Active       *bool                  `json:"active,omitempty"`
	AvatarUrl    *string                `json:"avatarUrl,omitempty"`
}

RestApplicationUser struct for RestApplicationUser

func NewRestApplicationUser ¶

func NewRestApplicationUser() *RestApplicationUser

NewRestApplicationUser instantiates a new RestApplicationUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestApplicationUserWithDefaults ¶

func NewRestApplicationUserWithDefaults() *RestApplicationUser

NewRestApplicationUserWithDefaults instantiates a new RestApplicationUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestApplicationUser) GetActive ¶

func (o *RestApplicationUser) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*RestApplicationUser) GetActiveOk ¶

func (o *RestApplicationUser) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUser) GetAvatarUrl ¶

func (o *RestApplicationUser) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestApplicationUser) GetAvatarUrlOk ¶

func (o *RestApplicationUser) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUser) GetDisplayName ¶

func (o *RestApplicationUser) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*RestApplicationUser) GetDisplayNameOk ¶

func (o *RestApplicationUser) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUser) GetEmailAddress ¶

func (o *RestApplicationUser) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*RestApplicationUser) GetEmailAddressOk ¶

func (o *RestApplicationUser) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUser) GetId ¶

func (o *RestApplicationUser) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestApplicationUser) GetIdOk ¶

func (o *RestApplicationUser) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestApplicationUser) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestApplicationUser) GetLinksOk ¶

func (o *RestApplicationUser) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUser) GetName ¶

func (o *RestApplicationUser) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestApplicationUser) GetNameOk ¶

func (o *RestApplicationUser) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUser) GetSlug ¶

func (o *RestApplicationUser) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestApplicationUser) GetSlugOk ¶

func (o *RestApplicationUser) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUser) GetType ¶

func (o *RestApplicationUser) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestApplicationUser) GetTypeOk ¶

func (o *RestApplicationUser) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUser) HasActive ¶

func (o *RestApplicationUser) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*RestApplicationUser) HasAvatarUrl ¶

func (o *RestApplicationUser) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*RestApplicationUser) HasDisplayName ¶

func (o *RestApplicationUser) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*RestApplicationUser) HasEmailAddress ¶

func (o *RestApplicationUser) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*RestApplicationUser) HasId ¶

func (o *RestApplicationUser) HasId() bool

HasId returns a boolean if a field has been set.

func (o *RestApplicationUser) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestApplicationUser) HasName ¶

func (o *RestApplicationUser) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestApplicationUser) HasSlug ¶

func (o *RestApplicationUser) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*RestApplicationUser) HasType ¶

func (o *RestApplicationUser) HasType() bool

HasType returns a boolean if a field has been set.

func (RestApplicationUser) MarshalJSON ¶

func (o RestApplicationUser) MarshalJSON() ([]byte, error)

func (*RestApplicationUser) SetActive ¶

func (o *RestApplicationUser) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*RestApplicationUser) SetAvatarUrl ¶

func (o *RestApplicationUser) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestApplicationUser) SetDisplayName ¶

func (o *RestApplicationUser) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*RestApplicationUser) SetEmailAddress ¶

func (o *RestApplicationUser) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*RestApplicationUser) SetId ¶

func (o *RestApplicationUser) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *RestApplicationUser) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestApplicationUser) SetName ¶

func (o *RestApplicationUser) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestApplicationUser) SetSlug ¶

func (o *RestApplicationUser) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestApplicationUser) SetType ¶

func (o *RestApplicationUser) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestApplicationUser) ToMap ¶

func (o RestApplicationUser) ToMap() (map[string]interface{}, error)

type RestApplicationUserWithPermissions ¶

type RestApplicationUserWithPermissions struct {
	EffectivePermissions map[string]interface{} `json:"effectivePermissions,omitempty"`
	Id                   *int32                 `json:"id,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	DisplayName          *string                `json:"displayName,omitempty"`
	Slug                 *string                `json:"slug,omitempty"`
	Active               *bool                  `json:"active,omitempty"`
	Name                 *string                `json:"name,omitempty"`
	EmailAddress         *string                `json:"emailAddress,omitempty"`
	Links                map[string]interface{} `json:"links,omitempty"`
	AvatarUrl            *string                `json:"avatarUrl,omitempty"`
}

RestApplicationUserWithPermissions struct for RestApplicationUserWithPermissions

func NewRestApplicationUserWithPermissions ¶

func NewRestApplicationUserWithPermissions() *RestApplicationUserWithPermissions

NewRestApplicationUserWithPermissions instantiates a new RestApplicationUserWithPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestApplicationUserWithPermissionsWithDefaults ¶

func NewRestApplicationUserWithPermissionsWithDefaults() *RestApplicationUserWithPermissions

NewRestApplicationUserWithPermissionsWithDefaults instantiates a new RestApplicationUserWithPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestApplicationUserWithPermissions) GetActive ¶

GetActive returns the Active field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetActiveOk ¶

func (o *RestApplicationUserWithPermissions) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUserWithPermissions) GetAvatarUrl ¶

func (o *RestApplicationUserWithPermissions) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetAvatarUrlOk ¶

func (o *RestApplicationUserWithPermissions) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUserWithPermissions) GetDisplayName ¶

func (o *RestApplicationUserWithPermissions) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetDisplayNameOk ¶

func (o *RestApplicationUserWithPermissions) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUserWithPermissions) GetEffectivePermissions ¶

func (o *RestApplicationUserWithPermissions) GetEffectivePermissions() map[string]interface{}

GetEffectivePermissions returns the EffectivePermissions field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetEffectivePermissionsOk ¶

func (o *RestApplicationUserWithPermissions) GetEffectivePermissionsOk() (map[string]interface{}, bool)

GetEffectivePermissionsOk returns a tuple with the EffectivePermissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUserWithPermissions) GetEmailAddress ¶

func (o *RestApplicationUserWithPermissions) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetEmailAddressOk ¶

func (o *RestApplicationUserWithPermissions) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUserWithPermissions) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestApplicationUserWithPermissions) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetLinksOk ¶

func (o *RestApplicationUserWithPermissions) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUserWithPermissions) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetNameOk ¶

func (o *RestApplicationUserWithPermissions) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUserWithPermissions) GetSlug ¶

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetSlugOk ¶

func (o *RestApplicationUserWithPermissions) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUserWithPermissions) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestApplicationUserWithPermissions) GetTypeOk ¶

func (o *RestApplicationUserWithPermissions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplicationUserWithPermissions) HasActive ¶

HasActive returns a boolean if a field has been set.

func (*RestApplicationUserWithPermissions) HasAvatarUrl ¶

func (o *RestApplicationUserWithPermissions) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*RestApplicationUserWithPermissions) HasDisplayName ¶

func (o *RestApplicationUserWithPermissions) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*RestApplicationUserWithPermissions) HasEffectivePermissions ¶

func (o *RestApplicationUserWithPermissions) HasEffectivePermissions() bool

HasEffectivePermissions returns a boolean if a field has been set.

func (*RestApplicationUserWithPermissions) HasEmailAddress ¶

func (o *RestApplicationUserWithPermissions) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*RestApplicationUserWithPermissions) HasId ¶

HasId returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (*RestApplicationUserWithPermissions) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestApplicationUserWithPermissions) HasSlug ¶

HasSlug returns a boolean if a field has been set.

func (*RestApplicationUserWithPermissions) HasType ¶

HasType returns a boolean if a field has been set.

func (RestApplicationUserWithPermissions) MarshalJSON ¶

func (o RestApplicationUserWithPermissions) MarshalJSON() ([]byte, error)

func (*RestApplicationUserWithPermissions) SetActive ¶

func (o *RestApplicationUserWithPermissions) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*RestApplicationUserWithPermissions) SetAvatarUrl ¶

func (o *RestApplicationUserWithPermissions) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestApplicationUserWithPermissions) SetDisplayName ¶

func (o *RestApplicationUserWithPermissions) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*RestApplicationUserWithPermissions) SetEffectivePermissions ¶

func (o *RestApplicationUserWithPermissions) SetEffectivePermissions(v map[string]interface{})

SetEffectivePermissions gets a reference to the given map[string]interface{} and assigns it to the EffectivePermissions field.

func (*RestApplicationUserWithPermissions) SetEmailAddress ¶

func (o *RestApplicationUserWithPermissions) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*RestApplicationUserWithPermissions) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *RestApplicationUserWithPermissions) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestApplicationUserWithPermissions) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestApplicationUserWithPermissions) SetSlug ¶

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestApplicationUserWithPermissions) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RestApplicationUserWithPermissions) ToMap ¶

func (o RestApplicationUserWithPermissions) ToMap() (map[string]interface{}, error)

type RestApplySuggestionRequest ¶

type RestApplySuggestionRequest struct {
	CommentVersion     *RestApplySuggestionRequestCommentVersion     `json:"commentVersion,omitempty"`
	CommitMessage      *string                                       `json:"commitMessage,omitempty"`
	PullRequestVersion *RestApplySuggestionRequestPullRequestVersion `json:"pullRequestVersion,omitempty"`
	SuggestionIndex    *RestApplySuggestionRequestSuggestionIndex    `json:"suggestionIndex,omitempty"`
}

RestApplySuggestionRequest struct for RestApplySuggestionRequest

func NewRestApplySuggestionRequest ¶

func NewRestApplySuggestionRequest() *RestApplySuggestionRequest

NewRestApplySuggestionRequest instantiates a new RestApplySuggestionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestApplySuggestionRequestWithDefaults ¶

func NewRestApplySuggestionRequestWithDefaults() *RestApplySuggestionRequest

NewRestApplySuggestionRequestWithDefaults instantiates a new RestApplySuggestionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestApplySuggestionRequest) GetCommentVersion ¶

GetCommentVersion returns the CommentVersion field value if set, zero value otherwise.

func (*RestApplySuggestionRequest) GetCommentVersionOk ¶

GetCommentVersionOk returns a tuple with the CommentVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequest) GetCommitMessage ¶

func (o *RestApplySuggestionRequest) GetCommitMessage() string

GetCommitMessage returns the CommitMessage field value if set, zero value otherwise.

func (*RestApplySuggestionRequest) GetCommitMessageOk ¶

func (o *RestApplySuggestionRequest) GetCommitMessageOk() (*string, bool)

GetCommitMessageOk returns a tuple with the CommitMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequest) GetPullRequestVersion ¶

GetPullRequestVersion returns the PullRequestVersion field value if set, zero value otherwise.

func (*RestApplySuggestionRequest) GetPullRequestVersionOk ¶

GetPullRequestVersionOk returns a tuple with the PullRequestVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequest) GetSuggestionIndex ¶

GetSuggestionIndex returns the SuggestionIndex field value if set, zero value otherwise.

func (*RestApplySuggestionRequest) GetSuggestionIndexOk ¶

GetSuggestionIndexOk returns a tuple with the SuggestionIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequest) HasCommentVersion ¶

func (o *RestApplySuggestionRequest) HasCommentVersion() bool

HasCommentVersion returns a boolean if a field has been set.

func (*RestApplySuggestionRequest) HasCommitMessage ¶

func (o *RestApplySuggestionRequest) HasCommitMessage() bool

HasCommitMessage returns a boolean if a field has been set.

func (*RestApplySuggestionRequest) HasPullRequestVersion ¶

func (o *RestApplySuggestionRequest) HasPullRequestVersion() bool

HasPullRequestVersion returns a boolean if a field has been set.

func (*RestApplySuggestionRequest) HasSuggestionIndex ¶

func (o *RestApplySuggestionRequest) HasSuggestionIndex() bool

HasSuggestionIndex returns a boolean if a field has been set.

func (RestApplySuggestionRequest) MarshalJSON ¶

func (o RestApplySuggestionRequest) MarshalJSON() ([]byte, error)

func (*RestApplySuggestionRequest) SetCommentVersion ¶

SetCommentVersion gets a reference to the given RestApplySuggestionRequestCommentVersion and assigns it to the CommentVersion field.

func (*RestApplySuggestionRequest) SetCommitMessage ¶

func (o *RestApplySuggestionRequest) SetCommitMessage(v string)

SetCommitMessage gets a reference to the given string and assigns it to the CommitMessage field.

func (*RestApplySuggestionRequest) SetPullRequestVersion ¶

SetPullRequestVersion gets a reference to the given RestApplySuggestionRequestPullRequestVersion and assigns it to the PullRequestVersion field.

func (*RestApplySuggestionRequest) SetSuggestionIndex ¶

SetSuggestionIndex gets a reference to the given RestApplySuggestionRequestSuggestionIndex and assigns it to the SuggestionIndex field.

func (RestApplySuggestionRequest) ToMap ¶

func (o RestApplySuggestionRequest) ToMap() (map[string]interface{}, error)

type RestApplySuggestionRequestCommentVersion ¶

type RestApplySuggestionRequestCommentVersion struct {
	AsInt   *int32 `json:"asInt,omitempty"`
	Present *bool  `json:"present,omitempty"`
}

RestApplySuggestionRequestCommentVersion struct for RestApplySuggestionRequestCommentVersion

func NewRestApplySuggestionRequestCommentVersion ¶

func NewRestApplySuggestionRequestCommentVersion() *RestApplySuggestionRequestCommentVersion

NewRestApplySuggestionRequestCommentVersion instantiates a new RestApplySuggestionRequestCommentVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestApplySuggestionRequestCommentVersionWithDefaults ¶

func NewRestApplySuggestionRequestCommentVersionWithDefaults() *RestApplySuggestionRequestCommentVersion

NewRestApplySuggestionRequestCommentVersionWithDefaults instantiates a new RestApplySuggestionRequestCommentVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestApplySuggestionRequestCommentVersion) GetAsInt ¶

GetAsInt returns the AsInt field value if set, zero value otherwise.

func (*RestApplySuggestionRequestCommentVersion) GetAsIntOk ¶

GetAsIntOk returns a tuple with the AsInt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequestCommentVersion) GetPresent ¶

GetPresent returns the Present field value if set, zero value otherwise.

func (*RestApplySuggestionRequestCommentVersion) GetPresentOk ¶

func (o *RestApplySuggestionRequestCommentVersion) GetPresentOk() (*bool, bool)

GetPresentOk returns a tuple with the Present field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequestCommentVersion) HasAsInt ¶

HasAsInt returns a boolean if a field has been set.

func (*RestApplySuggestionRequestCommentVersion) HasPresent ¶

HasPresent returns a boolean if a field has been set.

func (RestApplySuggestionRequestCommentVersion) MarshalJSON ¶

func (*RestApplySuggestionRequestCommentVersion) SetAsInt ¶

SetAsInt gets a reference to the given int32 and assigns it to the AsInt field.

func (*RestApplySuggestionRequestCommentVersion) SetPresent ¶

SetPresent gets a reference to the given bool and assigns it to the Present field.

func (RestApplySuggestionRequestCommentVersion) ToMap ¶

func (o RestApplySuggestionRequestCommentVersion) ToMap() (map[string]interface{}, error)

type RestApplySuggestionRequestPullRequestVersion ¶

type RestApplySuggestionRequestPullRequestVersion struct {
	AsInt   *int32 `json:"asInt,omitempty"`
	Present *bool  `json:"present,omitempty"`
}

RestApplySuggestionRequestPullRequestVersion struct for RestApplySuggestionRequestPullRequestVersion

func NewRestApplySuggestionRequestPullRequestVersion ¶

func NewRestApplySuggestionRequestPullRequestVersion() *RestApplySuggestionRequestPullRequestVersion

NewRestApplySuggestionRequestPullRequestVersion instantiates a new RestApplySuggestionRequestPullRequestVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestApplySuggestionRequestPullRequestVersionWithDefaults ¶

func NewRestApplySuggestionRequestPullRequestVersionWithDefaults() *RestApplySuggestionRequestPullRequestVersion

NewRestApplySuggestionRequestPullRequestVersionWithDefaults instantiates a new RestApplySuggestionRequestPullRequestVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestApplySuggestionRequestPullRequestVersion) GetAsInt ¶

GetAsInt returns the AsInt field value if set, zero value otherwise.

func (*RestApplySuggestionRequestPullRequestVersion) GetAsIntOk ¶

GetAsIntOk returns a tuple with the AsInt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequestPullRequestVersion) GetPresent ¶

GetPresent returns the Present field value if set, zero value otherwise.

func (*RestApplySuggestionRequestPullRequestVersion) GetPresentOk ¶

GetPresentOk returns a tuple with the Present field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequestPullRequestVersion) HasAsInt ¶

HasAsInt returns a boolean if a field has been set.

func (*RestApplySuggestionRequestPullRequestVersion) HasPresent ¶

HasPresent returns a boolean if a field has been set.

func (RestApplySuggestionRequestPullRequestVersion) MarshalJSON ¶

func (*RestApplySuggestionRequestPullRequestVersion) SetAsInt ¶

SetAsInt gets a reference to the given int32 and assigns it to the AsInt field.

func (*RestApplySuggestionRequestPullRequestVersion) SetPresent ¶

SetPresent gets a reference to the given bool and assigns it to the Present field.

func (RestApplySuggestionRequestPullRequestVersion) ToMap ¶

func (o RestApplySuggestionRequestPullRequestVersion) ToMap() (map[string]interface{}, error)

type RestApplySuggestionRequestSuggestionIndex ¶

type RestApplySuggestionRequestSuggestionIndex struct {
	AsInt   *int32 `json:"asInt,omitempty"`
	Present *bool  `json:"present,omitempty"`
}

RestApplySuggestionRequestSuggestionIndex struct for RestApplySuggestionRequestSuggestionIndex

func NewRestApplySuggestionRequestSuggestionIndex ¶

func NewRestApplySuggestionRequestSuggestionIndex() *RestApplySuggestionRequestSuggestionIndex

NewRestApplySuggestionRequestSuggestionIndex instantiates a new RestApplySuggestionRequestSuggestionIndex object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestApplySuggestionRequestSuggestionIndexWithDefaults ¶

func NewRestApplySuggestionRequestSuggestionIndexWithDefaults() *RestApplySuggestionRequestSuggestionIndex

NewRestApplySuggestionRequestSuggestionIndexWithDefaults instantiates a new RestApplySuggestionRequestSuggestionIndex object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestApplySuggestionRequestSuggestionIndex) GetAsInt ¶

GetAsInt returns the AsInt field value if set, zero value otherwise.

func (*RestApplySuggestionRequestSuggestionIndex) GetAsIntOk ¶

GetAsIntOk returns a tuple with the AsInt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequestSuggestionIndex) GetPresent ¶

GetPresent returns the Present field value if set, zero value otherwise.

func (*RestApplySuggestionRequestSuggestionIndex) GetPresentOk ¶

func (o *RestApplySuggestionRequestSuggestionIndex) GetPresentOk() (*bool, bool)

GetPresentOk returns a tuple with the Present field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestApplySuggestionRequestSuggestionIndex) HasAsInt ¶

HasAsInt returns a boolean if a field has been set.

func (*RestApplySuggestionRequestSuggestionIndex) HasPresent ¶

HasPresent returns a boolean if a field has been set.

func (RestApplySuggestionRequestSuggestionIndex) MarshalJSON ¶

func (*RestApplySuggestionRequestSuggestionIndex) SetAsInt ¶

SetAsInt gets a reference to the given int32 and assigns it to the AsInt field.

func (*RestApplySuggestionRequestSuggestionIndex) SetPresent ¶

SetPresent gets a reference to the given bool and assigns it to the Present field.

func (RestApplySuggestionRequestSuggestionIndex) ToMap ¶

func (o RestApplySuggestionRequestSuggestionIndex) ToMap() (map[string]interface{}, error)

type RestAttachmentMetadata ¶

type RestAttachmentMetadata struct {
	Id       *int64  `json:"id,omitempty"`
	Metadata *string `json:"metadata,omitempty"`
	Url      *string `json:"url,omitempty"`
}

RestAttachmentMetadata struct for RestAttachmentMetadata

func NewRestAttachmentMetadata ¶

func NewRestAttachmentMetadata() *RestAttachmentMetadata

NewRestAttachmentMetadata instantiates a new RestAttachmentMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAttachmentMetadataWithDefaults ¶

func NewRestAttachmentMetadataWithDefaults() *RestAttachmentMetadata

NewRestAttachmentMetadataWithDefaults instantiates a new RestAttachmentMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAttachmentMetadata) GetId ¶

func (o *RestAttachmentMetadata) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestAttachmentMetadata) GetIdOk ¶

func (o *RestAttachmentMetadata) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAttachmentMetadata) GetMetadata ¶

func (o *RestAttachmentMetadata) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*RestAttachmentMetadata) GetMetadataOk ¶

func (o *RestAttachmentMetadata) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAttachmentMetadata) GetUrl ¶

func (o *RestAttachmentMetadata) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*RestAttachmentMetadata) GetUrlOk ¶

func (o *RestAttachmentMetadata) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAttachmentMetadata) HasId ¶

func (o *RestAttachmentMetadata) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestAttachmentMetadata) HasMetadata ¶

func (o *RestAttachmentMetadata) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*RestAttachmentMetadata) HasUrl ¶

func (o *RestAttachmentMetadata) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (RestAttachmentMetadata) MarshalJSON ¶

func (o RestAttachmentMetadata) MarshalJSON() ([]byte, error)

func (*RestAttachmentMetadata) SetId ¶

func (o *RestAttachmentMetadata) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestAttachmentMetadata) SetMetadata ¶

func (o *RestAttachmentMetadata) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (*RestAttachmentMetadata) SetUrl ¶

func (o *RestAttachmentMetadata) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (RestAttachmentMetadata) ToMap ¶

func (o RestAttachmentMetadata) ToMap() (map[string]interface{}, error)

type RestAuthenticationRequest ¶

type RestAuthenticationRequest struct {
	Credentials             Credentials `json:"credentials"`
	RepositoryId            *int32      `json:"repositoryId,omitempty"`
	RequiredPermissionsOnly *bool       `json:"requiredPermissionsOnly,omitempty"`
}

RestAuthenticationRequest struct for RestAuthenticationRequest

func NewRestAuthenticationRequest ¶

func NewRestAuthenticationRequest(credentials Credentials) *RestAuthenticationRequest

NewRestAuthenticationRequest instantiates a new RestAuthenticationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAuthenticationRequestWithDefaults ¶

func NewRestAuthenticationRequestWithDefaults() *RestAuthenticationRequest

NewRestAuthenticationRequestWithDefaults instantiates a new RestAuthenticationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAuthenticationRequest) GetCredentials ¶

func (o *RestAuthenticationRequest) GetCredentials() Credentials

GetCredentials returns the Credentials field value

func (*RestAuthenticationRequest) GetCredentialsOk ¶

func (o *RestAuthenticationRequest) GetCredentialsOk() (*Credentials, bool)

GetCredentialsOk returns a tuple with the Credentials field value and a boolean to check if the value has been set.

func (*RestAuthenticationRequest) GetRepositoryId ¶

func (o *RestAuthenticationRequest) GetRepositoryId() int32

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*RestAuthenticationRequest) GetRepositoryIdOk ¶

func (o *RestAuthenticationRequest) GetRepositoryIdOk() (*int32, bool)

GetRepositoryIdOk returns a tuple with the RepositoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAuthenticationRequest) GetRequiredPermissionsOnly ¶

func (o *RestAuthenticationRequest) GetRequiredPermissionsOnly() bool

GetRequiredPermissionsOnly returns the RequiredPermissionsOnly field value if set, zero value otherwise.

func (*RestAuthenticationRequest) GetRequiredPermissionsOnlyOk ¶

func (o *RestAuthenticationRequest) GetRequiredPermissionsOnlyOk() (*bool, bool)

GetRequiredPermissionsOnlyOk returns a tuple with the RequiredPermissionsOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAuthenticationRequest) HasRepositoryId ¶

func (o *RestAuthenticationRequest) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*RestAuthenticationRequest) HasRequiredPermissionsOnly ¶

func (o *RestAuthenticationRequest) HasRequiredPermissionsOnly() bool

HasRequiredPermissionsOnly returns a boolean if a field has been set.

func (RestAuthenticationRequest) MarshalJSON ¶

func (o RestAuthenticationRequest) MarshalJSON() ([]byte, error)

func (*RestAuthenticationRequest) SetCredentials ¶

func (o *RestAuthenticationRequest) SetCredentials(v Credentials)

SetCredentials sets field value

func (*RestAuthenticationRequest) SetRepositoryId ¶

func (o *RestAuthenticationRequest) SetRepositoryId(v int32)

SetRepositoryId gets a reference to the given int32 and assigns it to the RepositoryId field.

func (*RestAuthenticationRequest) SetRequiredPermissionsOnly ¶

func (o *RestAuthenticationRequest) SetRequiredPermissionsOnly(v bool)

SetRequiredPermissionsOnly gets a reference to the given bool and assigns it to the RequiredPermissionsOnly field.

func (RestAuthenticationRequest) ToMap ¶

func (o RestAuthenticationRequest) ToMap() (map[string]interface{}, error)

type RestAutoDeclineSettings ¶

type RestAutoDeclineSettings struct {
	InactivityWeeks *int32                        `json:"inactivityWeeks,omitempty"`
	Enabled         *bool                         `json:"enabled,omitempty"`
	Scope           *RestAutoDeclineSettingsScope `json:"scope,omitempty"`
}

RestAutoDeclineSettings struct for RestAutoDeclineSettings

func NewRestAutoDeclineSettings ¶

func NewRestAutoDeclineSettings() *RestAutoDeclineSettings

NewRestAutoDeclineSettings instantiates a new RestAutoDeclineSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAutoDeclineSettingsWithDefaults ¶

func NewRestAutoDeclineSettingsWithDefaults() *RestAutoDeclineSettings

NewRestAutoDeclineSettingsWithDefaults instantiates a new RestAutoDeclineSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAutoDeclineSettings) GetEnabled ¶

func (o *RestAutoDeclineSettings) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestAutoDeclineSettings) GetEnabledOk ¶

func (o *RestAutoDeclineSettings) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAutoDeclineSettings) GetInactivityWeeks ¶

func (o *RestAutoDeclineSettings) GetInactivityWeeks() int32

GetInactivityWeeks returns the InactivityWeeks field value if set, zero value otherwise.

func (*RestAutoDeclineSettings) GetInactivityWeeksOk ¶

func (o *RestAutoDeclineSettings) GetInactivityWeeksOk() (*int32, bool)

GetInactivityWeeksOk returns a tuple with the InactivityWeeks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAutoDeclineSettings) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestAutoDeclineSettings) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAutoDeclineSettings) HasEnabled ¶

func (o *RestAutoDeclineSettings) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*RestAutoDeclineSettings) HasInactivityWeeks ¶

func (o *RestAutoDeclineSettings) HasInactivityWeeks() bool

HasInactivityWeeks returns a boolean if a field has been set.

func (*RestAutoDeclineSettings) HasScope ¶

func (o *RestAutoDeclineSettings) HasScope() bool

HasScope returns a boolean if a field has been set.

func (RestAutoDeclineSettings) MarshalJSON ¶

func (o RestAutoDeclineSettings) MarshalJSON() ([]byte, error)

func (*RestAutoDeclineSettings) SetEnabled ¶

func (o *RestAutoDeclineSettings) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestAutoDeclineSettings) SetInactivityWeeks ¶

func (o *RestAutoDeclineSettings) SetInactivityWeeks(v int32)

SetInactivityWeeks gets a reference to the given int32 and assigns it to the InactivityWeeks field.

func (*RestAutoDeclineSettings) SetScope ¶

SetScope gets a reference to the given RestAutoDeclineSettingsScope and assigns it to the Scope field.

func (RestAutoDeclineSettings) ToMap ¶

func (o RestAutoDeclineSettings) ToMap() (map[string]interface{}, error)

type RestAutoDeclineSettingsRequest ¶

type RestAutoDeclineSettingsRequest struct {
	Enabled         *bool  `json:"enabled,omitempty"`
	InactivityWeeks *int32 `json:"inactivityWeeks,omitempty"`
}

RestAutoDeclineSettingsRequest struct for RestAutoDeclineSettingsRequest

func NewRestAutoDeclineSettingsRequest ¶

func NewRestAutoDeclineSettingsRequest() *RestAutoDeclineSettingsRequest

NewRestAutoDeclineSettingsRequest instantiates a new RestAutoDeclineSettingsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAutoDeclineSettingsRequestWithDefaults ¶

func NewRestAutoDeclineSettingsRequestWithDefaults() *RestAutoDeclineSettingsRequest

NewRestAutoDeclineSettingsRequestWithDefaults instantiates a new RestAutoDeclineSettingsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAutoDeclineSettingsRequest) GetEnabled ¶

func (o *RestAutoDeclineSettingsRequest) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestAutoDeclineSettingsRequest) GetEnabledOk ¶

func (o *RestAutoDeclineSettingsRequest) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAutoDeclineSettingsRequest) GetInactivityWeeks ¶

func (o *RestAutoDeclineSettingsRequest) GetInactivityWeeks() int32

GetInactivityWeeks returns the InactivityWeeks field value if set, zero value otherwise.

func (*RestAutoDeclineSettingsRequest) GetInactivityWeeksOk ¶

func (o *RestAutoDeclineSettingsRequest) GetInactivityWeeksOk() (*int32, bool)

GetInactivityWeeksOk returns a tuple with the InactivityWeeks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAutoDeclineSettingsRequest) HasEnabled ¶

func (o *RestAutoDeclineSettingsRequest) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*RestAutoDeclineSettingsRequest) HasInactivityWeeks ¶

func (o *RestAutoDeclineSettingsRequest) HasInactivityWeeks() bool

HasInactivityWeeks returns a boolean if a field has been set.

func (RestAutoDeclineSettingsRequest) MarshalJSON ¶

func (o RestAutoDeclineSettingsRequest) MarshalJSON() ([]byte, error)

func (*RestAutoDeclineSettingsRequest) SetEnabled ¶

func (o *RestAutoDeclineSettingsRequest) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestAutoDeclineSettingsRequest) SetInactivityWeeks ¶

func (o *RestAutoDeclineSettingsRequest) SetInactivityWeeks(v int32)

SetInactivityWeeks gets a reference to the given int32 and assigns it to the InactivityWeeks field.

func (RestAutoDeclineSettingsRequest) ToMap ¶

func (o RestAutoDeclineSettingsRequest) ToMap() (map[string]interface{}, error)

type RestAutoDeclineSettingsScope ¶

type RestAutoDeclineSettingsScope struct {
	Type       *string `json:"type,omitempty"`
	ResourceId *int32  `json:"resourceId,omitempty"`
}

RestAutoDeclineSettingsScope struct for RestAutoDeclineSettingsScope

func NewRestAutoDeclineSettingsScope ¶

func NewRestAutoDeclineSettingsScope() *RestAutoDeclineSettingsScope

NewRestAutoDeclineSettingsScope instantiates a new RestAutoDeclineSettingsScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestAutoDeclineSettingsScopeWithDefaults ¶

func NewRestAutoDeclineSettingsScopeWithDefaults() *RestAutoDeclineSettingsScope

NewRestAutoDeclineSettingsScopeWithDefaults instantiates a new RestAutoDeclineSettingsScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestAutoDeclineSettingsScope) GetResourceId ¶

func (o *RestAutoDeclineSettingsScope) GetResourceId() int32

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*RestAutoDeclineSettingsScope) GetResourceIdOk ¶

func (o *RestAutoDeclineSettingsScope) GetResourceIdOk() (*int32, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAutoDeclineSettingsScope) GetType ¶

func (o *RestAutoDeclineSettingsScope) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestAutoDeclineSettingsScope) GetTypeOk ¶

func (o *RestAutoDeclineSettingsScope) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestAutoDeclineSettingsScope) HasResourceId ¶

func (o *RestAutoDeclineSettingsScope) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (*RestAutoDeclineSettingsScope) HasType ¶

func (o *RestAutoDeclineSettingsScope) HasType() bool

HasType returns a boolean if a field has been set.

func (RestAutoDeclineSettingsScope) MarshalJSON ¶

func (o RestAutoDeclineSettingsScope) MarshalJSON() ([]byte, error)

func (*RestAutoDeclineSettingsScope) SetResourceId ¶

func (o *RestAutoDeclineSettingsScope) SetResourceId(v int32)

SetResourceId gets a reference to the given int32 and assigns it to the ResourceId field.

func (*RestAutoDeclineSettingsScope) SetType ¶

func (o *RestAutoDeclineSettingsScope) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestAutoDeclineSettingsScope) ToMap ¶

func (o RestAutoDeclineSettingsScope) ToMap() (map[string]interface{}, error)

type RestBearerTokenCredentials ¶

type RestBearerTokenCredentials struct {
	Token string `json:"token"`
}

RestBearerTokenCredentials struct for RestBearerTokenCredentials

func NewRestBearerTokenCredentials ¶

func NewRestBearerTokenCredentials(token string) *RestBearerTokenCredentials

NewRestBearerTokenCredentials instantiates a new RestBearerTokenCredentials object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBearerTokenCredentialsWithDefaults ¶

func NewRestBearerTokenCredentialsWithDefaults() *RestBearerTokenCredentials

NewRestBearerTokenCredentialsWithDefaults instantiates a new RestBearerTokenCredentials object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBearerTokenCredentials) GetToken ¶

func (o *RestBearerTokenCredentials) GetToken() string

GetToken returns the Token field value

func (*RestBearerTokenCredentials) GetTokenOk ¶

func (o *RestBearerTokenCredentials) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value and a boolean to check if the value has been set.

func (RestBearerTokenCredentials) MarshalJSON ¶

func (o RestBearerTokenCredentials) MarshalJSON() ([]byte, error)

func (*RestBearerTokenCredentials) SetToken ¶

func (o *RestBearerTokenCredentials) SetToken(v string)

SetToken sets field value

func (RestBearerTokenCredentials) ToMap ¶

func (o RestBearerTokenCredentials) ToMap() (map[string]interface{}, error)

type RestBitbucketLicense ¶

type RestBitbucketLicense struct {
	NumberOfDaysBeforeExpiry            *int32                      `json:"numberOfDaysBeforeExpiry,omitempty"`
	NumberOfDaysBeforeGracePeriodExpiry *int32                      `json:"numberOfDaysBeforeGracePeriodExpiry,omitempty"`
	NumberOfDaysBeforeMaintenanceExpiry *int32                      `json:"numberOfDaysBeforeMaintenanceExpiry,omitempty"`
	SupportEntitlementNumber            *string                     `json:"supportEntitlementNumber,omitempty"`
	UnlimitedNumberOfUsers              *bool                       `json:"unlimitedNumberOfUsers,omitempty"`
	ServerId                            *string                     `json:"serverId,omitempty"`
	CreationDate                        *int64                      `json:"creationDate,omitempty"`
	DaysBeforeExpiry                    *int32                      `json:"daysBeforeExpiry,omitempty"`
	ExpiryDate                          *int64                      `json:"expiryDate,omitempty"`
	GracePeriodEndDate                  *int64                      `json:"gracePeriodEndDate,omitempty"`
	MaintenanceExpiryDate               *int64                      `json:"maintenanceExpiryDate,omitempty"`
	MaximumNumberOfUsers                *int32                      `json:"maximumNumberOfUsers,omitempty"`
	PurchaseDate                        *int64                      `json:"purchaseDate,omitempty"`
	Status                              *RestBitbucketLicenseStatus `json:"status,omitempty"`
	License                             *string                     `json:"license,omitempty"`
}

RestBitbucketLicense struct for RestBitbucketLicense

func NewRestBitbucketLicense ¶

func NewRestBitbucketLicense() *RestBitbucketLicense

NewRestBitbucketLicense instantiates a new RestBitbucketLicense object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBitbucketLicenseWithDefaults ¶

func NewRestBitbucketLicenseWithDefaults() *RestBitbucketLicense

NewRestBitbucketLicenseWithDefaults instantiates a new RestBitbucketLicense object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBitbucketLicense) GetCreationDate ¶

func (o *RestBitbucketLicense) GetCreationDate() int64

GetCreationDate returns the CreationDate field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetCreationDateOk ¶

func (o *RestBitbucketLicense) GetCreationDateOk() (*int64, bool)

GetCreationDateOk returns a tuple with the CreationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetDaysBeforeExpiry ¶

func (o *RestBitbucketLicense) GetDaysBeforeExpiry() int32

GetDaysBeforeExpiry returns the DaysBeforeExpiry field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetDaysBeforeExpiryOk ¶

func (o *RestBitbucketLicense) GetDaysBeforeExpiryOk() (*int32, bool)

GetDaysBeforeExpiryOk returns a tuple with the DaysBeforeExpiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetExpiryDate ¶

func (o *RestBitbucketLicense) GetExpiryDate() int64

GetExpiryDate returns the ExpiryDate field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetExpiryDateOk ¶

func (o *RestBitbucketLicense) GetExpiryDateOk() (*int64, bool)

GetExpiryDateOk returns a tuple with the ExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetGracePeriodEndDate ¶

func (o *RestBitbucketLicense) GetGracePeriodEndDate() int64

GetGracePeriodEndDate returns the GracePeriodEndDate field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetGracePeriodEndDateOk ¶

func (o *RestBitbucketLicense) GetGracePeriodEndDateOk() (*int64, bool)

GetGracePeriodEndDateOk returns a tuple with the GracePeriodEndDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetLicense ¶

func (o *RestBitbucketLicense) GetLicense() string

GetLicense returns the License field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetLicenseOk ¶

func (o *RestBitbucketLicense) GetLicenseOk() (*string, bool)

GetLicenseOk returns a tuple with the License field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetMaintenanceExpiryDate ¶

func (o *RestBitbucketLicense) GetMaintenanceExpiryDate() int64

GetMaintenanceExpiryDate returns the MaintenanceExpiryDate field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetMaintenanceExpiryDateOk ¶

func (o *RestBitbucketLicense) GetMaintenanceExpiryDateOk() (*int64, bool)

GetMaintenanceExpiryDateOk returns a tuple with the MaintenanceExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetMaximumNumberOfUsers ¶

func (o *RestBitbucketLicense) GetMaximumNumberOfUsers() int32

GetMaximumNumberOfUsers returns the MaximumNumberOfUsers field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetMaximumNumberOfUsersOk ¶

func (o *RestBitbucketLicense) GetMaximumNumberOfUsersOk() (*int32, bool)

GetMaximumNumberOfUsersOk returns a tuple with the MaximumNumberOfUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetNumberOfDaysBeforeExpiry ¶

func (o *RestBitbucketLicense) GetNumberOfDaysBeforeExpiry() int32

GetNumberOfDaysBeforeExpiry returns the NumberOfDaysBeforeExpiry field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetNumberOfDaysBeforeExpiryOk ¶

func (o *RestBitbucketLicense) GetNumberOfDaysBeforeExpiryOk() (*int32, bool)

GetNumberOfDaysBeforeExpiryOk returns a tuple with the NumberOfDaysBeforeExpiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetNumberOfDaysBeforeGracePeriodExpiry ¶

func (o *RestBitbucketLicense) GetNumberOfDaysBeforeGracePeriodExpiry() int32

GetNumberOfDaysBeforeGracePeriodExpiry returns the NumberOfDaysBeforeGracePeriodExpiry field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetNumberOfDaysBeforeGracePeriodExpiryOk ¶

func (o *RestBitbucketLicense) GetNumberOfDaysBeforeGracePeriodExpiryOk() (*int32, bool)

GetNumberOfDaysBeforeGracePeriodExpiryOk returns a tuple with the NumberOfDaysBeforeGracePeriodExpiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetNumberOfDaysBeforeMaintenanceExpiry ¶

func (o *RestBitbucketLicense) GetNumberOfDaysBeforeMaintenanceExpiry() int32

GetNumberOfDaysBeforeMaintenanceExpiry returns the NumberOfDaysBeforeMaintenanceExpiry field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetNumberOfDaysBeforeMaintenanceExpiryOk ¶

func (o *RestBitbucketLicense) GetNumberOfDaysBeforeMaintenanceExpiryOk() (*int32, bool)

GetNumberOfDaysBeforeMaintenanceExpiryOk returns a tuple with the NumberOfDaysBeforeMaintenanceExpiry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetPurchaseDate ¶

func (o *RestBitbucketLicense) GetPurchaseDate() int64

GetPurchaseDate returns the PurchaseDate field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetPurchaseDateOk ¶

func (o *RestBitbucketLicense) GetPurchaseDateOk() (*int64, bool)

GetPurchaseDateOk returns a tuple with the PurchaseDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetServerId ¶

func (o *RestBitbucketLicense) GetServerId() string

GetServerId returns the ServerId field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetServerIdOk ¶

func (o *RestBitbucketLicense) GetServerIdOk() (*string, bool)

GetServerIdOk returns a tuple with the ServerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetStatusOk ¶

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetSupportEntitlementNumber ¶

func (o *RestBitbucketLicense) GetSupportEntitlementNumber() string

GetSupportEntitlementNumber returns the SupportEntitlementNumber field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetSupportEntitlementNumberOk ¶

func (o *RestBitbucketLicense) GetSupportEntitlementNumberOk() (*string, bool)

GetSupportEntitlementNumberOk returns a tuple with the SupportEntitlementNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) GetUnlimitedNumberOfUsers ¶

func (o *RestBitbucketLicense) GetUnlimitedNumberOfUsers() bool

GetUnlimitedNumberOfUsers returns the UnlimitedNumberOfUsers field value if set, zero value otherwise.

func (*RestBitbucketLicense) GetUnlimitedNumberOfUsersOk ¶

func (o *RestBitbucketLicense) GetUnlimitedNumberOfUsersOk() (*bool, bool)

GetUnlimitedNumberOfUsersOk returns a tuple with the UnlimitedNumberOfUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicense) HasCreationDate ¶

func (o *RestBitbucketLicense) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasDaysBeforeExpiry ¶

func (o *RestBitbucketLicense) HasDaysBeforeExpiry() bool

HasDaysBeforeExpiry returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasExpiryDate ¶

func (o *RestBitbucketLicense) HasExpiryDate() bool

HasExpiryDate returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasGracePeriodEndDate ¶

func (o *RestBitbucketLicense) HasGracePeriodEndDate() bool

HasGracePeriodEndDate returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasLicense ¶

func (o *RestBitbucketLicense) HasLicense() bool

HasLicense returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasMaintenanceExpiryDate ¶

func (o *RestBitbucketLicense) HasMaintenanceExpiryDate() bool

HasMaintenanceExpiryDate returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasMaximumNumberOfUsers ¶

func (o *RestBitbucketLicense) HasMaximumNumberOfUsers() bool

HasMaximumNumberOfUsers returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasNumberOfDaysBeforeExpiry ¶

func (o *RestBitbucketLicense) HasNumberOfDaysBeforeExpiry() bool

HasNumberOfDaysBeforeExpiry returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasNumberOfDaysBeforeGracePeriodExpiry ¶

func (o *RestBitbucketLicense) HasNumberOfDaysBeforeGracePeriodExpiry() bool

HasNumberOfDaysBeforeGracePeriodExpiry returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasNumberOfDaysBeforeMaintenanceExpiry ¶

func (o *RestBitbucketLicense) HasNumberOfDaysBeforeMaintenanceExpiry() bool

HasNumberOfDaysBeforeMaintenanceExpiry returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasPurchaseDate ¶

func (o *RestBitbucketLicense) HasPurchaseDate() bool

HasPurchaseDate returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasServerId ¶

func (o *RestBitbucketLicense) HasServerId() bool

HasServerId returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasStatus ¶

func (o *RestBitbucketLicense) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasSupportEntitlementNumber ¶

func (o *RestBitbucketLicense) HasSupportEntitlementNumber() bool

HasSupportEntitlementNumber returns a boolean if a field has been set.

func (*RestBitbucketLicense) HasUnlimitedNumberOfUsers ¶

func (o *RestBitbucketLicense) HasUnlimitedNumberOfUsers() bool

HasUnlimitedNumberOfUsers returns a boolean if a field has been set.

func (RestBitbucketLicense) MarshalJSON ¶

func (o RestBitbucketLicense) MarshalJSON() ([]byte, error)

func (*RestBitbucketLicense) SetCreationDate ¶

func (o *RestBitbucketLicense) SetCreationDate(v int64)

SetCreationDate gets a reference to the given int64 and assigns it to the CreationDate field.

func (*RestBitbucketLicense) SetDaysBeforeExpiry ¶

func (o *RestBitbucketLicense) SetDaysBeforeExpiry(v int32)

SetDaysBeforeExpiry gets a reference to the given int32 and assigns it to the DaysBeforeExpiry field.

func (*RestBitbucketLicense) SetExpiryDate ¶

func (o *RestBitbucketLicense) SetExpiryDate(v int64)

SetExpiryDate gets a reference to the given int64 and assigns it to the ExpiryDate field.

func (*RestBitbucketLicense) SetGracePeriodEndDate ¶

func (o *RestBitbucketLicense) SetGracePeriodEndDate(v int64)

SetGracePeriodEndDate gets a reference to the given int64 and assigns it to the GracePeriodEndDate field.

func (*RestBitbucketLicense) SetLicense ¶

func (o *RestBitbucketLicense) SetLicense(v string)

SetLicense gets a reference to the given string and assigns it to the License field.

func (*RestBitbucketLicense) SetMaintenanceExpiryDate ¶

func (o *RestBitbucketLicense) SetMaintenanceExpiryDate(v int64)

SetMaintenanceExpiryDate gets a reference to the given int64 and assigns it to the MaintenanceExpiryDate field.

func (*RestBitbucketLicense) SetMaximumNumberOfUsers ¶

func (o *RestBitbucketLicense) SetMaximumNumberOfUsers(v int32)

SetMaximumNumberOfUsers gets a reference to the given int32 and assigns it to the MaximumNumberOfUsers field.

func (*RestBitbucketLicense) SetNumberOfDaysBeforeExpiry ¶

func (o *RestBitbucketLicense) SetNumberOfDaysBeforeExpiry(v int32)

SetNumberOfDaysBeforeExpiry gets a reference to the given int32 and assigns it to the NumberOfDaysBeforeExpiry field.

func (*RestBitbucketLicense) SetNumberOfDaysBeforeGracePeriodExpiry ¶

func (o *RestBitbucketLicense) SetNumberOfDaysBeforeGracePeriodExpiry(v int32)

SetNumberOfDaysBeforeGracePeriodExpiry gets a reference to the given int32 and assigns it to the NumberOfDaysBeforeGracePeriodExpiry field.

func (*RestBitbucketLicense) SetNumberOfDaysBeforeMaintenanceExpiry ¶

func (o *RestBitbucketLicense) SetNumberOfDaysBeforeMaintenanceExpiry(v int32)

SetNumberOfDaysBeforeMaintenanceExpiry gets a reference to the given int32 and assigns it to the NumberOfDaysBeforeMaintenanceExpiry field.

func (*RestBitbucketLicense) SetPurchaseDate ¶

func (o *RestBitbucketLicense) SetPurchaseDate(v int64)

SetPurchaseDate gets a reference to the given int64 and assigns it to the PurchaseDate field.

func (*RestBitbucketLicense) SetServerId ¶

func (o *RestBitbucketLicense) SetServerId(v string)

SetServerId gets a reference to the given string and assigns it to the ServerId field.

func (*RestBitbucketLicense) SetStatus ¶

SetStatus gets a reference to the given RestBitbucketLicenseStatus and assigns it to the Status field.

func (*RestBitbucketLicense) SetSupportEntitlementNumber ¶

func (o *RestBitbucketLicense) SetSupportEntitlementNumber(v string)

SetSupportEntitlementNumber gets a reference to the given string and assigns it to the SupportEntitlementNumber field.

func (*RestBitbucketLicense) SetUnlimitedNumberOfUsers ¶

func (o *RestBitbucketLicense) SetUnlimitedNumberOfUsers(v bool)

SetUnlimitedNumberOfUsers gets a reference to the given bool and assigns it to the UnlimitedNumberOfUsers field.

func (RestBitbucketLicense) ToMap ¶

func (o RestBitbucketLicense) ToMap() (map[string]interface{}, error)

type RestBitbucketLicenseStatus ¶

type RestBitbucketLicenseStatus struct {
	ServerId             *string `json:"serverId,omitempty"`
	CurrentNumberOfUsers *int32  `json:"currentNumberOfUsers,omitempty"`
}

RestBitbucketLicenseStatus struct for RestBitbucketLicenseStatus

func NewRestBitbucketLicenseStatus ¶

func NewRestBitbucketLicenseStatus() *RestBitbucketLicenseStatus

NewRestBitbucketLicenseStatus instantiates a new RestBitbucketLicenseStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBitbucketLicenseStatusWithDefaults ¶

func NewRestBitbucketLicenseStatusWithDefaults() *RestBitbucketLicenseStatus

NewRestBitbucketLicenseStatusWithDefaults instantiates a new RestBitbucketLicenseStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBitbucketLicenseStatus) GetCurrentNumberOfUsers ¶

func (o *RestBitbucketLicenseStatus) GetCurrentNumberOfUsers() int32

GetCurrentNumberOfUsers returns the CurrentNumberOfUsers field value if set, zero value otherwise.

func (*RestBitbucketLicenseStatus) GetCurrentNumberOfUsersOk ¶

func (o *RestBitbucketLicenseStatus) GetCurrentNumberOfUsersOk() (*int32, bool)

GetCurrentNumberOfUsersOk returns a tuple with the CurrentNumberOfUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicenseStatus) GetServerId ¶

func (o *RestBitbucketLicenseStatus) GetServerId() string

GetServerId returns the ServerId field value if set, zero value otherwise.

func (*RestBitbucketLicenseStatus) GetServerIdOk ¶

func (o *RestBitbucketLicenseStatus) GetServerIdOk() (*string, bool)

GetServerIdOk returns a tuple with the ServerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBitbucketLicenseStatus) HasCurrentNumberOfUsers ¶

func (o *RestBitbucketLicenseStatus) HasCurrentNumberOfUsers() bool

HasCurrentNumberOfUsers returns a boolean if a field has been set.

func (*RestBitbucketLicenseStatus) HasServerId ¶

func (o *RestBitbucketLicenseStatus) HasServerId() bool

HasServerId returns a boolean if a field has been set.

func (RestBitbucketLicenseStatus) MarshalJSON ¶

func (o RestBitbucketLicenseStatus) MarshalJSON() ([]byte, error)

func (*RestBitbucketLicenseStatus) SetCurrentNumberOfUsers ¶

func (o *RestBitbucketLicenseStatus) SetCurrentNumberOfUsers(v int32)

SetCurrentNumberOfUsers gets a reference to the given int32 and assigns it to the CurrentNumberOfUsers field.

func (*RestBitbucketLicenseStatus) SetServerId ¶

func (o *RestBitbucketLicenseStatus) SetServerId(v string)

SetServerId gets a reference to the given string and assigns it to the ServerId field.

func (RestBitbucketLicenseStatus) ToMap ¶

func (o RestBitbucketLicenseStatus) ToMap() (map[string]interface{}, error)

type RestBranch ¶

type RestBranch struct {
	Default         *bool       `json:"default,omitempty"`
	Type            interface{} `json:"type,omitempty"`
	DisplayId       *string     `json:"displayId,omitempty"`
	LatestChangeset *string     `json:"latestChangeset,omitempty"`
	LatestCommit    *string     `json:"latestCommit,omitempty"`
	Id              *string     `json:"id,omitempty"`
}

RestBranch struct for RestBranch

func NewRestBranch ¶

func NewRestBranch() *RestBranch

NewRestBranch instantiates a new RestBranch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBranchWithDefaults ¶

func NewRestBranchWithDefaults() *RestBranch

NewRestBranchWithDefaults instantiates a new RestBranch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBranch) GetDefault ¶

func (o *RestBranch) GetDefault() bool

GetDefault returns the Default field value if set, zero value otherwise.

func (*RestBranch) GetDefaultOk ¶

func (o *RestBranch) GetDefaultOk() (*bool, bool)

GetDefaultOk returns a tuple with the Default field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranch) GetDisplayId ¶

func (o *RestBranch) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestBranch) GetDisplayIdOk ¶

func (o *RestBranch) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranch) GetId ¶

func (o *RestBranch) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestBranch) GetIdOk ¶

func (o *RestBranch) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranch) GetLatestChangeset ¶

func (o *RestBranch) GetLatestChangeset() string

GetLatestChangeset returns the LatestChangeset field value if set, zero value otherwise.

func (*RestBranch) GetLatestChangesetOk ¶

func (o *RestBranch) GetLatestChangesetOk() (*string, bool)

GetLatestChangesetOk returns a tuple with the LatestChangeset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranch) GetLatestCommit ¶

func (o *RestBranch) GetLatestCommit() string

GetLatestCommit returns the LatestCommit field value if set, zero value otherwise.

func (*RestBranch) GetLatestCommitOk ¶

func (o *RestBranch) GetLatestCommitOk() (*string, bool)

GetLatestCommitOk returns a tuple with the LatestCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranch) GetType ¶

func (o *RestBranch) GetType() interface{}

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*RestBranch) GetTypeOk ¶

func (o *RestBranch) GetTypeOk() (*interface{}, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*RestBranch) HasDefault ¶

func (o *RestBranch) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*RestBranch) HasDisplayId ¶

func (o *RestBranch) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestBranch) HasId ¶

func (o *RestBranch) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestBranch) HasLatestChangeset ¶

func (o *RestBranch) HasLatestChangeset() bool

HasLatestChangeset returns a boolean if a field has been set.

func (*RestBranch) HasLatestCommit ¶

func (o *RestBranch) HasLatestCommit() bool

HasLatestCommit returns a boolean if a field has been set.

func (*RestBranch) HasType ¶

func (o *RestBranch) HasType() bool

HasType returns a boolean if a field has been set.

func (RestBranch) MarshalJSON ¶

func (o RestBranch) MarshalJSON() ([]byte, error)

func (*RestBranch) SetDefault ¶

func (o *RestBranch) SetDefault(v bool)

SetDefault gets a reference to the given bool and assigns it to the Default field.

func (*RestBranch) SetDisplayId ¶

func (o *RestBranch) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestBranch) SetId ¶

func (o *RestBranch) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestBranch) SetLatestChangeset ¶

func (o *RestBranch) SetLatestChangeset(v string)

SetLatestChangeset gets a reference to the given string and assigns it to the LatestChangeset field.

func (*RestBranch) SetLatestCommit ¶

func (o *RestBranch) SetLatestCommit(v string)

SetLatestCommit gets a reference to the given string and assigns it to the LatestCommit field.

func (*RestBranch) SetType ¶

func (o *RestBranch) SetType(v interface{})

SetType gets a reference to the given interface{} and assigns it to the Type field.

func (RestBranch) ToMap ¶

func (o RestBranch) ToMap() (map[string]interface{}, error)

type RestBranchCreateRequest ¶

type RestBranchCreateRequest struct {
	// Name of the branch to be created
	Name *string `json:"name,omitempty"`
	// Commit ID from which the branch is created
	StartPoint *string `json:"startPoint,omitempty"`
}

RestBranchCreateRequest struct for RestBranchCreateRequest

func NewRestBranchCreateRequest ¶

func NewRestBranchCreateRequest() *RestBranchCreateRequest

NewRestBranchCreateRequest instantiates a new RestBranchCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBranchCreateRequestWithDefaults ¶

func NewRestBranchCreateRequestWithDefaults() *RestBranchCreateRequest

NewRestBranchCreateRequestWithDefaults instantiates a new RestBranchCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBranchCreateRequest) GetName ¶

func (o *RestBranchCreateRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestBranchCreateRequest) GetNameOk ¶

func (o *RestBranchCreateRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranchCreateRequest) GetStartPoint ¶

func (o *RestBranchCreateRequest) GetStartPoint() string

GetStartPoint returns the StartPoint field value if set, zero value otherwise.

func (*RestBranchCreateRequest) GetStartPointOk ¶

func (o *RestBranchCreateRequest) GetStartPointOk() (*string, bool)

GetStartPointOk returns a tuple with the StartPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranchCreateRequest) HasName ¶

func (o *RestBranchCreateRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestBranchCreateRequest) HasStartPoint ¶

func (o *RestBranchCreateRequest) HasStartPoint() bool

HasStartPoint returns a boolean if a field has been set.

func (RestBranchCreateRequest) MarshalJSON ¶

func (o RestBranchCreateRequest) MarshalJSON() ([]byte, error)

func (*RestBranchCreateRequest) SetName ¶

func (o *RestBranchCreateRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestBranchCreateRequest) SetStartPoint ¶

func (o *RestBranchCreateRequest) SetStartPoint(v string)

SetStartPoint gets a reference to the given string and assigns it to the StartPoint field.

func (RestBranchCreateRequest) ToMap ¶

func (o RestBranchCreateRequest) ToMap() (map[string]interface{}, error)

type RestBranchDeleteRequest ¶

type RestBranchDeleteRequest struct {
	// Don't actually delete the ref name, just do a dry run
	DryRun *bool `json:"dryRun,omitempty"`
	// Commit ID that the provided ref name is expected to point to
	EndPoint *string `json:"endPoint,omitempty"`
	// Name of the ref to be deleted
	Name *string `json:"name,omitempty"`
}

RestBranchDeleteRequest struct for RestBranchDeleteRequest

func NewRestBranchDeleteRequest ¶

func NewRestBranchDeleteRequest() *RestBranchDeleteRequest

NewRestBranchDeleteRequest instantiates a new RestBranchDeleteRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBranchDeleteRequestWithDefaults ¶

func NewRestBranchDeleteRequestWithDefaults() *RestBranchDeleteRequest

NewRestBranchDeleteRequestWithDefaults instantiates a new RestBranchDeleteRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBranchDeleteRequest) GetDryRun ¶

func (o *RestBranchDeleteRequest) GetDryRun() bool

GetDryRun returns the DryRun field value if set, zero value otherwise.

func (*RestBranchDeleteRequest) GetDryRunOk ¶

func (o *RestBranchDeleteRequest) GetDryRunOk() (*bool, bool)

GetDryRunOk returns a tuple with the DryRun field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranchDeleteRequest) GetEndPoint ¶

func (o *RestBranchDeleteRequest) GetEndPoint() string

GetEndPoint returns the EndPoint field value if set, zero value otherwise.

func (*RestBranchDeleteRequest) GetEndPointOk ¶

func (o *RestBranchDeleteRequest) GetEndPointOk() (*string, bool)

GetEndPointOk returns a tuple with the EndPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranchDeleteRequest) GetName ¶

func (o *RestBranchDeleteRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestBranchDeleteRequest) GetNameOk ¶

func (o *RestBranchDeleteRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBranchDeleteRequest) HasDryRun ¶

func (o *RestBranchDeleteRequest) HasDryRun() bool

HasDryRun returns a boolean if a field has been set.

func (*RestBranchDeleteRequest) HasEndPoint ¶

func (o *RestBranchDeleteRequest) HasEndPoint() bool

HasEndPoint returns a boolean if a field has been set.

func (*RestBranchDeleteRequest) HasName ¶

func (o *RestBranchDeleteRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (RestBranchDeleteRequest) MarshalJSON ¶

func (o RestBranchDeleteRequest) MarshalJSON() ([]byte, error)

func (*RestBranchDeleteRequest) SetDryRun ¶

func (o *RestBranchDeleteRequest) SetDryRun(v bool)

SetDryRun gets a reference to the given bool and assigns it to the DryRun field.

func (*RestBranchDeleteRequest) SetEndPoint ¶

func (o *RestBranchDeleteRequest) SetEndPoint(v string)

SetEndPoint gets a reference to the given string and assigns it to the EndPoint field.

func (*RestBranchDeleteRequest) SetName ¶

func (o *RestBranchDeleteRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestBranchDeleteRequest) ToMap ¶

func (o RestBranchDeleteRequest) ToMap() (map[string]interface{}, error)

type RestBuildCapabilities ¶

type RestBuildCapabilities struct {
	BuildStatus []string `json:"buildStatus,omitempty"`
}

RestBuildCapabilities struct for RestBuildCapabilities

func NewRestBuildCapabilities ¶

func NewRestBuildCapabilities() *RestBuildCapabilities

NewRestBuildCapabilities instantiates a new RestBuildCapabilities object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBuildCapabilitiesWithDefaults ¶

func NewRestBuildCapabilitiesWithDefaults() *RestBuildCapabilities

NewRestBuildCapabilitiesWithDefaults instantiates a new RestBuildCapabilities object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBuildCapabilities) GetBuildStatus ¶

func (o *RestBuildCapabilities) GetBuildStatus() []string

GetBuildStatus returns the BuildStatus field value if set, zero value otherwise.

func (*RestBuildCapabilities) GetBuildStatusOk ¶

func (o *RestBuildCapabilities) GetBuildStatusOk() ([]string, bool)

GetBuildStatusOk returns a tuple with the BuildStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildCapabilities) HasBuildStatus ¶

func (o *RestBuildCapabilities) HasBuildStatus() bool

HasBuildStatus returns a boolean if a field has been set.

func (RestBuildCapabilities) MarshalJSON ¶

func (o RestBuildCapabilities) MarshalJSON() ([]byte, error)

func (*RestBuildCapabilities) SetBuildStatus ¶

func (o *RestBuildCapabilities) SetBuildStatus(v []string)

SetBuildStatus gets a reference to the given []string and assigns it to the BuildStatus field.

func (RestBuildCapabilities) ToMap ¶

func (o RestBuildCapabilities) ToMap() (map[string]interface{}, error)

type RestBuildStats ¶

type RestBuildStats struct {
	Cancelled  *int32 `json:"cancelled,omitempty"`
	Successful *int32 `json:"successful,omitempty"`
	InProgress *int32 `json:"inProgress,omitempty"`
	Failed     *int32 `json:"failed,omitempty"`
	Unknown    *int32 `json:"unknown,omitempty"`
}

RestBuildStats struct for RestBuildStats

func NewRestBuildStats ¶

func NewRestBuildStats() *RestBuildStats

NewRestBuildStats instantiates a new RestBuildStats object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBuildStatsWithDefaults ¶

func NewRestBuildStatsWithDefaults() *RestBuildStats

NewRestBuildStatsWithDefaults instantiates a new RestBuildStats object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBuildStats) GetCancelled ¶

func (o *RestBuildStats) GetCancelled() int32

GetCancelled returns the Cancelled field value if set, zero value otherwise.

func (*RestBuildStats) GetCancelledOk ¶

func (o *RestBuildStats) GetCancelledOk() (*int32, bool)

GetCancelledOk returns a tuple with the Cancelled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStats) GetFailed ¶

func (o *RestBuildStats) GetFailed() int32

GetFailed returns the Failed field value if set, zero value otherwise.

func (*RestBuildStats) GetFailedOk ¶

func (o *RestBuildStats) GetFailedOk() (*int32, bool)

GetFailedOk returns a tuple with the Failed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStats) GetInProgress ¶

func (o *RestBuildStats) GetInProgress() int32

GetInProgress returns the InProgress field value if set, zero value otherwise.

func (*RestBuildStats) GetInProgressOk ¶

func (o *RestBuildStats) GetInProgressOk() (*int32, bool)

GetInProgressOk returns a tuple with the InProgress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStats) GetSuccessful ¶

func (o *RestBuildStats) GetSuccessful() int32

GetSuccessful returns the Successful field value if set, zero value otherwise.

func (*RestBuildStats) GetSuccessfulOk ¶

func (o *RestBuildStats) GetSuccessfulOk() (*int32, bool)

GetSuccessfulOk returns a tuple with the Successful field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStats) GetUnknown ¶

func (o *RestBuildStats) GetUnknown() int32

GetUnknown returns the Unknown field value if set, zero value otherwise.

func (*RestBuildStats) GetUnknownOk ¶

func (o *RestBuildStats) GetUnknownOk() (*int32, bool)

GetUnknownOk returns a tuple with the Unknown field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStats) HasCancelled ¶

func (o *RestBuildStats) HasCancelled() bool

HasCancelled returns a boolean if a field has been set.

func (*RestBuildStats) HasFailed ¶

func (o *RestBuildStats) HasFailed() bool

HasFailed returns a boolean if a field has been set.

func (*RestBuildStats) HasInProgress ¶

func (o *RestBuildStats) HasInProgress() bool

HasInProgress returns a boolean if a field has been set.

func (*RestBuildStats) HasSuccessful ¶

func (o *RestBuildStats) HasSuccessful() bool

HasSuccessful returns a boolean if a field has been set.

func (*RestBuildStats) HasUnknown ¶

func (o *RestBuildStats) HasUnknown() bool

HasUnknown returns a boolean if a field has been set.

func (RestBuildStats) MarshalJSON ¶

func (o RestBuildStats) MarshalJSON() ([]byte, error)

func (*RestBuildStats) SetCancelled ¶

func (o *RestBuildStats) SetCancelled(v int32)

SetCancelled gets a reference to the given int32 and assigns it to the Cancelled field.

func (*RestBuildStats) SetFailed ¶

func (o *RestBuildStats) SetFailed(v int32)

SetFailed gets a reference to the given int32 and assigns it to the Failed field.

func (*RestBuildStats) SetInProgress ¶

func (o *RestBuildStats) SetInProgress(v int32)

SetInProgress gets a reference to the given int32 and assigns it to the InProgress field.

func (*RestBuildStats) SetSuccessful ¶

func (o *RestBuildStats) SetSuccessful(v int32)

SetSuccessful gets a reference to the given int32 and assigns it to the Successful field.

func (*RestBuildStats) SetUnknown ¶

func (o *RestBuildStats) SetUnknown(v int32)

SetUnknown gets a reference to the given int32 and assigns it to the Unknown field.

func (RestBuildStats) ToMap ¶

func (o RestBuildStats) ToMap() (map[string]interface{}, error)

type RestBuildStatus ¶

type RestBuildStatus struct {
	Name        *string                     `json:"name,omitempty"`
	Key         *string                     `json:"key,omitempty"`
	Parent      *string                     `json:"parent,omitempty"`
	State       *string                     `json:"state,omitempty"`
	Ref         *string                     `json:"ref,omitempty"`
	TestResults *RestBuildStatusTestResults `json:"testResults,omitempty"`
	BuildNumber *string                     `json:"buildNumber,omitempty"`
	Description *string                     `json:"description,omitempty"`
	Duration    *int64                      `json:"duration,omitempty"`
	UpdatedDate *int64                      `json:"updatedDate,omitempty"`
	CreatedDate *int64                      `json:"createdDate,omitempty"`
	Url         *string                     `json:"url,omitempty"`
}

RestBuildStatus struct for RestBuildStatus

func NewRestBuildStatus ¶

func NewRestBuildStatus() *RestBuildStatus

NewRestBuildStatus instantiates a new RestBuildStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBuildStatusWithDefaults ¶

func NewRestBuildStatusWithDefaults() *RestBuildStatus

NewRestBuildStatusWithDefaults instantiates a new RestBuildStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBuildStatus) GetBuildNumber ¶

func (o *RestBuildStatus) GetBuildNumber() string

GetBuildNumber returns the BuildNumber field value if set, zero value otherwise.

func (*RestBuildStatus) GetBuildNumberOk ¶

func (o *RestBuildStatus) GetBuildNumberOk() (*string, bool)

GetBuildNumberOk returns a tuple with the BuildNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetCreatedDate ¶

func (o *RestBuildStatus) GetCreatedDate() int64

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestBuildStatus) GetCreatedDateOk ¶

func (o *RestBuildStatus) GetCreatedDateOk() (*int64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetDescription ¶

func (o *RestBuildStatus) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestBuildStatus) GetDescriptionOk ¶

func (o *RestBuildStatus) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetDuration ¶

func (o *RestBuildStatus) GetDuration() int64

GetDuration returns the Duration field value if set, zero value otherwise.

func (*RestBuildStatus) GetDurationOk ¶

func (o *RestBuildStatus) GetDurationOk() (*int64, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetKey ¶

func (o *RestBuildStatus) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*RestBuildStatus) GetKeyOk ¶

func (o *RestBuildStatus) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetName ¶

func (o *RestBuildStatus) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestBuildStatus) GetNameOk ¶

func (o *RestBuildStatus) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetParent ¶

func (o *RestBuildStatus) GetParent() string

GetParent returns the Parent field value if set, zero value otherwise.

func (*RestBuildStatus) GetParentOk ¶

func (o *RestBuildStatus) GetParentOk() (*string, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetRef ¶

func (o *RestBuildStatus) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*RestBuildStatus) GetRefOk ¶

func (o *RestBuildStatus) GetRefOk() (*string, bool)

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetState ¶

func (o *RestBuildStatus) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestBuildStatus) GetStateOk ¶

func (o *RestBuildStatus) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetTestResults ¶

func (o *RestBuildStatus) GetTestResults() RestBuildStatusTestResults

GetTestResults returns the TestResults field value if set, zero value otherwise.

func (*RestBuildStatus) GetTestResultsOk ¶

func (o *RestBuildStatus) GetTestResultsOk() (*RestBuildStatusTestResults, bool)

GetTestResultsOk returns a tuple with the TestResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetUpdatedDate ¶

func (o *RestBuildStatus) GetUpdatedDate() int64

GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.

func (*RestBuildStatus) GetUpdatedDateOk ¶

func (o *RestBuildStatus) GetUpdatedDateOk() (*int64, bool)

GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) GetUrl ¶

func (o *RestBuildStatus) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*RestBuildStatus) GetUrlOk ¶

func (o *RestBuildStatus) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatus) HasBuildNumber ¶

func (o *RestBuildStatus) HasBuildNumber() bool

HasBuildNumber returns a boolean if a field has been set.

func (*RestBuildStatus) HasCreatedDate ¶

func (o *RestBuildStatus) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestBuildStatus) HasDescription ¶

func (o *RestBuildStatus) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestBuildStatus) HasDuration ¶

func (o *RestBuildStatus) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*RestBuildStatus) HasKey ¶

func (o *RestBuildStatus) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*RestBuildStatus) HasName ¶

func (o *RestBuildStatus) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestBuildStatus) HasParent ¶

func (o *RestBuildStatus) HasParent() bool

HasParent returns a boolean if a field has been set.

func (*RestBuildStatus) HasRef ¶

func (o *RestBuildStatus) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*RestBuildStatus) HasState ¶

func (o *RestBuildStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestBuildStatus) HasTestResults ¶

func (o *RestBuildStatus) HasTestResults() bool

HasTestResults returns a boolean if a field has been set.

func (*RestBuildStatus) HasUpdatedDate ¶

func (o *RestBuildStatus) HasUpdatedDate() bool

HasUpdatedDate returns a boolean if a field has been set.

func (*RestBuildStatus) HasUrl ¶

func (o *RestBuildStatus) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (RestBuildStatus) MarshalJSON ¶

func (o RestBuildStatus) MarshalJSON() ([]byte, error)

func (*RestBuildStatus) SetBuildNumber ¶

func (o *RestBuildStatus) SetBuildNumber(v string)

SetBuildNumber gets a reference to the given string and assigns it to the BuildNumber field.

func (*RestBuildStatus) SetCreatedDate ¶

func (o *RestBuildStatus) SetCreatedDate(v int64)

SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.

func (*RestBuildStatus) SetDescription ¶

func (o *RestBuildStatus) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestBuildStatus) SetDuration ¶

func (o *RestBuildStatus) SetDuration(v int64)

SetDuration gets a reference to the given int64 and assigns it to the Duration field.

func (*RestBuildStatus) SetKey ¶

func (o *RestBuildStatus) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*RestBuildStatus) SetName ¶

func (o *RestBuildStatus) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestBuildStatus) SetParent ¶

func (o *RestBuildStatus) SetParent(v string)

SetParent gets a reference to the given string and assigns it to the Parent field.

func (*RestBuildStatus) SetRef ¶

func (o *RestBuildStatus) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*RestBuildStatus) SetState ¶

func (o *RestBuildStatus) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestBuildStatus) SetTestResults ¶

func (o *RestBuildStatus) SetTestResults(v RestBuildStatusTestResults)

SetTestResults gets a reference to the given RestBuildStatusTestResults and assigns it to the TestResults field.

func (*RestBuildStatus) SetUpdatedDate ¶

func (o *RestBuildStatus) SetUpdatedDate(v int64)

SetUpdatedDate gets a reference to the given int64 and assigns it to the UpdatedDate field.

func (*RestBuildStatus) SetUrl ¶

func (o *RestBuildStatus) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (RestBuildStatus) ToMap ¶

func (o RestBuildStatus) ToMap() (map[string]interface{}, error)

type RestBuildStatusSetRequest ¶

type RestBuildStatusSetRequest struct {
	BuildNumber *string                               `json:"buildNumber,omitempty"`
	Description *string                               `json:"description,omitempty"`
	Duration    *int64                                `json:"duration,omitempty"`
	Key         string                                `json:"key"`
	LastUpdated *int64                                `json:"lastUpdated,omitempty"`
	Name        *string                               `json:"name,omitempty"`
	Parent      *string                               `json:"parent,omitempty"`
	Ref         *string                               `json:"ref,omitempty"`
	State       string                                `json:"state"`
	TestResults *RestBuildStatusSetRequestTestResults `json:"testResults,omitempty"`
	Url         string                                `json:"url"`
}

RestBuildStatusSetRequest struct for RestBuildStatusSetRequest

func NewRestBuildStatusSetRequest ¶

func NewRestBuildStatusSetRequest(key string, state string, url string) *RestBuildStatusSetRequest

NewRestBuildStatusSetRequest instantiates a new RestBuildStatusSetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBuildStatusSetRequestWithDefaults ¶

func NewRestBuildStatusSetRequestWithDefaults() *RestBuildStatusSetRequest

NewRestBuildStatusSetRequestWithDefaults instantiates a new RestBuildStatusSetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBuildStatusSetRequest) GetBuildNumber ¶

func (o *RestBuildStatusSetRequest) GetBuildNumber() string

GetBuildNumber returns the BuildNumber field value if set, zero value otherwise.

func (*RestBuildStatusSetRequest) GetBuildNumberOk ¶

func (o *RestBuildStatusSetRequest) GetBuildNumberOk() (*string, bool)

GetBuildNumberOk returns a tuple with the BuildNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetDescription ¶

func (o *RestBuildStatusSetRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestBuildStatusSetRequest) GetDescriptionOk ¶

func (o *RestBuildStatusSetRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetDuration ¶

func (o *RestBuildStatusSetRequest) GetDuration() int64

GetDuration returns the Duration field value if set, zero value otherwise.

func (*RestBuildStatusSetRequest) GetDurationOk ¶

func (o *RestBuildStatusSetRequest) GetDurationOk() (*int64, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetKey ¶

func (o *RestBuildStatusSetRequest) GetKey() string

GetKey returns the Key field value

func (*RestBuildStatusSetRequest) GetKeyOk ¶

func (o *RestBuildStatusSetRequest) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetLastUpdated ¶

func (o *RestBuildStatusSetRequest) GetLastUpdated() int64

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*RestBuildStatusSetRequest) GetLastUpdatedOk ¶

func (o *RestBuildStatusSetRequest) GetLastUpdatedOk() (*int64, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetName ¶

func (o *RestBuildStatusSetRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestBuildStatusSetRequest) GetNameOk ¶

func (o *RestBuildStatusSetRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetParent ¶

func (o *RestBuildStatusSetRequest) GetParent() string

GetParent returns the Parent field value if set, zero value otherwise.

func (*RestBuildStatusSetRequest) GetParentOk ¶

func (o *RestBuildStatusSetRequest) GetParentOk() (*string, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetRef ¶

func (o *RestBuildStatusSetRequest) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*RestBuildStatusSetRequest) GetRefOk ¶

func (o *RestBuildStatusSetRequest) GetRefOk() (*string, bool)

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetState ¶

func (o *RestBuildStatusSetRequest) GetState() string

GetState returns the State field value

func (*RestBuildStatusSetRequest) GetStateOk ¶

func (o *RestBuildStatusSetRequest) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetTestResults ¶

GetTestResults returns the TestResults field value if set, zero value otherwise.

func (*RestBuildStatusSetRequest) GetTestResultsOk ¶

GetTestResultsOk returns a tuple with the TestResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) GetUrl ¶

func (o *RestBuildStatusSetRequest) GetUrl() string

GetUrl returns the Url field value

func (*RestBuildStatusSetRequest) GetUrlOk ¶

func (o *RestBuildStatusSetRequest) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequest) HasBuildNumber ¶

func (o *RestBuildStatusSetRequest) HasBuildNumber() bool

HasBuildNumber returns a boolean if a field has been set.

func (*RestBuildStatusSetRequest) HasDescription ¶

func (o *RestBuildStatusSetRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestBuildStatusSetRequest) HasDuration ¶

func (o *RestBuildStatusSetRequest) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*RestBuildStatusSetRequest) HasLastUpdated ¶

func (o *RestBuildStatusSetRequest) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*RestBuildStatusSetRequest) HasName ¶

func (o *RestBuildStatusSetRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestBuildStatusSetRequest) HasParent ¶

func (o *RestBuildStatusSetRequest) HasParent() bool

HasParent returns a boolean if a field has been set.

func (*RestBuildStatusSetRequest) HasRef ¶

func (o *RestBuildStatusSetRequest) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*RestBuildStatusSetRequest) HasTestResults ¶

func (o *RestBuildStatusSetRequest) HasTestResults() bool

HasTestResults returns a boolean if a field has been set.

func (RestBuildStatusSetRequest) MarshalJSON ¶

func (o RestBuildStatusSetRequest) MarshalJSON() ([]byte, error)

func (*RestBuildStatusSetRequest) SetBuildNumber ¶

func (o *RestBuildStatusSetRequest) SetBuildNumber(v string)

SetBuildNumber gets a reference to the given string and assigns it to the BuildNumber field.

func (*RestBuildStatusSetRequest) SetDescription ¶

func (o *RestBuildStatusSetRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestBuildStatusSetRequest) SetDuration ¶

func (o *RestBuildStatusSetRequest) SetDuration(v int64)

SetDuration gets a reference to the given int64 and assigns it to the Duration field.

func (*RestBuildStatusSetRequest) SetKey ¶

func (o *RestBuildStatusSetRequest) SetKey(v string)

SetKey sets field value

func (*RestBuildStatusSetRequest) SetLastUpdated ¶

func (o *RestBuildStatusSetRequest) SetLastUpdated(v int64)

SetLastUpdated gets a reference to the given int64 and assigns it to the LastUpdated field.

func (*RestBuildStatusSetRequest) SetName ¶

func (o *RestBuildStatusSetRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestBuildStatusSetRequest) SetParent ¶

func (o *RestBuildStatusSetRequest) SetParent(v string)

SetParent gets a reference to the given string and assigns it to the Parent field.

func (*RestBuildStatusSetRequest) SetRef ¶

func (o *RestBuildStatusSetRequest) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*RestBuildStatusSetRequest) SetState ¶

func (o *RestBuildStatusSetRequest) SetState(v string)

SetState sets field value

func (*RestBuildStatusSetRequest) SetTestResults ¶

SetTestResults gets a reference to the given RestBuildStatusSetRequestTestResults and assigns it to the TestResults field.

func (*RestBuildStatusSetRequest) SetUrl ¶

func (o *RestBuildStatusSetRequest) SetUrl(v string)

SetUrl sets field value

func (RestBuildStatusSetRequest) ToMap ¶

func (o RestBuildStatusSetRequest) ToMap() (map[string]interface{}, error)

type RestBuildStatusSetRequestTestResults ¶

type RestBuildStatusSetRequestTestResults struct {
	Failed     *int32 `json:"failed,omitempty"`
	Skipped    *int32 `json:"skipped,omitempty"`
	Successful *int32 `json:"successful,omitempty"`
}

RestBuildStatusSetRequestTestResults struct for RestBuildStatusSetRequestTestResults

func NewRestBuildStatusSetRequestTestResults ¶

func NewRestBuildStatusSetRequestTestResults() *RestBuildStatusSetRequestTestResults

NewRestBuildStatusSetRequestTestResults instantiates a new RestBuildStatusSetRequestTestResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBuildStatusSetRequestTestResultsWithDefaults ¶

func NewRestBuildStatusSetRequestTestResultsWithDefaults() *RestBuildStatusSetRequestTestResults

NewRestBuildStatusSetRequestTestResultsWithDefaults instantiates a new RestBuildStatusSetRequestTestResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBuildStatusSetRequestTestResults) GetFailed ¶

GetFailed returns the Failed field value if set, zero value otherwise.

func (*RestBuildStatusSetRequestTestResults) GetFailedOk ¶

func (o *RestBuildStatusSetRequestTestResults) GetFailedOk() (*int32, bool)

GetFailedOk returns a tuple with the Failed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequestTestResults) GetSkipped ¶

GetSkipped returns the Skipped field value if set, zero value otherwise.

func (*RestBuildStatusSetRequestTestResults) GetSkippedOk ¶

func (o *RestBuildStatusSetRequestTestResults) GetSkippedOk() (*int32, bool)

GetSkippedOk returns a tuple with the Skipped field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequestTestResults) GetSuccessful ¶

func (o *RestBuildStatusSetRequestTestResults) GetSuccessful() int32

GetSuccessful returns the Successful field value if set, zero value otherwise.

func (*RestBuildStatusSetRequestTestResults) GetSuccessfulOk ¶

func (o *RestBuildStatusSetRequestTestResults) GetSuccessfulOk() (*int32, bool)

GetSuccessfulOk returns a tuple with the Successful field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusSetRequestTestResults) HasFailed ¶

HasFailed returns a boolean if a field has been set.

func (*RestBuildStatusSetRequestTestResults) HasSkipped ¶

HasSkipped returns a boolean if a field has been set.

func (*RestBuildStatusSetRequestTestResults) HasSuccessful ¶

func (o *RestBuildStatusSetRequestTestResults) HasSuccessful() bool

HasSuccessful returns a boolean if a field has been set.

func (RestBuildStatusSetRequestTestResults) MarshalJSON ¶

func (o RestBuildStatusSetRequestTestResults) MarshalJSON() ([]byte, error)

func (*RestBuildStatusSetRequestTestResults) SetFailed ¶

SetFailed gets a reference to the given int32 and assigns it to the Failed field.

func (*RestBuildStatusSetRequestTestResults) SetSkipped ¶

SetSkipped gets a reference to the given int32 and assigns it to the Skipped field.

func (*RestBuildStatusSetRequestTestResults) SetSuccessful ¶

func (o *RestBuildStatusSetRequestTestResults) SetSuccessful(v int32)

SetSuccessful gets a reference to the given int32 and assigns it to the Successful field.

func (RestBuildStatusSetRequestTestResults) ToMap ¶

func (o RestBuildStatusSetRequestTestResults) ToMap() (map[string]interface{}, error)

type RestBuildStatusTestResults ¶

type RestBuildStatusTestResults struct {
	Skipped    *int32 `json:"skipped,omitempty"`
	Successful *int32 `json:"successful,omitempty"`
	Failed     *int32 `json:"failed,omitempty"`
}

RestBuildStatusTestResults struct for RestBuildStatusTestResults

func NewRestBuildStatusTestResults ¶

func NewRestBuildStatusTestResults() *RestBuildStatusTestResults

NewRestBuildStatusTestResults instantiates a new RestBuildStatusTestResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBuildStatusTestResultsWithDefaults ¶

func NewRestBuildStatusTestResultsWithDefaults() *RestBuildStatusTestResults

NewRestBuildStatusTestResultsWithDefaults instantiates a new RestBuildStatusTestResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBuildStatusTestResults) GetFailed ¶

func (o *RestBuildStatusTestResults) GetFailed() int32

GetFailed returns the Failed field value if set, zero value otherwise.

func (*RestBuildStatusTestResults) GetFailedOk ¶

func (o *RestBuildStatusTestResults) GetFailedOk() (*int32, bool)

GetFailedOk returns a tuple with the Failed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusTestResults) GetSkipped ¶

func (o *RestBuildStatusTestResults) GetSkipped() int32

GetSkipped returns the Skipped field value if set, zero value otherwise.

func (*RestBuildStatusTestResults) GetSkippedOk ¶

func (o *RestBuildStatusTestResults) GetSkippedOk() (*int32, bool)

GetSkippedOk returns a tuple with the Skipped field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusTestResults) GetSuccessful ¶

func (o *RestBuildStatusTestResults) GetSuccessful() int32

GetSuccessful returns the Successful field value if set, zero value otherwise.

func (*RestBuildStatusTestResults) GetSuccessfulOk ¶

func (o *RestBuildStatusTestResults) GetSuccessfulOk() (*int32, bool)

GetSuccessfulOk returns a tuple with the Successful field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBuildStatusTestResults) HasFailed ¶

func (o *RestBuildStatusTestResults) HasFailed() bool

HasFailed returns a boolean if a field has been set.

func (*RestBuildStatusTestResults) HasSkipped ¶

func (o *RestBuildStatusTestResults) HasSkipped() bool

HasSkipped returns a boolean if a field has been set.

func (*RestBuildStatusTestResults) HasSuccessful ¶

func (o *RestBuildStatusTestResults) HasSuccessful() bool

HasSuccessful returns a boolean if a field has been set.

func (RestBuildStatusTestResults) MarshalJSON ¶

func (o RestBuildStatusTestResults) MarshalJSON() ([]byte, error)

func (*RestBuildStatusTestResults) SetFailed ¶

func (o *RestBuildStatusTestResults) SetFailed(v int32)

SetFailed gets a reference to the given int32 and assigns it to the Failed field.

func (*RestBuildStatusTestResults) SetSkipped ¶

func (o *RestBuildStatusTestResults) SetSkipped(v int32)

SetSkipped gets a reference to the given int32 and assigns it to the Skipped field.

func (*RestBuildStatusTestResults) SetSuccessful ¶

func (o *RestBuildStatusTestResults) SetSuccessful(v int32)

SetSuccessful gets a reference to the given int32 and assigns it to the Successful field.

func (RestBuildStatusTestResults) ToMap ¶

func (o RestBuildStatusTestResults) ToMap() (map[string]interface{}, error)

type RestBulkAddInsightAnnotationRequest ¶

type RestBulkAddInsightAnnotationRequest struct {
	Annotations []RestSingleAddInsightAnnotationRequest `json:"annotations,omitempty"`
}

RestBulkAddInsightAnnotationRequest struct for RestBulkAddInsightAnnotationRequest

func NewRestBulkAddInsightAnnotationRequest ¶

func NewRestBulkAddInsightAnnotationRequest() *RestBulkAddInsightAnnotationRequest

NewRestBulkAddInsightAnnotationRequest instantiates a new RestBulkAddInsightAnnotationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBulkAddInsightAnnotationRequestWithDefaults ¶

func NewRestBulkAddInsightAnnotationRequestWithDefaults() *RestBulkAddInsightAnnotationRequest

NewRestBulkAddInsightAnnotationRequestWithDefaults instantiates a new RestBulkAddInsightAnnotationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBulkAddInsightAnnotationRequest) GetAnnotations ¶

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*RestBulkAddInsightAnnotationRequest) GetAnnotationsOk ¶

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBulkAddInsightAnnotationRequest) HasAnnotations ¶

func (o *RestBulkAddInsightAnnotationRequest) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (RestBulkAddInsightAnnotationRequest) MarshalJSON ¶

func (o RestBulkAddInsightAnnotationRequest) MarshalJSON() ([]byte, error)

func (*RestBulkAddInsightAnnotationRequest) SetAnnotations ¶

SetAnnotations gets a reference to the given []RestSingleAddInsightAnnotationRequest and assigns it to the Annotations field.

func (RestBulkAddInsightAnnotationRequest) ToMap ¶

func (o RestBulkAddInsightAnnotationRequest) ToMap() (map[string]interface{}, error)

type RestBulkUserRateLimitSettingsUpdateRequest ¶

type RestBulkUserRateLimitSettingsUpdateRequest struct {
	Settings    *RestBulkUserRateLimitSettingsUpdateRequestSettings `json:"settings,omitempty"`
	Usernames   []string                                            `json:"usernames,omitempty"`
	Whitelisted *bool                                               `json:"whitelisted,omitempty"`
}

RestBulkUserRateLimitSettingsUpdateRequest struct for RestBulkUserRateLimitSettingsUpdateRequest

func NewRestBulkUserRateLimitSettingsUpdateRequest ¶

func NewRestBulkUserRateLimitSettingsUpdateRequest() *RestBulkUserRateLimitSettingsUpdateRequest

NewRestBulkUserRateLimitSettingsUpdateRequest instantiates a new RestBulkUserRateLimitSettingsUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBulkUserRateLimitSettingsUpdateRequestWithDefaults ¶

func NewRestBulkUserRateLimitSettingsUpdateRequestWithDefaults() *RestBulkUserRateLimitSettingsUpdateRequest

NewRestBulkUserRateLimitSettingsUpdateRequestWithDefaults instantiates a new RestBulkUserRateLimitSettingsUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBulkUserRateLimitSettingsUpdateRequest) GetSettings ¶

GetSettings returns the Settings field value if set, zero value otherwise.

func (*RestBulkUserRateLimitSettingsUpdateRequest) GetSettingsOk ¶

GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBulkUserRateLimitSettingsUpdateRequest) GetUsernames ¶

GetUsernames returns the Usernames field value if set, zero value otherwise.

func (*RestBulkUserRateLimitSettingsUpdateRequest) GetUsernamesOk ¶

func (o *RestBulkUserRateLimitSettingsUpdateRequest) GetUsernamesOk() ([]string, bool)

GetUsernamesOk returns a tuple with the Usernames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBulkUserRateLimitSettingsUpdateRequest) GetWhitelisted ¶

GetWhitelisted returns the Whitelisted field value if set, zero value otherwise.

func (*RestBulkUserRateLimitSettingsUpdateRequest) GetWhitelistedOk ¶

func (o *RestBulkUserRateLimitSettingsUpdateRequest) GetWhitelistedOk() (*bool, bool)

GetWhitelistedOk returns a tuple with the Whitelisted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBulkUserRateLimitSettingsUpdateRequest) HasSettings ¶

HasSettings returns a boolean if a field has been set.

func (*RestBulkUserRateLimitSettingsUpdateRequest) HasUsernames ¶

HasUsernames returns a boolean if a field has been set.

func (*RestBulkUserRateLimitSettingsUpdateRequest) HasWhitelisted ¶

HasWhitelisted returns a boolean if a field has been set.

func (RestBulkUserRateLimitSettingsUpdateRequest) MarshalJSON ¶

func (*RestBulkUserRateLimitSettingsUpdateRequest) SetSettings ¶

SetSettings gets a reference to the given RestBulkUserRateLimitSettingsUpdateRequestSettings and assigns it to the Settings field.

func (*RestBulkUserRateLimitSettingsUpdateRequest) SetUsernames ¶

SetUsernames gets a reference to the given []string and assigns it to the Usernames field.

func (*RestBulkUserRateLimitSettingsUpdateRequest) SetWhitelisted ¶

func (o *RestBulkUserRateLimitSettingsUpdateRequest) SetWhitelisted(v bool)

SetWhitelisted gets a reference to the given bool and assigns it to the Whitelisted field.

func (RestBulkUserRateLimitSettingsUpdateRequest) ToMap ¶

func (o RestBulkUserRateLimitSettingsUpdateRequest) ToMap() (map[string]interface{}, error)

type RestBulkUserRateLimitSettingsUpdateRequestSettings ¶

type RestBulkUserRateLimitSettingsUpdateRequestSettings struct {
	Capacity *int32 `json:"capacity,omitempty"`
	FillRate *int32 `json:"fillRate,omitempty"`
}

RestBulkUserRateLimitSettingsUpdateRequestSettings struct for RestBulkUserRateLimitSettingsUpdateRequestSettings

func NewRestBulkUserRateLimitSettingsUpdateRequestSettings ¶

func NewRestBulkUserRateLimitSettingsUpdateRequestSettings() *RestBulkUserRateLimitSettingsUpdateRequestSettings

NewRestBulkUserRateLimitSettingsUpdateRequestSettings instantiates a new RestBulkUserRateLimitSettingsUpdateRequestSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestBulkUserRateLimitSettingsUpdateRequestSettingsWithDefaults ¶

func NewRestBulkUserRateLimitSettingsUpdateRequestSettingsWithDefaults() *RestBulkUserRateLimitSettingsUpdateRequestSettings

NewRestBulkUserRateLimitSettingsUpdateRequestSettingsWithDefaults instantiates a new RestBulkUserRateLimitSettingsUpdateRequestSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestBulkUserRateLimitSettingsUpdateRequestSettings) GetCapacity ¶

GetCapacity returns the Capacity field value if set, zero value otherwise.

func (*RestBulkUserRateLimitSettingsUpdateRequestSettings) GetCapacityOk ¶

GetCapacityOk returns a tuple with the Capacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBulkUserRateLimitSettingsUpdateRequestSettings) GetFillRate ¶

GetFillRate returns the FillRate field value if set, zero value otherwise.

func (*RestBulkUserRateLimitSettingsUpdateRequestSettings) GetFillRateOk ¶

GetFillRateOk returns a tuple with the FillRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestBulkUserRateLimitSettingsUpdateRequestSettings) HasCapacity ¶

HasCapacity returns a boolean if a field has been set.

func (*RestBulkUserRateLimitSettingsUpdateRequestSettings) HasFillRate ¶

HasFillRate returns a boolean if a field has been set.

func (RestBulkUserRateLimitSettingsUpdateRequestSettings) MarshalJSON ¶

func (*RestBulkUserRateLimitSettingsUpdateRequestSettings) SetCapacity ¶

SetCapacity gets a reference to the given int32 and assigns it to the Capacity field.

func (*RestBulkUserRateLimitSettingsUpdateRequestSettings) SetFillRate ¶

SetFillRate gets a reference to the given int32 and assigns it to the FillRate field.

func (RestBulkUserRateLimitSettingsUpdateRequestSettings) ToMap ¶

type RestChange ¶

type RestChange struct {
	Type             *string                          `json:"type,omitempty"`
	Path             *RestCommentThreadDiffAnchorPath `json:"path,omitempty"`
	Conflict         *RestChangeConflict              `json:"conflict,omitempty"`
	ContentId        *string                          `json:"contentId,omitempty"`
	FromContentId    *string                          `json:"fromContentId,omitempty"`
	PercentUnchanged *int32                           `json:"percentUnchanged,omitempty"`
	SrcExecutable    *bool                            `json:"srcExecutable,omitempty"`
	NodeType         *string                          `json:"nodeType,omitempty"`
	Executable       *bool                            `json:"executable,omitempty"`
	SrcPath          *RestCommentThreadDiffAnchorPath `json:"srcPath,omitempty"`
	Links            map[string]interface{}           `json:"links,omitempty"`
}

RestChange struct for RestChange

func NewRestChange ¶

func NewRestChange() *RestChange

NewRestChange instantiates a new RestChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestChangeWithDefaults ¶

func NewRestChangeWithDefaults() *RestChange

NewRestChangeWithDefaults instantiates a new RestChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestChange) GetConflict ¶

func (o *RestChange) GetConflict() RestChangeConflict

GetConflict returns the Conflict field value if set, zero value otherwise.

func (*RestChange) GetConflictOk ¶

func (o *RestChange) GetConflictOk() (*RestChangeConflict, bool)

GetConflictOk returns a tuple with the Conflict field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) GetContentId ¶

func (o *RestChange) GetContentId() string

GetContentId returns the ContentId field value if set, zero value otherwise.

func (*RestChange) GetContentIdOk ¶

func (o *RestChange) GetContentIdOk() (*string, bool)

GetContentIdOk returns a tuple with the ContentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) GetExecutable ¶

func (o *RestChange) GetExecutable() bool

GetExecutable returns the Executable field value if set, zero value otherwise.

func (*RestChange) GetExecutableOk ¶

func (o *RestChange) GetExecutableOk() (*bool, bool)

GetExecutableOk returns a tuple with the Executable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) GetFromContentId ¶

func (o *RestChange) GetFromContentId() string

GetFromContentId returns the FromContentId field value if set, zero value otherwise.

func (*RestChange) GetFromContentIdOk ¶

func (o *RestChange) GetFromContentIdOk() (*string, bool)

GetFromContentIdOk returns a tuple with the FromContentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestChange) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestChange) GetLinksOk ¶

func (o *RestChange) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) GetNodeType ¶

func (o *RestChange) GetNodeType() string

GetNodeType returns the NodeType field value if set, zero value otherwise.

func (*RestChange) GetNodeTypeOk ¶

func (o *RestChange) GetNodeTypeOk() (*string, bool)

GetNodeTypeOk returns a tuple with the NodeType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) GetPath ¶

GetPath returns the Path field value if set, zero value otherwise.

func (*RestChange) GetPathOk ¶

func (o *RestChange) GetPathOk() (*RestCommentThreadDiffAnchorPath, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) GetPercentUnchanged ¶

func (o *RestChange) GetPercentUnchanged() int32

GetPercentUnchanged returns the PercentUnchanged field value if set, zero value otherwise.

func (*RestChange) GetPercentUnchangedOk ¶

func (o *RestChange) GetPercentUnchangedOk() (*int32, bool)

GetPercentUnchangedOk returns a tuple with the PercentUnchanged field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) GetSrcExecutable ¶

func (o *RestChange) GetSrcExecutable() bool

GetSrcExecutable returns the SrcExecutable field value if set, zero value otherwise.

func (*RestChange) GetSrcExecutableOk ¶

func (o *RestChange) GetSrcExecutableOk() (*bool, bool)

GetSrcExecutableOk returns a tuple with the SrcExecutable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) GetSrcPath ¶

GetSrcPath returns the SrcPath field value if set, zero value otherwise.

func (*RestChange) GetSrcPathOk ¶

func (o *RestChange) GetSrcPathOk() (*RestCommentThreadDiffAnchorPath, bool)

GetSrcPathOk returns a tuple with the SrcPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) GetType ¶

func (o *RestChange) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestChange) GetTypeOk ¶

func (o *RestChange) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChange) HasConflict ¶

func (o *RestChange) HasConflict() bool

HasConflict returns a boolean if a field has been set.

func (*RestChange) HasContentId ¶

func (o *RestChange) HasContentId() bool

HasContentId returns a boolean if a field has been set.

func (*RestChange) HasExecutable ¶

func (o *RestChange) HasExecutable() bool

HasExecutable returns a boolean if a field has been set.

func (*RestChange) HasFromContentId ¶

func (o *RestChange) HasFromContentId() bool

HasFromContentId returns a boolean if a field has been set.

func (o *RestChange) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestChange) HasNodeType ¶

func (o *RestChange) HasNodeType() bool

HasNodeType returns a boolean if a field has been set.

func (*RestChange) HasPath ¶

func (o *RestChange) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*RestChange) HasPercentUnchanged ¶

func (o *RestChange) HasPercentUnchanged() bool

HasPercentUnchanged returns a boolean if a field has been set.

func (*RestChange) HasSrcExecutable ¶

func (o *RestChange) HasSrcExecutable() bool

HasSrcExecutable returns a boolean if a field has been set.

func (*RestChange) HasSrcPath ¶

func (o *RestChange) HasSrcPath() bool

HasSrcPath returns a boolean if a field has been set.

func (*RestChange) HasType ¶

func (o *RestChange) HasType() bool

HasType returns a boolean if a field has been set.

func (RestChange) MarshalJSON ¶

func (o RestChange) MarshalJSON() ([]byte, error)

func (*RestChange) SetConflict ¶

func (o *RestChange) SetConflict(v RestChangeConflict)

SetConflict gets a reference to the given RestChangeConflict and assigns it to the Conflict field.

func (*RestChange) SetContentId ¶

func (o *RestChange) SetContentId(v string)

SetContentId gets a reference to the given string and assigns it to the ContentId field.

func (*RestChange) SetExecutable ¶

func (o *RestChange) SetExecutable(v bool)

SetExecutable gets a reference to the given bool and assigns it to the Executable field.

func (*RestChange) SetFromContentId ¶

func (o *RestChange) SetFromContentId(v string)

SetFromContentId gets a reference to the given string and assigns it to the FromContentId field.

func (o *RestChange) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestChange) SetNodeType ¶

func (o *RestChange) SetNodeType(v string)

SetNodeType gets a reference to the given string and assigns it to the NodeType field.

func (*RestChange) SetPath ¶

SetPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the Path field.

func (*RestChange) SetPercentUnchanged ¶

func (o *RestChange) SetPercentUnchanged(v int32)

SetPercentUnchanged gets a reference to the given int32 and assigns it to the PercentUnchanged field.

func (*RestChange) SetSrcExecutable ¶

func (o *RestChange) SetSrcExecutable(v bool)

SetSrcExecutable gets a reference to the given bool and assigns it to the SrcExecutable field.

func (*RestChange) SetSrcPath ¶

SetSrcPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the SrcPath field.

func (*RestChange) SetType ¶

func (o *RestChange) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestChange) ToMap ¶

func (o RestChange) ToMap() (map[string]interface{}, error)

type RestChangeConflict ¶

type RestChangeConflict struct {
	TheirChange *RestChangeConflictTheirChange `json:"theirChange,omitempty"`
	OurChange   *RestChangeConflictTheirChange `json:"ourChange,omitempty"`
}

RestChangeConflict struct for RestChangeConflict

func NewRestChangeConflict ¶

func NewRestChangeConflict() *RestChangeConflict

NewRestChangeConflict instantiates a new RestChangeConflict object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestChangeConflictWithDefaults ¶

func NewRestChangeConflictWithDefaults() *RestChangeConflict

NewRestChangeConflictWithDefaults instantiates a new RestChangeConflict object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestChangeConflict) GetOurChange ¶

GetOurChange returns the OurChange field value if set, zero value otherwise.

func (*RestChangeConflict) GetOurChangeOk ¶

func (o *RestChangeConflict) GetOurChangeOk() (*RestChangeConflictTheirChange, bool)

GetOurChangeOk returns a tuple with the OurChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangeConflict) GetTheirChange ¶

GetTheirChange returns the TheirChange field value if set, zero value otherwise.

func (*RestChangeConflict) GetTheirChangeOk ¶

func (o *RestChangeConflict) GetTheirChangeOk() (*RestChangeConflictTheirChange, bool)

GetTheirChangeOk returns a tuple with the TheirChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangeConflict) HasOurChange ¶

func (o *RestChangeConflict) HasOurChange() bool

HasOurChange returns a boolean if a field has been set.

func (*RestChangeConflict) HasTheirChange ¶

func (o *RestChangeConflict) HasTheirChange() bool

HasTheirChange returns a boolean if a field has been set.

func (RestChangeConflict) MarshalJSON ¶

func (o RestChangeConflict) MarshalJSON() ([]byte, error)

func (*RestChangeConflict) SetOurChange ¶

SetOurChange gets a reference to the given RestChangeConflictTheirChange and assigns it to the OurChange field.

func (*RestChangeConflict) SetTheirChange ¶

SetTheirChange gets a reference to the given RestChangeConflictTheirChange and assigns it to the TheirChange field.

func (RestChangeConflict) ToMap ¶

func (o RestChangeConflict) ToMap() (map[string]interface{}, error)

type RestChangeConflictTheirChange ¶

type RestChangeConflictTheirChange struct {
	Type    *string                          `json:"type,omitempty"`
	Path    *RestCommentThreadDiffAnchorPath `json:"path,omitempty"`
	SrcPath *RestCommentThreadDiffAnchorPath `json:"srcPath,omitempty"`
}

RestChangeConflictTheirChange struct for RestChangeConflictTheirChange

func NewRestChangeConflictTheirChange ¶

func NewRestChangeConflictTheirChange() *RestChangeConflictTheirChange

NewRestChangeConflictTheirChange instantiates a new RestChangeConflictTheirChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestChangeConflictTheirChangeWithDefaults ¶

func NewRestChangeConflictTheirChangeWithDefaults() *RestChangeConflictTheirChange

NewRestChangeConflictTheirChangeWithDefaults instantiates a new RestChangeConflictTheirChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestChangeConflictTheirChange) GetPath ¶

GetPath returns the Path field value if set, zero value otherwise.

func (*RestChangeConflictTheirChange) GetPathOk ¶

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangeConflictTheirChange) GetSrcPath ¶

GetSrcPath returns the SrcPath field value if set, zero value otherwise.

func (*RestChangeConflictTheirChange) GetSrcPathOk ¶

GetSrcPathOk returns a tuple with the SrcPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangeConflictTheirChange) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestChangeConflictTheirChange) GetTypeOk ¶

func (o *RestChangeConflictTheirChange) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangeConflictTheirChange) HasPath ¶

func (o *RestChangeConflictTheirChange) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*RestChangeConflictTheirChange) HasSrcPath ¶

func (o *RestChangeConflictTheirChange) HasSrcPath() bool

HasSrcPath returns a boolean if a field has been set.

func (*RestChangeConflictTheirChange) HasType ¶

func (o *RestChangeConflictTheirChange) HasType() bool

HasType returns a boolean if a field has been set.

func (RestChangeConflictTheirChange) MarshalJSON ¶

func (o RestChangeConflictTheirChange) MarshalJSON() ([]byte, error)

func (*RestChangeConflictTheirChange) SetPath ¶

SetPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the Path field.

func (*RestChangeConflictTheirChange) SetSrcPath ¶

SetSrcPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the SrcPath field.

func (*RestChangeConflictTheirChange) SetType ¶

func (o *RestChangeConflictTheirChange) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestChangeConflictTheirChange) ToMap ¶

func (o RestChangeConflictTheirChange) ToMap() (map[string]interface{}, error)

type RestChangeset ¶

type RestChangeset struct {
	FromCommit *RestChangesetFromCommit          `json:"fromCommit,omitempty"`
	ToCommit   *RestChangesetToCommit            `json:"toCommit,omitempty"`
	Changes    *RestChangesetChanges             `json:"changes,omitempty"`
	Repository *RestPullRequestFromRefRepository `json:"repository,omitempty"`
	Links      map[string]interface{}            `json:"links,omitempty"`
}

RestChangeset struct for RestChangeset

func NewRestChangeset ¶

func NewRestChangeset() *RestChangeset

NewRestChangeset instantiates a new RestChangeset object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestChangesetWithDefaults ¶

func NewRestChangesetWithDefaults() *RestChangeset

NewRestChangesetWithDefaults instantiates a new RestChangeset object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestChangeset) GetChanges ¶

func (o *RestChangeset) GetChanges() RestChangesetChanges

GetChanges returns the Changes field value if set, zero value otherwise.

func (*RestChangeset) GetChangesOk ¶

func (o *RestChangeset) GetChangesOk() (*RestChangesetChanges, bool)

GetChangesOk returns a tuple with the Changes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangeset) GetFromCommit ¶

func (o *RestChangeset) GetFromCommit() RestChangesetFromCommit

GetFromCommit returns the FromCommit field value if set, zero value otherwise.

func (*RestChangeset) GetFromCommitOk ¶

func (o *RestChangeset) GetFromCommitOk() (*RestChangesetFromCommit, bool)

GetFromCommitOk returns a tuple with the FromCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestChangeset) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestChangeset) GetLinksOk ¶

func (o *RestChangeset) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangeset) GetRepository ¶

GetRepository returns the Repository field value if set, zero value otherwise.

func (*RestChangeset) GetRepositoryOk ¶

func (o *RestChangeset) GetRepositoryOk() (*RestPullRequestFromRefRepository, bool)

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangeset) GetToCommit ¶

func (o *RestChangeset) GetToCommit() RestChangesetToCommit

GetToCommit returns the ToCommit field value if set, zero value otherwise.

func (*RestChangeset) GetToCommitOk ¶

func (o *RestChangeset) GetToCommitOk() (*RestChangesetToCommit, bool)

GetToCommitOk returns a tuple with the ToCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangeset) HasChanges ¶

func (o *RestChangeset) HasChanges() bool

HasChanges returns a boolean if a field has been set.

func (*RestChangeset) HasFromCommit ¶

func (o *RestChangeset) HasFromCommit() bool

HasFromCommit returns a boolean if a field has been set.

func (o *RestChangeset) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestChangeset) HasRepository ¶

func (o *RestChangeset) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*RestChangeset) HasToCommit ¶

func (o *RestChangeset) HasToCommit() bool

HasToCommit returns a boolean if a field has been set.

func (RestChangeset) MarshalJSON ¶

func (o RestChangeset) MarshalJSON() ([]byte, error)

func (*RestChangeset) SetChanges ¶

func (o *RestChangeset) SetChanges(v RestChangesetChanges)

SetChanges gets a reference to the given RestChangesetChanges and assigns it to the Changes field.

func (*RestChangeset) SetFromCommit ¶

func (o *RestChangeset) SetFromCommit(v RestChangesetFromCommit)

SetFromCommit gets a reference to the given RestChangesetFromCommit and assigns it to the FromCommit field.

func (o *RestChangeset) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestChangeset) SetRepository ¶

func (o *RestChangeset) SetRepository(v RestPullRequestFromRefRepository)

SetRepository gets a reference to the given RestPullRequestFromRefRepository and assigns it to the Repository field.

func (*RestChangeset) SetToCommit ¶

func (o *RestChangeset) SetToCommit(v RestChangesetToCommit)

SetToCommit gets a reference to the given RestChangesetToCommit and assigns it to the ToCommit field.

func (RestChangeset) ToMap ¶

func (o RestChangeset) ToMap() (map[string]interface{}, error)

type RestChangesetChanges ¶

type RestChangesetChanges struct {
	Values        map[string]interface{} `json:"values,omitempty"`
	Size          *int32                 `json:"size,omitempty"`
	Limit         *int32                 `json:"limit,omitempty"`
	IsLastPage    *bool                  `json:"isLastPage,omitempty"`
	NextPageStart *int32                 `json:"nextPageStart,omitempty"`
	Start         *int32                 `json:"start,omitempty"`
}

RestChangesetChanges struct for RestChangesetChanges

func NewRestChangesetChanges ¶

func NewRestChangesetChanges() *RestChangesetChanges

NewRestChangesetChanges instantiates a new RestChangesetChanges object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestChangesetChangesWithDefaults ¶

func NewRestChangesetChangesWithDefaults() *RestChangesetChanges

NewRestChangesetChangesWithDefaults instantiates a new RestChangesetChanges object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestChangesetChanges) GetIsLastPage ¶

func (o *RestChangesetChanges) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*RestChangesetChanges) GetIsLastPageOk ¶

func (o *RestChangesetChanges) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetChanges) GetLimit ¶

func (o *RestChangesetChanges) GetLimit() int32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*RestChangesetChanges) GetLimitOk ¶

func (o *RestChangesetChanges) GetLimitOk() (*int32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetChanges) GetNextPageStart ¶

func (o *RestChangesetChanges) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*RestChangesetChanges) GetNextPageStartOk ¶

func (o *RestChangesetChanges) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetChanges) GetSize ¶

func (o *RestChangesetChanges) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*RestChangesetChanges) GetSizeOk ¶

func (o *RestChangesetChanges) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetChanges) GetStart ¶

func (o *RestChangesetChanges) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*RestChangesetChanges) GetStartOk ¶

func (o *RestChangesetChanges) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetChanges) GetValues ¶

func (o *RestChangesetChanges) GetValues() map[string]interface{}

GetValues returns the Values field value if set, zero value otherwise.

func (*RestChangesetChanges) GetValuesOk ¶

func (o *RestChangesetChanges) GetValuesOk() (map[string]interface{}, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetChanges) HasIsLastPage ¶

func (o *RestChangesetChanges) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*RestChangesetChanges) HasLimit ¶

func (o *RestChangesetChanges) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*RestChangesetChanges) HasNextPageStart ¶

func (o *RestChangesetChanges) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*RestChangesetChanges) HasSize ¶

func (o *RestChangesetChanges) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*RestChangesetChanges) HasStart ¶

func (o *RestChangesetChanges) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*RestChangesetChanges) HasValues ¶

func (o *RestChangesetChanges) HasValues() bool

HasValues returns a boolean if a field has been set.

func (RestChangesetChanges) MarshalJSON ¶

func (o RestChangesetChanges) MarshalJSON() ([]byte, error)

func (*RestChangesetChanges) SetIsLastPage ¶

func (o *RestChangesetChanges) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*RestChangesetChanges) SetLimit ¶

func (o *RestChangesetChanges) SetLimit(v int32)

SetLimit gets a reference to the given int32 and assigns it to the Limit field.

func (*RestChangesetChanges) SetNextPageStart ¶

func (o *RestChangesetChanges) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*RestChangesetChanges) SetSize ¶

func (o *RestChangesetChanges) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*RestChangesetChanges) SetStart ¶

func (o *RestChangesetChanges) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*RestChangesetChanges) SetValues ¶

func (o *RestChangesetChanges) SetValues(v map[string]interface{})

SetValues gets a reference to the given map[string]interface{} and assigns it to the Values field.

func (RestChangesetChanges) ToMap ¶

func (o RestChangesetChanges) ToMap() (map[string]interface{}, error)

type RestChangesetFromCommit ¶

type RestChangesetFromCommit struct {
	Id        *string `json:"id,omitempty"`
	DisplayId *string `json:"displayId,omitempty"`
}

RestChangesetFromCommit struct for RestChangesetFromCommit

func NewRestChangesetFromCommit ¶

func NewRestChangesetFromCommit() *RestChangesetFromCommit

NewRestChangesetFromCommit instantiates a new RestChangesetFromCommit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestChangesetFromCommitWithDefaults ¶

func NewRestChangesetFromCommitWithDefaults() *RestChangesetFromCommit

NewRestChangesetFromCommitWithDefaults instantiates a new RestChangesetFromCommit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestChangesetFromCommit) GetDisplayId ¶

func (o *RestChangesetFromCommit) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestChangesetFromCommit) GetDisplayIdOk ¶

func (o *RestChangesetFromCommit) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetFromCommit) GetId ¶

func (o *RestChangesetFromCommit) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestChangesetFromCommit) GetIdOk ¶

func (o *RestChangesetFromCommit) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetFromCommit) HasDisplayId ¶

func (o *RestChangesetFromCommit) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestChangesetFromCommit) HasId ¶

func (o *RestChangesetFromCommit) HasId() bool

HasId returns a boolean if a field has been set.

func (RestChangesetFromCommit) MarshalJSON ¶

func (o RestChangesetFromCommit) MarshalJSON() ([]byte, error)

func (*RestChangesetFromCommit) SetDisplayId ¶

func (o *RestChangesetFromCommit) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestChangesetFromCommit) SetId ¶

func (o *RestChangesetFromCommit) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (RestChangesetFromCommit) ToMap ¶

func (o RestChangesetFromCommit) ToMap() (map[string]interface{}, error)

type RestChangesetToCommit ¶

type RestChangesetToCommit struct {
	Message            *string                         `json:"message,omitempty"`
	CommitterTimestamp *int64                          `json:"committerTimestamp,omitempty"`
	Committer          *RestChangesetToCommitCommitter `json:"committer,omitempty"`
	AuthorTimestamp    *int64                          `json:"authorTimestamp,omitempty"`
	Parents            []RestMinimalCommit             `json:"parents,omitempty"`
	Author             *RestChangesetToCommitCommitter `json:"author,omitempty"`
	Id                 *string                         `json:"id,omitempty"`
	DisplayId          *string                         `json:"displayId,omitempty"`
}

RestChangesetToCommit struct for RestChangesetToCommit

func NewRestChangesetToCommit ¶

func NewRestChangesetToCommit() *RestChangesetToCommit

NewRestChangesetToCommit instantiates a new RestChangesetToCommit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestChangesetToCommitWithDefaults ¶

func NewRestChangesetToCommitWithDefaults() *RestChangesetToCommit

NewRestChangesetToCommitWithDefaults instantiates a new RestChangesetToCommit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestChangesetToCommit) GetAuthor ¶

GetAuthor returns the Author field value if set, zero value otherwise.

func (*RestChangesetToCommit) GetAuthorOk ¶

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommit) GetAuthorTimestamp ¶

func (o *RestChangesetToCommit) GetAuthorTimestamp() int64

GetAuthorTimestamp returns the AuthorTimestamp field value if set, zero value otherwise.

func (*RestChangesetToCommit) GetAuthorTimestampOk ¶

func (o *RestChangesetToCommit) GetAuthorTimestampOk() (*int64, bool)

GetAuthorTimestampOk returns a tuple with the AuthorTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommit) GetCommitter ¶

GetCommitter returns the Committer field value if set, zero value otherwise.

func (*RestChangesetToCommit) GetCommitterOk ¶

GetCommitterOk returns a tuple with the Committer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommit) GetCommitterTimestamp ¶

func (o *RestChangesetToCommit) GetCommitterTimestamp() int64

GetCommitterTimestamp returns the CommitterTimestamp field value if set, zero value otherwise.

func (*RestChangesetToCommit) GetCommitterTimestampOk ¶

func (o *RestChangesetToCommit) GetCommitterTimestampOk() (*int64, bool)

GetCommitterTimestampOk returns a tuple with the CommitterTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommit) GetDisplayId ¶

func (o *RestChangesetToCommit) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestChangesetToCommit) GetDisplayIdOk ¶

func (o *RestChangesetToCommit) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommit) GetId ¶

func (o *RestChangesetToCommit) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestChangesetToCommit) GetIdOk ¶

func (o *RestChangesetToCommit) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommit) GetMessage ¶

func (o *RestChangesetToCommit) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestChangesetToCommit) GetMessageOk ¶

func (o *RestChangesetToCommit) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommit) GetParents ¶

func (o *RestChangesetToCommit) GetParents() []RestMinimalCommit

GetParents returns the Parents field value if set, zero value otherwise.

func (*RestChangesetToCommit) GetParentsOk ¶

func (o *RestChangesetToCommit) GetParentsOk() ([]RestMinimalCommit, bool)

GetParentsOk returns a tuple with the Parents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommit) HasAuthor ¶

func (o *RestChangesetToCommit) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*RestChangesetToCommit) HasAuthorTimestamp ¶

func (o *RestChangesetToCommit) HasAuthorTimestamp() bool

HasAuthorTimestamp returns a boolean if a field has been set.

func (*RestChangesetToCommit) HasCommitter ¶

func (o *RestChangesetToCommit) HasCommitter() bool

HasCommitter returns a boolean if a field has been set.

func (*RestChangesetToCommit) HasCommitterTimestamp ¶

func (o *RestChangesetToCommit) HasCommitterTimestamp() bool

HasCommitterTimestamp returns a boolean if a field has been set.

func (*RestChangesetToCommit) HasDisplayId ¶

func (o *RestChangesetToCommit) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestChangesetToCommit) HasId ¶

func (o *RestChangesetToCommit) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestChangesetToCommit) HasMessage ¶

func (o *RestChangesetToCommit) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestChangesetToCommit) HasParents ¶

func (o *RestChangesetToCommit) HasParents() bool

HasParents returns a boolean if a field has been set.

func (RestChangesetToCommit) MarshalJSON ¶

func (o RestChangesetToCommit) MarshalJSON() ([]byte, error)

func (*RestChangesetToCommit) SetAuthor ¶

SetAuthor gets a reference to the given RestChangesetToCommitCommitter and assigns it to the Author field.

func (*RestChangesetToCommit) SetAuthorTimestamp ¶

func (o *RestChangesetToCommit) SetAuthorTimestamp(v int64)

SetAuthorTimestamp gets a reference to the given int64 and assigns it to the AuthorTimestamp field.

func (*RestChangesetToCommit) SetCommitter ¶

SetCommitter gets a reference to the given RestChangesetToCommitCommitter and assigns it to the Committer field.

func (*RestChangesetToCommit) SetCommitterTimestamp ¶

func (o *RestChangesetToCommit) SetCommitterTimestamp(v int64)

SetCommitterTimestamp gets a reference to the given int64 and assigns it to the CommitterTimestamp field.

func (*RestChangesetToCommit) SetDisplayId ¶

func (o *RestChangesetToCommit) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestChangesetToCommit) SetId ¶

func (o *RestChangesetToCommit) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestChangesetToCommit) SetMessage ¶

func (o *RestChangesetToCommit) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestChangesetToCommit) SetParents ¶

func (o *RestChangesetToCommit) SetParents(v []RestMinimalCommit)

SetParents gets a reference to the given []RestMinimalCommit and assigns it to the Parents field.

func (RestChangesetToCommit) ToMap ¶

func (o RestChangesetToCommit) ToMap() (map[string]interface{}, error)

type RestChangesetToCommitCommitter ¶

type RestChangesetToCommitCommitter struct {
	Name         *string `json:"name,omitempty"`
	AvatarUrl    *string `json:"avatarUrl,omitempty"`
	EmailAddress *string `json:"emailAddress,omitempty"`
}

RestChangesetToCommitCommitter struct for RestChangesetToCommitCommitter

func NewRestChangesetToCommitCommitter ¶

func NewRestChangesetToCommitCommitter() *RestChangesetToCommitCommitter

NewRestChangesetToCommitCommitter instantiates a new RestChangesetToCommitCommitter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestChangesetToCommitCommitterWithDefaults ¶

func NewRestChangesetToCommitCommitterWithDefaults() *RestChangesetToCommitCommitter

NewRestChangesetToCommitCommitterWithDefaults instantiates a new RestChangesetToCommitCommitter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestChangesetToCommitCommitter) GetAvatarUrl ¶

func (o *RestChangesetToCommitCommitter) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestChangesetToCommitCommitter) GetAvatarUrlOk ¶

func (o *RestChangesetToCommitCommitter) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommitCommitter) GetEmailAddress ¶

func (o *RestChangesetToCommitCommitter) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*RestChangesetToCommitCommitter) GetEmailAddressOk ¶

func (o *RestChangesetToCommitCommitter) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommitCommitter) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestChangesetToCommitCommitter) GetNameOk ¶

func (o *RestChangesetToCommitCommitter) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestChangesetToCommitCommitter) HasAvatarUrl ¶

func (o *RestChangesetToCommitCommitter) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*RestChangesetToCommitCommitter) HasEmailAddress ¶

func (o *RestChangesetToCommitCommitter) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*RestChangesetToCommitCommitter) HasName ¶

func (o *RestChangesetToCommitCommitter) HasName() bool

HasName returns a boolean if a field has been set.

func (RestChangesetToCommitCommitter) MarshalJSON ¶

func (o RestChangesetToCommitCommitter) MarshalJSON() ([]byte, error)

func (*RestChangesetToCommitCommitter) SetAvatarUrl ¶

func (o *RestChangesetToCommitCommitter) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestChangesetToCommitCommitter) SetEmailAddress ¶

func (o *RestChangesetToCommitCommitter) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*RestChangesetToCommitCommitter) SetName ¶

func (o *RestChangesetToCommitCommitter) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestChangesetToCommitCommitter) ToMap ¶

func (o RestChangesetToCommitCommitter) ToMap() (map[string]interface{}, error)

type RestClusterInformation ¶

type RestClusterInformation struct {
	LocalNode *RestClusterInformationLocalNode `json:"localNode,omitempty"`
	Running   *bool                            `json:"running,omitempty"`
	Nodes     []RestClusterNode                `json:"nodes,omitempty"`
}

RestClusterInformation struct for RestClusterInformation

func NewRestClusterInformation ¶

func NewRestClusterInformation() *RestClusterInformation

NewRestClusterInformation instantiates a new RestClusterInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestClusterInformationWithDefaults ¶

func NewRestClusterInformationWithDefaults() *RestClusterInformation

NewRestClusterInformationWithDefaults instantiates a new RestClusterInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestClusterInformation) GetLocalNode ¶

GetLocalNode returns the LocalNode field value if set, zero value otherwise.

func (*RestClusterInformation) GetLocalNodeOk ¶

GetLocalNodeOk returns a tuple with the LocalNode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterInformation) GetNodes ¶

func (o *RestClusterInformation) GetNodes() []RestClusterNode

GetNodes returns the Nodes field value if set, zero value otherwise.

func (*RestClusterInformation) GetNodesOk ¶

func (o *RestClusterInformation) GetNodesOk() ([]RestClusterNode, bool)

GetNodesOk returns a tuple with the Nodes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterInformation) GetRunning ¶

func (o *RestClusterInformation) GetRunning() bool

GetRunning returns the Running field value if set, zero value otherwise.

func (*RestClusterInformation) GetRunningOk ¶

func (o *RestClusterInformation) GetRunningOk() (*bool, bool)

GetRunningOk returns a tuple with the Running field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterInformation) HasLocalNode ¶

func (o *RestClusterInformation) HasLocalNode() bool

HasLocalNode returns a boolean if a field has been set.

func (*RestClusterInformation) HasNodes ¶

func (o *RestClusterInformation) HasNodes() bool

HasNodes returns a boolean if a field has been set.

func (*RestClusterInformation) HasRunning ¶

func (o *RestClusterInformation) HasRunning() bool

HasRunning returns a boolean if a field has been set.

func (RestClusterInformation) MarshalJSON ¶

func (o RestClusterInformation) MarshalJSON() ([]byte, error)

func (*RestClusterInformation) SetLocalNode ¶

SetLocalNode gets a reference to the given RestClusterInformationLocalNode and assigns it to the LocalNode field.

func (*RestClusterInformation) SetNodes ¶

func (o *RestClusterInformation) SetNodes(v []RestClusterNode)

SetNodes gets a reference to the given []RestClusterNode and assigns it to the Nodes field.

func (*RestClusterInformation) SetRunning ¶

func (o *RestClusterInformation) SetRunning(v bool)

SetRunning gets a reference to the given bool and assigns it to the Running field.

func (RestClusterInformation) ToMap ¶

func (o RestClusterInformation) ToMap() (map[string]interface{}, error)

type RestClusterInformationLocalNode ¶

type RestClusterInformationLocalNode struct {
	Address      *RestClusterNodeAddress `json:"address,omitempty"`
	Name         *string                 `json:"name,omitempty"`
	Id           *string                 `json:"id,omitempty"`
	BuildVersion *string                 `json:"buildVersion,omitempty"`
	Local        *bool                   `json:"local,omitempty"`
}

RestClusterInformationLocalNode struct for RestClusterInformationLocalNode

func NewRestClusterInformationLocalNode ¶

func NewRestClusterInformationLocalNode() *RestClusterInformationLocalNode

NewRestClusterInformationLocalNode instantiates a new RestClusterInformationLocalNode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestClusterInformationLocalNodeWithDefaults ¶

func NewRestClusterInformationLocalNodeWithDefaults() *RestClusterInformationLocalNode

NewRestClusterInformationLocalNodeWithDefaults instantiates a new RestClusterInformationLocalNode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestClusterInformationLocalNode) GetAddress ¶

GetAddress returns the Address field value if set, zero value otherwise.

func (*RestClusterInformationLocalNode) GetAddressOk ¶

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterInformationLocalNode) GetBuildVersion ¶

func (o *RestClusterInformationLocalNode) GetBuildVersion() string

GetBuildVersion returns the BuildVersion field value if set, zero value otherwise.

func (*RestClusterInformationLocalNode) GetBuildVersionOk ¶

func (o *RestClusterInformationLocalNode) GetBuildVersionOk() (*string, bool)

GetBuildVersionOk returns a tuple with the BuildVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterInformationLocalNode) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestClusterInformationLocalNode) GetIdOk ¶

func (o *RestClusterInformationLocalNode) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterInformationLocalNode) GetLocal ¶

func (o *RestClusterInformationLocalNode) GetLocal() bool

GetLocal returns the Local field value if set, zero value otherwise.

func (*RestClusterInformationLocalNode) GetLocalOk ¶

func (o *RestClusterInformationLocalNode) GetLocalOk() (*bool, bool)

GetLocalOk returns a tuple with the Local field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterInformationLocalNode) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestClusterInformationLocalNode) GetNameOk ¶

func (o *RestClusterInformationLocalNode) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterInformationLocalNode) HasAddress ¶

func (o *RestClusterInformationLocalNode) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*RestClusterInformationLocalNode) HasBuildVersion ¶

func (o *RestClusterInformationLocalNode) HasBuildVersion() bool

HasBuildVersion returns a boolean if a field has been set.

func (*RestClusterInformationLocalNode) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestClusterInformationLocalNode) HasLocal ¶

func (o *RestClusterInformationLocalNode) HasLocal() bool

HasLocal returns a boolean if a field has been set.

func (*RestClusterInformationLocalNode) HasName ¶

HasName returns a boolean if a field has been set.

func (RestClusterInformationLocalNode) MarshalJSON ¶

func (o RestClusterInformationLocalNode) MarshalJSON() ([]byte, error)

func (*RestClusterInformationLocalNode) SetAddress ¶

SetAddress gets a reference to the given RestClusterNodeAddress and assigns it to the Address field.

func (*RestClusterInformationLocalNode) SetBuildVersion ¶

func (o *RestClusterInformationLocalNode) SetBuildVersion(v string)

SetBuildVersion gets a reference to the given string and assigns it to the BuildVersion field.

func (*RestClusterInformationLocalNode) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestClusterInformationLocalNode) SetLocal ¶

func (o *RestClusterInformationLocalNode) SetLocal(v bool)

SetLocal gets a reference to the given bool and assigns it to the Local field.

func (*RestClusterInformationLocalNode) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (RestClusterInformationLocalNode) ToMap ¶

func (o RestClusterInformationLocalNode) ToMap() (map[string]interface{}, error)

type RestClusterNode ¶

type RestClusterNode struct {
	Address      *RestClusterNodeAddress `json:"address,omitempty"`
	Name         *string                 `json:"name,omitempty"`
	Id           *string                 `json:"id,omitempty"`
	BuildVersion *string                 `json:"buildVersion,omitempty"`
	Local        *bool                   `json:"local,omitempty"`
}

RestClusterNode struct for RestClusterNode

func NewRestClusterNode ¶

func NewRestClusterNode() *RestClusterNode

NewRestClusterNode instantiates a new RestClusterNode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestClusterNodeWithDefaults ¶

func NewRestClusterNodeWithDefaults() *RestClusterNode

NewRestClusterNodeWithDefaults instantiates a new RestClusterNode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestClusterNode) GetAddress ¶

func (o *RestClusterNode) GetAddress() RestClusterNodeAddress

GetAddress returns the Address field value if set, zero value otherwise.

func (*RestClusterNode) GetAddressOk ¶

func (o *RestClusterNode) GetAddressOk() (*RestClusterNodeAddress, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterNode) GetBuildVersion ¶

func (o *RestClusterNode) GetBuildVersion() string

GetBuildVersion returns the BuildVersion field value if set, zero value otherwise.

func (*RestClusterNode) GetBuildVersionOk ¶

func (o *RestClusterNode) GetBuildVersionOk() (*string, bool)

GetBuildVersionOk returns a tuple with the BuildVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterNode) GetId ¶

func (o *RestClusterNode) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestClusterNode) GetIdOk ¶

func (o *RestClusterNode) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterNode) GetLocal ¶

func (o *RestClusterNode) GetLocal() bool

GetLocal returns the Local field value if set, zero value otherwise.

func (*RestClusterNode) GetLocalOk ¶

func (o *RestClusterNode) GetLocalOk() (*bool, bool)

GetLocalOk returns a tuple with the Local field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterNode) GetName ¶

func (o *RestClusterNode) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestClusterNode) GetNameOk ¶

func (o *RestClusterNode) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterNode) HasAddress ¶

func (o *RestClusterNode) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*RestClusterNode) HasBuildVersion ¶

func (o *RestClusterNode) HasBuildVersion() bool

HasBuildVersion returns a boolean if a field has been set.

func (*RestClusterNode) HasId ¶

func (o *RestClusterNode) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestClusterNode) HasLocal ¶

func (o *RestClusterNode) HasLocal() bool

HasLocal returns a boolean if a field has been set.

func (*RestClusterNode) HasName ¶

func (o *RestClusterNode) HasName() bool

HasName returns a boolean if a field has been set.

func (RestClusterNode) MarshalJSON ¶

func (o RestClusterNode) MarshalJSON() ([]byte, error)

func (*RestClusterNode) SetAddress ¶

func (o *RestClusterNode) SetAddress(v RestClusterNodeAddress)

SetAddress gets a reference to the given RestClusterNodeAddress and assigns it to the Address field.

func (*RestClusterNode) SetBuildVersion ¶

func (o *RestClusterNode) SetBuildVersion(v string)

SetBuildVersion gets a reference to the given string and assigns it to the BuildVersion field.

func (*RestClusterNode) SetId ¶

func (o *RestClusterNode) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestClusterNode) SetLocal ¶

func (o *RestClusterNode) SetLocal(v bool)

SetLocal gets a reference to the given bool and assigns it to the Local field.

func (*RestClusterNode) SetName ¶

func (o *RestClusterNode) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestClusterNode) ToMap ¶

func (o RestClusterNode) ToMap() (map[string]interface{}, error)

type RestClusterNodeAddress ¶

type RestClusterNodeAddress struct {
	Address *string `json:"address,omitempty"`
	Port    *int32  `json:"port,omitempty"`
}

RestClusterNodeAddress struct for RestClusterNodeAddress

func NewRestClusterNodeAddress ¶

func NewRestClusterNodeAddress() *RestClusterNodeAddress

NewRestClusterNodeAddress instantiates a new RestClusterNodeAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestClusterNodeAddressWithDefaults ¶

func NewRestClusterNodeAddressWithDefaults() *RestClusterNodeAddress

NewRestClusterNodeAddressWithDefaults instantiates a new RestClusterNodeAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestClusterNodeAddress) GetAddress ¶

func (o *RestClusterNodeAddress) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*RestClusterNodeAddress) GetAddressOk ¶

func (o *RestClusterNodeAddress) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterNodeAddress) GetPort ¶

func (o *RestClusterNodeAddress) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*RestClusterNodeAddress) GetPortOk ¶

func (o *RestClusterNodeAddress) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestClusterNodeAddress) HasAddress ¶

func (o *RestClusterNodeAddress) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*RestClusterNodeAddress) HasPort ¶

func (o *RestClusterNodeAddress) HasPort() bool

HasPort returns a boolean if a field has been set.

func (RestClusterNodeAddress) MarshalJSON ¶

func (o RestClusterNodeAddress) MarshalJSON() ([]byte, error)

func (*RestClusterNodeAddress) SetAddress ¶

func (o *RestClusterNodeAddress) SetAddress(v string)

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*RestClusterNodeAddress) SetPort ¶

func (o *RestClusterNodeAddress) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (RestClusterNodeAddress) ToMap ¶

func (o RestClusterNodeAddress) ToMap() (map[string]interface{}, error)

type RestComment ¶

type RestComment struct {
	Version            *int32                                       `json:"version,omitempty"`
	Parent             *RestUserReactionCommentParent               `json:"parent,omitempty"`
	Id                 *int64                                       `json:"id,omitempty"`
	State              *string                                      `json:"state,omitempty"`
	Comments           []RestComment                                `json:"comments,omitempty"`
	Severity           *string                                      `json:"severity,omitempty"`
	UpdatedDate        *int64                                       `json:"updatedDate,omitempty"`
	ThreadResolvedDate *int64                                       `json:"threadResolvedDate,omitempty"`
	ThreadResolver     *RestUserReactionCommentParentThreadResolver `json:"threadResolver,omitempty"`
	Anchored           *bool                                        `json:"anchored,omitempty"`
	Pending            *bool                                        `json:"pending,omitempty"`
	// Indicates if this comment thread has been marked as resolved or not
	ThreadResolved *bool                                        `json:"threadResolved,omitempty"`
	Resolver       *RestUserReactionCommentParentThreadResolver `json:"resolver,omitempty"`
	ResolvedDate   *int64                                       `json:"resolvedDate,omitempty"`
	Author         *RestUserReactionCommentParentThreadResolver `json:"author,omitempty"`
	CreatedDate    *int64                                       `json:"createdDate,omitempty"`
	Anchor         *RestUserReactionCommentParentAnchor         `json:"anchor,omitempty"`
	Html           *string                                      `json:"html,omitempty"`
	Reply          *bool                                        `json:"reply,omitempty"`
	Text           *string                                      `json:"text,omitempty"`
	Properties     map[string]interface{}                       `json:"properties,omitempty"`
}

RestComment struct for RestComment

func NewRestComment ¶

func NewRestComment() *RestComment

NewRestComment instantiates a new RestComment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestCommentWithDefaults ¶

func NewRestCommentWithDefaults() *RestComment

NewRestCommentWithDefaults instantiates a new RestComment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestComment) GetAnchor ¶

GetAnchor returns the Anchor field value if set, zero value otherwise.

func (*RestComment) GetAnchorOk ¶

GetAnchorOk returns a tuple with the Anchor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetAnchored ¶

func (o *RestComment) GetAnchored() bool

GetAnchored returns the Anchored field value if set, zero value otherwise.

func (*RestComment) GetAnchoredOk ¶

func (o *RestComment) GetAnchoredOk() (*bool, bool)

GetAnchoredOk returns a tuple with the Anchored field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetAuthor ¶

GetAuthor returns the Author field value if set, zero value otherwise.

func (*RestComment) GetAuthorOk ¶

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetComments ¶

func (o *RestComment) GetComments() []RestComment

GetComments returns the Comments field value if set, zero value otherwise.

func (*RestComment) GetCommentsOk ¶

func (o *RestComment) GetCommentsOk() ([]RestComment, bool)

GetCommentsOk returns a tuple with the Comments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetCreatedDate ¶

func (o *RestComment) GetCreatedDate() int64

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestComment) GetCreatedDateOk ¶

func (o *RestComment) GetCreatedDateOk() (*int64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetHtml ¶

func (o *RestComment) GetHtml() string

GetHtml returns the Html field value if set, zero value otherwise.

func (*RestComment) GetHtmlOk ¶

func (o *RestComment) GetHtmlOk() (*string, bool)

GetHtmlOk returns a tuple with the Html field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetId ¶

func (o *RestComment) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestComment) GetIdOk ¶

func (o *RestComment) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetParent ¶

GetParent returns the Parent field value if set, zero value otherwise.

func (*RestComment) GetParentOk ¶

func (o *RestComment) GetParentOk() (*RestUserReactionCommentParent, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetPending ¶

func (o *RestComment) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*RestComment) GetPendingOk ¶

func (o *RestComment) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetProperties ¶

func (o *RestComment) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*RestComment) GetPropertiesOk ¶

func (o *RestComment) GetPropertiesOk() (map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetReply ¶

func (o *RestComment) GetReply() bool

GetReply returns the Reply field value if set, zero value otherwise.

func (*RestComment) GetReplyOk ¶

func (o *RestComment) GetReplyOk() (*bool, bool)

GetReplyOk returns a tuple with the Reply field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetResolvedDate ¶

func (o *RestComment) GetResolvedDate() int64

GetResolvedDate returns the ResolvedDate field value if set, zero value otherwise.

func (*RestComment) GetResolvedDateOk ¶

func (o *RestComment) GetResolvedDateOk() (*int64, bool)

GetResolvedDateOk returns a tuple with the ResolvedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetResolver ¶

GetResolver returns the Resolver field value if set, zero value otherwise.

func (*RestComment) GetResolverOk ¶

GetResolverOk returns a tuple with the Resolver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetSeverity ¶

func (o *RestComment) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*RestComment) GetSeverityOk ¶

func (o *RestComment) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetState ¶

func (o *RestComment) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestComment) GetStateOk ¶

func (o *RestComment) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetText ¶

func (o *RestComment) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*RestComment) GetTextOk ¶

func (o *RestComment) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetThreadResolved ¶

func (o *RestComment) GetThreadResolved() bool

GetThreadResolved returns the ThreadResolved field value if set, zero value otherwise.

func (*RestComment) GetThreadResolvedDate ¶

func (o *RestComment) GetThreadResolvedDate() int64

GetThreadResolvedDate returns the ThreadResolvedDate field value if set, zero value otherwise.

func (*RestComment) GetThreadResolvedDateOk ¶

func (o *RestComment) GetThreadResolvedDateOk() (*int64, bool)

GetThreadResolvedDateOk returns a tuple with the ThreadResolvedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetThreadResolvedOk ¶

func (o *RestComment) GetThreadResolvedOk() (*bool, bool)

GetThreadResolvedOk returns a tuple with the ThreadResolved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetThreadResolver ¶

GetThreadResolver returns the ThreadResolver field value if set, zero value otherwise.

func (*RestComment) GetThreadResolverOk ¶

func (o *RestComment) GetThreadResolverOk() (*RestUserReactionCommentParentThreadResolver, bool)

GetThreadResolverOk returns a tuple with the ThreadResolver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetUpdatedDate ¶

func (o *RestComment) GetUpdatedDate() int64

GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.

func (*RestComment) GetUpdatedDateOk ¶

func (o *RestComment) GetUpdatedDateOk() (*int64, bool)

GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) GetVersion ¶

func (o *RestComment) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestComment) GetVersionOk ¶

func (o *RestComment) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestComment) HasAnchor ¶

func (o *RestComment) HasAnchor() bool

HasAnchor returns a boolean if a field has been set.

func (*RestComment) HasAnchored ¶

func (o *RestComment) HasAnchored() bool

HasAnchored returns a boolean if a field has been set.

func (*RestComment) HasAuthor ¶

func (o *RestComment) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*RestComment) HasComments ¶

func (o *RestComment) HasComments() bool

HasComments returns a boolean if a field has been set.

func (*RestComment) HasCreatedDate ¶

func (o *RestComment) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestComment) HasHtml ¶

func (o *RestComment) HasHtml() bool

HasHtml returns a boolean if a field has been set.

func (*RestComment) HasId ¶

func (o *RestComment) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestComment) HasParent ¶

func (o *RestComment) HasParent() bool

HasParent returns a boolean if a field has been set.

func (*RestComment) HasPending ¶

func (o *RestComment) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*RestComment) HasProperties ¶

func (o *RestComment) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*RestComment) HasReply ¶

func (o *RestComment) HasReply() bool

HasReply returns a boolean if a field has been set.

func (*RestComment) HasResolvedDate ¶

func (o *RestComment) HasResolvedDate() bool

HasResolvedDate returns a boolean if a field has been set.

func (*RestComment) HasResolver ¶

func (o *RestComment) HasResolver() bool

HasResolver returns a boolean if a field has been set.

func (*RestComment) HasSeverity ¶

func (o *RestComment) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*RestComment) HasState ¶

func (o *RestComment) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestComment) HasText ¶

func (o *RestComment) HasText() bool

HasText returns a boolean if a field has been set.

func (*RestComment) HasThreadResolved ¶

func (o *RestComment) HasThreadResolved() bool

HasThreadResolved returns a boolean if a field has been set.

func (*RestComment) HasThreadResolvedDate ¶

func (o *RestComment) HasThreadResolvedDate() bool

HasThreadResolvedDate returns a boolean if a field has been set.

func (*RestComment) HasThreadResolver ¶

func (o *RestComment) HasThreadResolver() bool

HasThreadResolver returns a boolean if a field has been set.

func (*RestComment) HasUpdatedDate ¶

func (o *RestComment) HasUpdatedDate() bool

HasUpdatedDate returns a boolean if a field has been set.

func (*RestComment) HasVersion ¶

func (o *RestComment) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestComment) MarshalJSON ¶

func (o RestComment) MarshalJSON() ([]byte, error)

func (*RestComment) SetAnchor ¶

SetAnchor gets a reference to the given RestUserReactionCommentParentAnchor and assigns it to the Anchor field.

func (*RestComment) SetAnchored ¶

func (o *RestComment) SetAnchored(v bool)

SetAnchored gets a reference to the given bool and assigns it to the Anchored field.

func (*RestComment) SetAuthor ¶

SetAuthor gets a reference to the given RestUserReactionCommentParentThreadResolver and assigns it to the Author field.

func (*RestComment) SetComments ¶

func (o *RestComment) SetComments(v []RestComment)

SetComments gets a reference to the given []RestComment and assigns it to the Comments field.

func (*RestComment) SetCreatedDate ¶

func (o *RestComment) SetCreatedDate(v int64)

SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.

func (*RestComment) SetHtml ¶

func (o *RestComment) SetHtml(v string)

SetHtml gets a reference to the given string and assigns it to the Html field.

func (*RestComment) SetId ¶

func (o *RestComment) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestComment) SetParent ¶

SetParent gets a reference to the given RestUserReactionCommentParent and assigns it to the Parent field.

func (*RestComment) SetPending ¶

func (o *RestComment) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*RestComment) SetProperties ¶

func (o *RestComment) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given map[string]interface{} and assigns it to the Properties field.

func (*RestComment) SetReply ¶

func (o *RestComment) SetReply(v bool)

SetReply gets a reference to the given bool and assigns it to the Reply field.

func (*RestComment) SetResolvedDate ¶

func (o *RestComment) SetResolvedDate(v int64)

SetResolvedDate gets a reference to the given int64 and assigns it to the ResolvedDate field.

func (*RestComment) SetResolver ¶

SetResolver gets a reference to the given RestUserReactionCommentParentThreadResolver and assigns it to the Resolver field.

func (*RestComment) SetSeverity ¶

func (o *RestComment) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*RestComment) SetState ¶

func (o *RestComment) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestComment) SetText ¶

func (o *RestComment) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (*RestComment) SetThreadResolved ¶

func (o *RestComment) SetThreadResolved(v bool)

SetThreadResolved gets a reference to the given bool and assigns it to the ThreadResolved field.

func (*RestComment) SetThreadResolvedDate ¶

func (o *RestComment) SetThreadResolvedDate(v int64)

SetThreadResolvedDate gets a reference to the given int64 and assigns it to the ThreadResolvedDate field.

func (*RestComment) SetThreadResolver ¶

SetThreadResolver gets a reference to the given RestUserReactionCommentParentThreadResolver and assigns it to the ThreadResolver field.

func (*RestComment) SetUpdatedDate ¶

func (o *RestComment) SetUpdatedDate(v int64)

SetUpdatedDate gets a reference to the given int64 and assigns it to the UpdatedDate field.

func (*RestComment) SetVersion ¶

func (o *RestComment) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestComment) ToMap ¶

func (o RestComment) ToMap() (map[string]interface{}, error)

type RestCommentJiraIssue ¶

type RestCommentJiraIssue struct {
	CommentId *int64  `json:"commentId,omitempty"`
	IssueKey  *string `json:"issueKey,omitempty"`
}

RestCommentJiraIssue struct for RestCommentJiraIssue

func NewRestCommentJiraIssue ¶

func NewRestCommentJiraIssue() *RestCommentJiraIssue

NewRestCommentJiraIssue instantiates a new RestCommentJiraIssue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestCommentJiraIssueWithDefaults ¶

func NewRestCommentJiraIssueWithDefaults() *RestCommentJiraIssue

NewRestCommentJiraIssueWithDefaults instantiates a new RestCommentJiraIssue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestCommentJiraIssue) GetCommentId ¶

func (o *RestCommentJiraIssue) GetCommentId() int64

GetCommentId returns the CommentId field value if set, zero value otherwise.

func (*RestCommentJiraIssue) GetCommentIdOk ¶

func (o *RestCommentJiraIssue) GetCommentIdOk() (*int64, bool)

GetCommentIdOk returns a tuple with the CommentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentJiraIssue) GetIssueKey ¶

func (o *RestCommentJiraIssue) GetIssueKey() string

GetIssueKey returns the IssueKey field value if set, zero value otherwise.

func (*RestCommentJiraIssue) GetIssueKeyOk ¶

func (o *RestCommentJiraIssue) GetIssueKeyOk() (*string, bool)

GetIssueKeyOk returns a tuple with the IssueKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentJiraIssue) HasCommentId ¶

func (o *RestCommentJiraIssue) HasCommentId() bool

HasCommentId returns a boolean if a field has been set.

func (*RestCommentJiraIssue) HasIssueKey ¶

func (o *RestCommentJiraIssue) HasIssueKey() bool

HasIssueKey returns a boolean if a field has been set.

func (RestCommentJiraIssue) MarshalJSON ¶

func (o RestCommentJiraIssue) MarshalJSON() ([]byte, error)

func (*RestCommentJiraIssue) SetCommentId ¶

func (o *RestCommentJiraIssue) SetCommentId(v int64)

SetCommentId gets a reference to the given int64 and assigns it to the CommentId field.

func (*RestCommentJiraIssue) SetIssueKey ¶

func (o *RestCommentJiraIssue) SetIssueKey(v string)

SetIssueKey gets a reference to the given string and assigns it to the IssueKey field.

func (RestCommentJiraIssue) ToMap ¶

func (o RestCommentJiraIssue) ToMap() (map[string]interface{}, error)

type RestCommentThreadDiffAnchor ¶

type RestCommentThreadDiffAnchor struct {
	Path        *RestCommentThreadDiffAnchorPath        `json:"path,omitempty"`
	LineType    *string                                 `json:"lineType,omitempty"`
	FromHash    *string                                 `json:"fromHash,omitempty"`
	FileType    *string                                 `json:"fileType,omitempty"`
	DiffType    *string                                 `json:"diffType,omitempty"`
	PullRequest *RestCommentThreadDiffAnchorPullRequest `json:"pullRequest,omitempty"`
	SrcPath     *RestCommentThreadDiffAnchorPath        `json:"srcPath,omitempty"`
	ToHash      *string                                 `json:"toHash,omitempty"`
	LineComment *bool                                   `json:"lineComment,omitempty"`
	Line        *int32                                  `json:"line,omitempty"`
}

RestCommentThreadDiffAnchor struct for RestCommentThreadDiffAnchor

func NewRestCommentThreadDiffAnchor ¶

func NewRestCommentThreadDiffAnchor() *RestCommentThreadDiffAnchor

NewRestCommentThreadDiffAnchor instantiates a new RestCommentThreadDiffAnchor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestCommentThreadDiffAnchorWithDefaults ¶

func NewRestCommentThreadDiffAnchorWithDefaults() *RestCommentThreadDiffAnchor

NewRestCommentThreadDiffAnchorWithDefaults instantiates a new RestCommentThreadDiffAnchor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestCommentThreadDiffAnchor) GetDiffType ¶

func (o *RestCommentThreadDiffAnchor) GetDiffType() string

GetDiffType returns the DiffType field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetDiffTypeOk ¶

func (o *RestCommentThreadDiffAnchor) GetDiffTypeOk() (*string, bool)

GetDiffTypeOk returns a tuple with the DiffType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) GetFileType ¶

func (o *RestCommentThreadDiffAnchor) GetFileType() string

GetFileType returns the FileType field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetFileTypeOk ¶

func (o *RestCommentThreadDiffAnchor) GetFileTypeOk() (*string, bool)

GetFileTypeOk returns a tuple with the FileType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) GetFromHash ¶

func (o *RestCommentThreadDiffAnchor) GetFromHash() string

GetFromHash returns the FromHash field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetFromHashOk ¶

func (o *RestCommentThreadDiffAnchor) GetFromHashOk() (*string, bool)

GetFromHashOk returns a tuple with the FromHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) GetLine ¶

func (o *RestCommentThreadDiffAnchor) GetLine() int32

GetLine returns the Line field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetLineComment ¶

func (o *RestCommentThreadDiffAnchor) GetLineComment() bool

GetLineComment returns the LineComment field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetLineCommentOk ¶

func (o *RestCommentThreadDiffAnchor) GetLineCommentOk() (*bool, bool)

GetLineCommentOk returns a tuple with the LineComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) GetLineOk ¶

func (o *RestCommentThreadDiffAnchor) GetLineOk() (*int32, bool)

GetLineOk returns a tuple with the Line field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) GetLineType ¶

func (o *RestCommentThreadDiffAnchor) GetLineType() string

GetLineType returns the LineType field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetLineTypeOk ¶

func (o *RestCommentThreadDiffAnchor) GetLineTypeOk() (*string, bool)

GetLineTypeOk returns a tuple with the LineType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) GetPath ¶

GetPath returns the Path field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetPathOk ¶

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) GetPullRequest ¶

GetPullRequest returns the PullRequest field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetPullRequestOk ¶

GetPullRequestOk returns a tuple with the PullRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) GetSrcPath ¶

GetSrcPath returns the SrcPath field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetSrcPathOk ¶

GetSrcPathOk returns a tuple with the SrcPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) GetToHash ¶

func (o *RestCommentThreadDiffAnchor) GetToHash() string

GetToHash returns the ToHash field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchor) GetToHashOk ¶

func (o *RestCommentThreadDiffAnchor) GetToHashOk() (*string, bool)

GetToHashOk returns a tuple with the ToHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchor) HasDiffType ¶

func (o *RestCommentThreadDiffAnchor) HasDiffType() bool

HasDiffType returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchor) HasFileType ¶

func (o *RestCommentThreadDiffAnchor) HasFileType() bool

HasFileType returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchor) HasFromHash ¶

func (o *RestCommentThreadDiffAnchor) HasFromHash() bool

HasFromHash returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchor) HasLine ¶

func (o *RestCommentThreadDiffAnchor) HasLine() bool

HasLine returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchor) HasLineComment ¶

func (o *RestCommentThreadDiffAnchor) HasLineComment() bool

HasLineComment returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchor) HasLineType ¶

func (o *RestCommentThreadDiffAnchor) HasLineType() bool

HasLineType returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchor) HasPath ¶

func (o *RestCommentThreadDiffAnchor) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchor) HasPullRequest ¶

func (o *RestCommentThreadDiffAnchor) HasPullRequest() bool

HasPullRequest returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchor) HasSrcPath ¶

func (o *RestCommentThreadDiffAnchor) HasSrcPath() bool

HasSrcPath returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchor) HasToHash ¶

func (o *RestCommentThreadDiffAnchor) HasToHash() bool

HasToHash returns a boolean if a field has been set.

func (RestCommentThreadDiffAnchor) MarshalJSON ¶

func (o RestCommentThreadDiffAnchor) MarshalJSON() ([]byte, error)

func (*RestCommentThreadDiffAnchor) SetDiffType ¶

func (o *RestCommentThreadDiffAnchor) SetDiffType(v string)

SetDiffType gets a reference to the given string and assigns it to the DiffType field.

func (*RestCommentThreadDiffAnchor) SetFileType ¶

func (o *RestCommentThreadDiffAnchor) SetFileType(v string)

SetFileType gets a reference to the given string and assigns it to the FileType field.

func (*RestCommentThreadDiffAnchor) SetFromHash ¶

func (o *RestCommentThreadDiffAnchor) SetFromHash(v string)

SetFromHash gets a reference to the given string and assigns it to the FromHash field.

func (*RestCommentThreadDiffAnchor) SetLine ¶

func (o *RestCommentThreadDiffAnchor) SetLine(v int32)

SetLine gets a reference to the given int32 and assigns it to the Line field.

func (*RestCommentThreadDiffAnchor) SetLineComment ¶

func (o *RestCommentThreadDiffAnchor) SetLineComment(v bool)

SetLineComment gets a reference to the given bool and assigns it to the LineComment field.

func (*RestCommentThreadDiffAnchor) SetLineType ¶

func (o *RestCommentThreadDiffAnchor) SetLineType(v string)

SetLineType gets a reference to the given string and assigns it to the LineType field.

func (*RestCommentThreadDiffAnchor) SetPath ¶

SetPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the Path field.

func (*RestCommentThreadDiffAnchor) SetPullRequest ¶

SetPullRequest gets a reference to the given RestCommentThreadDiffAnchorPullRequest and assigns it to the PullRequest field.

func (*RestCommentThreadDiffAnchor) SetSrcPath ¶

SetSrcPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the SrcPath field.

func (*RestCommentThreadDiffAnchor) SetToHash ¶

func (o *RestCommentThreadDiffAnchor) SetToHash(v string)

SetToHash gets a reference to the given string and assigns it to the ToHash field.

func (RestCommentThreadDiffAnchor) ToMap ¶

func (o RestCommentThreadDiffAnchor) ToMap() (map[string]interface{}, error)

type RestCommentThreadDiffAnchorPath ¶

type RestCommentThreadDiffAnchorPath struct {
	Name       *string  `json:"name,omitempty"`
	Parent     *string  `json:"parent,omitempty"`
	Extension  *string  `json:"extension,omitempty"`
	Components []string `json:"components,omitempty"`
}

RestCommentThreadDiffAnchorPath struct for RestCommentThreadDiffAnchorPath

func NewRestCommentThreadDiffAnchorPath ¶

func NewRestCommentThreadDiffAnchorPath() *RestCommentThreadDiffAnchorPath

NewRestCommentThreadDiffAnchorPath instantiates a new RestCommentThreadDiffAnchorPath object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestCommentThreadDiffAnchorPathWithDefaults ¶

func NewRestCommentThreadDiffAnchorPathWithDefaults() *RestCommentThreadDiffAnchorPath

NewRestCommentThreadDiffAnchorPathWithDefaults instantiates a new RestCommentThreadDiffAnchorPath object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestCommentThreadDiffAnchorPath) GetComponents ¶

func (o *RestCommentThreadDiffAnchorPath) GetComponents() []string

GetComponents returns the Components field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPath) GetComponentsOk ¶

func (o *RestCommentThreadDiffAnchorPath) GetComponentsOk() ([]string, bool)

GetComponentsOk returns a tuple with the Components field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPath) GetExtension ¶

func (o *RestCommentThreadDiffAnchorPath) GetExtension() string

GetExtension returns the Extension field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPath) GetExtensionOk ¶

func (o *RestCommentThreadDiffAnchorPath) GetExtensionOk() (*string, bool)

GetExtensionOk returns a tuple with the Extension field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPath) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPath) GetNameOk ¶

func (o *RestCommentThreadDiffAnchorPath) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPath) GetParent ¶

func (o *RestCommentThreadDiffAnchorPath) GetParent() string

GetParent returns the Parent field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPath) GetParentOk ¶

func (o *RestCommentThreadDiffAnchorPath) GetParentOk() (*string, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPath) HasComponents ¶

func (o *RestCommentThreadDiffAnchorPath) HasComponents() bool

HasComponents returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPath) HasExtension ¶

func (o *RestCommentThreadDiffAnchorPath) HasExtension() bool

HasExtension returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPath) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPath) HasParent ¶

func (o *RestCommentThreadDiffAnchorPath) HasParent() bool

HasParent returns a boolean if a field has been set.

func (RestCommentThreadDiffAnchorPath) MarshalJSON ¶

func (o RestCommentThreadDiffAnchorPath) MarshalJSON() ([]byte, error)

func (*RestCommentThreadDiffAnchorPath) SetComponents ¶

func (o *RestCommentThreadDiffAnchorPath) SetComponents(v []string)

SetComponents gets a reference to the given []string and assigns it to the Components field.

func (*RestCommentThreadDiffAnchorPath) SetExtension ¶

func (o *RestCommentThreadDiffAnchorPath) SetExtension(v string)

SetExtension gets a reference to the given string and assigns it to the Extension field.

func (*RestCommentThreadDiffAnchorPath) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestCommentThreadDiffAnchorPath) SetParent ¶

func (o *RestCommentThreadDiffAnchorPath) SetParent(v string)

SetParent gets a reference to the given string and assigns it to the Parent field.

func (RestCommentThreadDiffAnchorPath) ToMap ¶

func (o RestCommentThreadDiffAnchorPath) ToMap() (map[string]interface{}, error)

type RestCommentThreadDiffAnchorPullRequest ¶

type RestCommentThreadDiffAnchorPullRequest struct {
	Locked          *bool                        `json:"locked,omitempty"`
	Version         *int32                       `json:"version,omitempty"`
	Id              *int64                       `json:"id,omitempty"`
	State           *string                      `json:"state,omitempty"`
	Open            *bool                        `json:"open,omitempty"`
	Description     *string                      `json:"description,omitempty"`
	ClosedDate      *int64                       `json:"closedDate,omitempty"`
	FromRef         *RestPullRequestFromRef      `json:"fromRef,omitempty"`
	Participants    []RestPullRequestParticipant `json:"participants,omitempty"`
	Reviewers       []RestPullRequestParticipant `json:"reviewers,omitempty"`
	UpdatedDate     *int64                       `json:"updatedDate,omitempty"`
	HtmlDescription *string                      `json:"htmlDescription,omitempty"`
	CreatedDate     *int64                       `json:"createdDate,omitempty"`
	Closed          *bool                        `json:"closed,omitempty"`
	Title           *string                      `json:"title,omitempty"`
	ToRef           *RestPullRequestFromRef      `json:"toRef,omitempty"`
	Links           map[string]interface{}       `json:"links,omitempty"`
}

RestCommentThreadDiffAnchorPullRequest struct for RestCommentThreadDiffAnchorPullRequest

func NewRestCommentThreadDiffAnchorPullRequest ¶

func NewRestCommentThreadDiffAnchorPullRequest() *RestCommentThreadDiffAnchorPullRequest

NewRestCommentThreadDiffAnchorPullRequest instantiates a new RestCommentThreadDiffAnchorPullRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestCommentThreadDiffAnchorPullRequestWithDefaults ¶

func NewRestCommentThreadDiffAnchorPullRequestWithDefaults() *RestCommentThreadDiffAnchorPullRequest

NewRestCommentThreadDiffAnchorPullRequestWithDefaults instantiates a new RestCommentThreadDiffAnchorPullRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestCommentThreadDiffAnchorPullRequest) GetClosed ¶

GetClosed returns the Closed field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetClosedDate ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetClosedDate() int64

GetClosedDate returns the ClosedDate field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetClosedDateOk ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetClosedDateOk() (*int64, bool)

GetClosedDateOk returns a tuple with the ClosedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetClosedOk ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetClosedOk() (*bool, bool)

GetClosedOk returns a tuple with the Closed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetCreatedDate ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetCreatedDate() int64

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetCreatedDateOk ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetCreatedDateOk() (*int64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetDescription ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetDescriptionOk ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetFromRef ¶

GetFromRef returns the FromRef field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetFromRefOk ¶

GetFromRefOk returns a tuple with the FromRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetHtmlDescription ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetHtmlDescription() string

GetHtmlDescription returns the HtmlDescription field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetHtmlDescriptionOk ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetHtmlDescriptionOk() (*string, bool)

GetHtmlDescriptionOk returns a tuple with the HtmlDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestCommentThreadDiffAnchorPullRequest) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetLinksOk ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetLocked ¶

GetLocked returns the Locked field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetLockedOk ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetOpen ¶

GetOpen returns the Open field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetOpenOk ¶

GetOpenOk returns a tuple with the Open field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetParticipants ¶

GetParticipants returns the Participants field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetParticipantsOk ¶

GetParticipantsOk returns a tuple with the Participants field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetReviewers ¶

GetReviewers returns the Reviewers field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetReviewersOk ¶

GetReviewersOk returns a tuple with the Reviewers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetState ¶

GetState returns the State field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetStateOk ¶

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetTitle ¶

GetTitle returns the Title field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetTitleOk ¶

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetToRef ¶

GetToRef returns the ToRef field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetToRefOk ¶

GetToRefOk returns a tuple with the ToRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetUpdatedDate ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetUpdatedDate() int64

GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetUpdatedDateOk ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetUpdatedDateOk() (*int64, bool)

GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) GetVersion ¶

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestCommentThreadDiffAnchorPullRequest) GetVersionOk ¶

func (o *RestCommentThreadDiffAnchorPullRequest) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasClosed ¶

HasClosed returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasClosedDate ¶

func (o *RestCommentThreadDiffAnchorPullRequest) HasClosedDate() bool

HasClosedDate returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasCreatedDate ¶

func (o *RestCommentThreadDiffAnchorPullRequest) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasDescription ¶

func (o *RestCommentThreadDiffAnchorPullRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasFromRef ¶

HasFromRef returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasHtmlDescription ¶

func (o *RestCommentThreadDiffAnchorPullRequest) HasHtmlDescription() bool

HasHtmlDescription returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasId ¶

HasId returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasLocked ¶

HasLocked returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasOpen ¶

HasOpen returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasParticipants ¶

func (o *RestCommentThreadDiffAnchorPullRequest) HasParticipants() bool

HasParticipants returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasReviewers ¶

func (o *RestCommentThreadDiffAnchorPullRequest) HasReviewers() bool

HasReviewers returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasState ¶

HasState returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasTitle ¶

HasTitle returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasToRef ¶

HasToRef returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasUpdatedDate ¶

func (o *RestCommentThreadDiffAnchorPullRequest) HasUpdatedDate() bool

HasUpdatedDate returns a boolean if a field has been set.

func (*RestCommentThreadDiffAnchorPullRequest) HasVersion ¶

HasVersion returns a boolean if a field has been set.

func (RestCommentThreadDiffAnchorPullRequest) MarshalJSON ¶

func (o RestCommentThreadDiffAnchorPullRequest) MarshalJSON() ([]byte, error)

func (*RestCommentThreadDiffAnchorPullRequest) SetClosed ¶

SetClosed gets a reference to the given bool and assigns it to the Closed field.

func (*RestCommentThreadDiffAnchorPullRequest) SetClosedDate ¶

func (o *RestCommentThreadDiffAnchorPullRequest) SetClosedDate(v int64)

SetClosedDate gets a reference to the given int64 and assigns it to the ClosedDate field.

func (*RestCommentThreadDiffAnchorPullRequest) SetCreatedDate ¶

func (o *RestCommentThreadDiffAnchorPullRequest) SetCreatedDate(v int64)

SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.

func (*RestCommentThreadDiffAnchorPullRequest) SetDescription ¶

func (o *RestCommentThreadDiffAnchorPullRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestCommentThreadDiffAnchorPullRequest) SetFromRef ¶

SetFromRef gets a reference to the given RestPullRequestFromRef and assigns it to the FromRef field.

func (*RestCommentThreadDiffAnchorPullRequest) SetHtmlDescription ¶

func (o *RestCommentThreadDiffAnchorPullRequest) SetHtmlDescription(v string)

SetHtmlDescription gets a reference to the given string and assigns it to the HtmlDescription field.

func (*RestCommentThreadDiffAnchorPullRequest) SetId ¶

SetId gets a reference to the given int64 and assigns it to the Id field.

func (o *RestCommentThreadDiffAnchorPullRequest) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestCommentThreadDiffAnchorPullRequest) SetLocked ¶

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*RestCommentThreadDiffAnchorPullRequest) SetOpen ¶

SetOpen gets a reference to the given bool and assigns it to the Open field.

func (*RestCommentThreadDiffAnchorPullRequest) SetParticipants ¶

SetParticipants gets a reference to the given []RestPullRequestParticipant and assigns it to the Participants field.

func (*RestCommentThreadDiffAnchorPullRequest) SetReviewers ¶

SetReviewers gets a reference to the given []RestPullRequestParticipant and assigns it to the Reviewers field.

func (*RestCommentThreadDiffAnchorPullRequest) SetState ¶

SetState gets a reference to the given string and assigns it to the State field.

func (*RestCommentThreadDiffAnchorPullRequest) SetTitle ¶

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*RestCommentThreadDiffAnchorPullRequest) SetToRef ¶

SetToRef gets a reference to the given RestPullRequestFromRef and assigns it to the ToRef field.

func (*RestCommentThreadDiffAnchorPullRequest) SetUpdatedDate ¶

func (o *RestCommentThreadDiffAnchorPullRequest) SetUpdatedDate(v int64)

SetUpdatedDate gets a reference to the given int64 and assigns it to the UpdatedDate field.

func (*RestCommentThreadDiffAnchorPullRequest) SetVersion ¶

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestCommentThreadDiffAnchorPullRequest) ToMap ¶

func (o RestCommentThreadDiffAnchorPullRequest) ToMap() (map[string]interface{}, error)

type RestCommit ¶

type RestCommit struct {
	Message            *string                         `json:"message,omitempty"`
	CommitterTimestamp *int64                          `json:"committerTimestamp,omitempty"`
	Committer          *RestChangesetToCommitCommitter `json:"committer,omitempty"`
	AuthorTimestamp    *int64                          `json:"authorTimestamp,omitempty"`
	Parents            []RestMinimalCommit             `json:"parents,omitempty"`
	Author             *RestChangesetToCommitCommitter `json:"author,omitempty"`
	Id                 *string                         `json:"id,omitempty"`
	DisplayId          *string                         `json:"displayId,omitempty"`
}

RestCommit struct for RestCommit

func NewRestCommit ¶

func NewRestCommit() *RestCommit

NewRestCommit instantiates a new RestCommit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestCommitWithDefaults ¶

func NewRestCommitWithDefaults() *RestCommit

NewRestCommitWithDefaults instantiates a new RestCommit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestCommit) GetAuthor ¶

GetAuthor returns the Author field value if set, zero value otherwise.

func (*RestCommit) GetAuthorOk ¶

func (o *RestCommit) GetAuthorOk() (*RestChangesetToCommitCommitter, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommit) GetAuthorTimestamp ¶

func (o *RestCommit) GetAuthorTimestamp() int64

GetAuthorTimestamp returns the AuthorTimestamp field value if set, zero value otherwise.

func (*RestCommit) GetAuthorTimestampOk ¶

func (o *RestCommit) GetAuthorTimestampOk() (*int64, bool)

GetAuthorTimestampOk returns a tuple with the AuthorTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommit) GetCommitter ¶

func (o *RestCommit) GetCommitter() RestChangesetToCommitCommitter

GetCommitter returns the Committer field value if set, zero value otherwise.

func (*RestCommit) GetCommitterOk ¶

func (o *RestCommit) GetCommitterOk() (*RestChangesetToCommitCommitter, bool)

GetCommitterOk returns a tuple with the Committer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommit) GetCommitterTimestamp ¶

func (o *RestCommit) GetCommitterTimestamp() int64

GetCommitterTimestamp returns the CommitterTimestamp field value if set, zero value otherwise.

func (*RestCommit) GetCommitterTimestampOk ¶

func (o *RestCommit) GetCommitterTimestampOk() (*int64, bool)

GetCommitterTimestampOk returns a tuple with the CommitterTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommit) GetDisplayId ¶

func (o *RestCommit) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestCommit) GetDisplayIdOk ¶

func (o *RestCommit) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommit) GetId ¶

func (o *RestCommit) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestCommit) GetIdOk ¶

func (o *RestCommit) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommit) GetMessage ¶

func (o *RestCommit) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestCommit) GetMessageOk ¶

func (o *RestCommit) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommit) GetParents ¶

func (o *RestCommit) GetParents() []RestMinimalCommit

GetParents returns the Parents field value if set, zero value otherwise.

func (*RestCommit) GetParentsOk ¶

func (o *RestCommit) GetParentsOk() ([]RestMinimalCommit, bool)

GetParentsOk returns a tuple with the Parents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommit) HasAuthor ¶

func (o *RestCommit) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*RestCommit) HasAuthorTimestamp ¶

func (o *RestCommit) HasAuthorTimestamp() bool

HasAuthorTimestamp returns a boolean if a field has been set.

func (*RestCommit) HasCommitter ¶

func (o *RestCommit) HasCommitter() bool

HasCommitter returns a boolean if a field has been set.

func (*RestCommit) HasCommitterTimestamp ¶

func (o *RestCommit) HasCommitterTimestamp() bool

HasCommitterTimestamp returns a boolean if a field has been set.

func (*RestCommit) HasDisplayId ¶

func (o *RestCommit) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestCommit) HasId ¶

func (o *RestCommit) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestCommit) HasMessage ¶

func (o *RestCommit) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestCommit) HasParents ¶

func (o *RestCommit) HasParents() bool

HasParents returns a boolean if a field has been set.

func (RestCommit) MarshalJSON ¶

func (o RestCommit) MarshalJSON() ([]byte, error)

func (*RestCommit) SetAuthor ¶

SetAuthor gets a reference to the given RestChangesetToCommitCommitter and assigns it to the Author field.

func (*RestCommit) SetAuthorTimestamp ¶

func (o *RestCommit) SetAuthorTimestamp(v int64)

SetAuthorTimestamp gets a reference to the given int64 and assigns it to the AuthorTimestamp field.

func (*RestCommit) SetCommitter ¶

func (o *RestCommit) SetCommitter(v RestChangesetToCommitCommitter)

SetCommitter gets a reference to the given RestChangesetToCommitCommitter and assigns it to the Committer field.

func (*RestCommit) SetCommitterTimestamp ¶

func (o *RestCommit) SetCommitterTimestamp(v int64)

SetCommitterTimestamp gets a reference to the given int64 and assigns it to the CommitterTimestamp field.

func (*RestCommit) SetDisplayId ¶

func (o *RestCommit) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestCommit) SetId ¶

func (o *RestCommit) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestCommit) SetMessage ¶

func (o *RestCommit) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestCommit) SetParents ¶

func (o *RestCommit) SetParents(v []RestMinimalCommit)

SetParents gets a reference to the given []RestMinimalCommit and assigns it to the Parents field.

func (RestCommit) ToMap ¶

func (o RestCommit) ToMap() (map[string]interface{}, error)

type RestCommitMessageSuggestion ¶

type RestCommitMessageSuggestion struct {
	Title *string `json:"title,omitempty"`
	Body  *string `json:"body,omitempty"`
}

RestCommitMessageSuggestion struct for RestCommitMessageSuggestion

func NewRestCommitMessageSuggestion ¶

func NewRestCommitMessageSuggestion() *RestCommitMessageSuggestion

NewRestCommitMessageSuggestion instantiates a new RestCommitMessageSuggestion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestCommitMessageSuggestionWithDefaults ¶

func NewRestCommitMessageSuggestionWithDefaults() *RestCommitMessageSuggestion

NewRestCommitMessageSuggestionWithDefaults instantiates a new RestCommitMessageSuggestion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestCommitMessageSuggestion) GetBody ¶

func (o *RestCommitMessageSuggestion) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*RestCommitMessageSuggestion) GetBodyOk ¶

func (o *RestCommitMessageSuggestion) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommitMessageSuggestion) GetTitle ¶

func (o *RestCommitMessageSuggestion) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*RestCommitMessageSuggestion) GetTitleOk ¶

func (o *RestCommitMessageSuggestion) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCommitMessageSuggestion) HasBody ¶

func (o *RestCommitMessageSuggestion) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*RestCommitMessageSuggestion) HasTitle ¶

func (o *RestCommitMessageSuggestion) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (RestCommitMessageSuggestion) MarshalJSON ¶

func (o RestCommitMessageSuggestion) MarshalJSON() ([]byte, error)

func (*RestCommitMessageSuggestion) SetBody ¶

func (o *RestCommitMessageSuggestion) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*RestCommitMessageSuggestion) SetTitle ¶

func (o *RestCommitMessageSuggestion) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (RestCommitMessageSuggestion) ToMap ¶

func (o RestCommitMessageSuggestion) ToMap() (map[string]interface{}, error)

type RestConflict ¶

type RestConflict struct {
	TheirChange *RestChangeConflictTheirChange `json:"theirChange,omitempty"`
	OurChange   *RestChangeConflictTheirChange `json:"ourChange,omitempty"`
}

RestConflict struct for RestConflict

func NewRestConflict ¶

func NewRestConflict() *RestConflict

NewRestConflict instantiates a new RestConflict object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestConflictWithDefaults ¶

func NewRestConflictWithDefaults() *RestConflict

NewRestConflictWithDefaults instantiates a new RestConflict object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestConflict) GetOurChange ¶

func (o *RestConflict) GetOurChange() RestChangeConflictTheirChange

GetOurChange returns the OurChange field value if set, zero value otherwise.

func (*RestConflict) GetOurChangeOk ¶

func (o *RestConflict) GetOurChangeOk() (*RestChangeConflictTheirChange, bool)

GetOurChangeOk returns a tuple with the OurChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestConflict) GetTheirChange ¶

func (o *RestConflict) GetTheirChange() RestChangeConflictTheirChange

GetTheirChange returns the TheirChange field value if set, zero value otherwise.

func (*RestConflict) GetTheirChangeOk ¶

func (o *RestConflict) GetTheirChangeOk() (*RestChangeConflictTheirChange, bool)

GetTheirChangeOk returns a tuple with the TheirChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestConflict) HasOurChange ¶

func (o *RestConflict) HasOurChange() bool

HasOurChange returns a boolean if a field has been set.

func (*RestConflict) HasTheirChange ¶

func (o *RestConflict) HasTheirChange() bool

HasTheirChange returns a boolean if a field has been set.

func (RestConflict) MarshalJSON ¶

func (o RestConflict) MarshalJSON() ([]byte, error)

func (*RestConflict) SetOurChange ¶

func (o *RestConflict) SetOurChange(v RestChangeConflictTheirChange)

SetOurChange gets a reference to the given RestChangeConflictTheirChange and assigns it to the OurChange field.

func (*RestConflict) SetTheirChange ¶

func (o *RestConflict) SetTheirChange(v RestChangeConflictTheirChange)

SetTheirChange gets a reference to the given RestChangeConflictTheirChange and assigns it to the TheirChange field.

func (RestConflict) ToMap ¶

func (o RestConflict) ToMap() (map[string]interface{}, error)

type RestConflictChange ¶

type RestConflictChange struct {
	Type    *string                          `json:"type,omitempty"`
	Path    *RestCommentThreadDiffAnchorPath `json:"path,omitempty"`
	SrcPath *RestCommentThreadDiffAnchorPath `json:"srcPath,omitempty"`
}

RestConflictChange struct for RestConflictChange

func NewRestConflictChange ¶

func NewRestConflictChange() *RestConflictChange

NewRestConflictChange instantiates a new RestConflictChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestConflictChangeWithDefaults ¶

func NewRestConflictChangeWithDefaults() *RestConflictChange

NewRestConflictChangeWithDefaults instantiates a new RestConflictChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestConflictChange) GetPath ¶

GetPath returns the Path field value if set, zero value otherwise.

func (*RestConflictChange) GetPathOk ¶

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestConflictChange) GetSrcPath ¶

GetSrcPath returns the SrcPath field value if set, zero value otherwise.

func (*RestConflictChange) GetSrcPathOk ¶

GetSrcPathOk returns a tuple with the SrcPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestConflictChange) GetType ¶

func (o *RestConflictChange) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestConflictChange) GetTypeOk ¶

func (o *RestConflictChange) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestConflictChange) HasPath ¶

func (o *RestConflictChange) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*RestConflictChange) HasSrcPath ¶

func (o *RestConflictChange) HasSrcPath() bool

HasSrcPath returns a boolean if a field has been set.

func (*RestConflictChange) HasType ¶

func (o *RestConflictChange) HasType() bool

HasType returns a boolean if a field has been set.

func (RestConflictChange) MarshalJSON ¶

func (o RestConflictChange) MarshalJSON() ([]byte, error)

func (*RestConflictChange) SetPath ¶

SetPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the Path field.

func (*RestConflictChange) SetSrcPath ¶

SetSrcPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the SrcPath field.

func (*RestConflictChange) SetType ¶

func (o *RestConflictChange) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestConflictChange) ToMap ¶

func (o RestConflictChange) ToMap() (map[string]interface{}, error)

type RestConnectivitySummary ¶

type RestConnectivitySummary struct {
	RoundTripTime *int64  `json:"roundTripTime,omitempty"`
	Reachable     *bool   `json:"reachable,omitempty"`
	ErrorMessage  *string `json:"errorMessage,omitempty"`
}

RestConnectivitySummary struct for RestConnectivitySummary

func NewRestConnectivitySummary ¶

func NewRestConnectivitySummary() *RestConnectivitySummary

NewRestConnectivitySummary instantiates a new RestConnectivitySummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestConnectivitySummaryWithDefaults ¶

func NewRestConnectivitySummaryWithDefaults() *RestConnectivitySummary

NewRestConnectivitySummaryWithDefaults instantiates a new RestConnectivitySummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestConnectivitySummary) GetErrorMessage ¶

func (o *RestConnectivitySummary) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise.

func (*RestConnectivitySummary) GetErrorMessageOk ¶

func (o *RestConnectivitySummary) GetErrorMessageOk() (*string, bool)

GetErrorMessageOk returns a tuple with the ErrorMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestConnectivitySummary) GetReachable ¶

func (o *RestConnectivitySummary) GetReachable() bool

GetReachable returns the Reachable field value if set, zero value otherwise.

func (*RestConnectivitySummary) GetReachableOk ¶

func (o *RestConnectivitySummary) GetReachableOk() (*bool, bool)

GetReachableOk returns a tuple with the Reachable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestConnectivitySummary) GetRoundTripTime ¶

func (o *RestConnectivitySummary) GetRoundTripTime() int64

GetRoundTripTime returns the RoundTripTime field value if set, zero value otherwise.

func (*RestConnectivitySummary) GetRoundTripTimeOk ¶

func (o *RestConnectivitySummary) GetRoundTripTimeOk() (*int64, bool)

GetRoundTripTimeOk returns a tuple with the RoundTripTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestConnectivitySummary) HasErrorMessage ¶

func (o *RestConnectivitySummary) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*RestConnectivitySummary) HasReachable ¶

func (o *RestConnectivitySummary) HasReachable() bool

HasReachable returns a boolean if a field has been set.

func (*RestConnectivitySummary) HasRoundTripTime ¶

func (o *RestConnectivitySummary) HasRoundTripTime() bool

HasRoundTripTime returns a boolean if a field has been set.

func (RestConnectivitySummary) MarshalJSON ¶

func (o RestConnectivitySummary) MarshalJSON() ([]byte, error)

func (*RestConnectivitySummary) SetErrorMessage ¶

func (o *RestConnectivitySummary) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given string and assigns it to the ErrorMessage field.

func (*RestConnectivitySummary) SetReachable ¶

func (o *RestConnectivitySummary) SetReachable(v bool)

SetReachable gets a reference to the given bool and assigns it to the Reachable field.

func (*RestConnectivitySummary) SetRoundTripTime ¶

func (o *RestConnectivitySummary) SetRoundTripTime(v int64)

SetRoundTripTime gets a reference to the given int64 and assigns it to the RoundTripTime field.

func (RestConnectivitySummary) ToMap ¶

func (o RestConnectivitySummary) ToMap() (map[string]interface{}, error)

type RestCreateBranchRequest ¶

type RestCreateBranchRequest struct {
	Message    *string `json:"message,omitempty"`
	Name       *string `json:"name,omitempty"`
	StartPoint *string `json:"startPoint,omitempty"`
}

RestCreateBranchRequest struct for RestCreateBranchRequest

func NewRestCreateBranchRequest ¶

func NewRestCreateBranchRequest() *RestCreateBranchRequest

NewRestCreateBranchRequest instantiates a new RestCreateBranchRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestCreateBranchRequestWithDefaults ¶

func NewRestCreateBranchRequestWithDefaults() *RestCreateBranchRequest

NewRestCreateBranchRequestWithDefaults instantiates a new RestCreateBranchRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestCreateBranchRequest) GetMessage ¶

func (o *RestCreateBranchRequest) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestCreateBranchRequest) GetMessageOk ¶

func (o *RestCreateBranchRequest) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCreateBranchRequest) GetName ¶

func (o *RestCreateBranchRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestCreateBranchRequest) GetNameOk ¶

func (o *RestCreateBranchRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCreateBranchRequest) GetStartPoint ¶

func (o *RestCreateBranchRequest) GetStartPoint() string

GetStartPoint returns the StartPoint field value if set, zero value otherwise.

func (*RestCreateBranchRequest) GetStartPointOk ¶

func (o *RestCreateBranchRequest) GetStartPointOk() (*string, bool)

GetStartPointOk returns a tuple with the StartPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCreateBranchRequest) HasMessage ¶

func (o *RestCreateBranchRequest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestCreateBranchRequest) HasName ¶

func (o *RestCreateBranchRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestCreateBranchRequest) HasStartPoint ¶

func (o *RestCreateBranchRequest) HasStartPoint() bool

HasStartPoint returns a boolean if a field has been set.

func (RestCreateBranchRequest) MarshalJSON ¶

func (o RestCreateBranchRequest) MarshalJSON() ([]byte, error)

func (*RestCreateBranchRequest) SetMessage ¶

func (o *RestCreateBranchRequest) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestCreateBranchRequest) SetName ¶

func (o *RestCreateBranchRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestCreateBranchRequest) SetStartPoint ¶

func (o *RestCreateBranchRequest) SetStartPoint(v string)

SetStartPoint gets a reference to the given string and assigns it to the StartPoint field.

func (RestCreateBranchRequest) ToMap ¶

func (o RestCreateBranchRequest) ToMap() (map[string]interface{}, error)

type RestCreateTagRequest ¶

type RestCreateTagRequest struct {
	Message    *string `json:"message,omitempty"`
	Name       *string `json:"name,omitempty"`
	StartPoint *string `json:"startPoint,omitempty"`
}

RestCreateTagRequest struct for RestCreateTagRequest

func NewRestCreateTagRequest ¶

func NewRestCreateTagRequest() *RestCreateTagRequest

NewRestCreateTagRequest instantiates a new RestCreateTagRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestCreateTagRequestWithDefaults ¶

func NewRestCreateTagRequestWithDefaults() *RestCreateTagRequest

NewRestCreateTagRequestWithDefaults instantiates a new RestCreateTagRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestCreateTagRequest) GetMessage ¶

func (o *RestCreateTagRequest) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestCreateTagRequest) GetMessageOk ¶

func (o *RestCreateTagRequest) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCreateTagRequest) GetName ¶

func (o *RestCreateTagRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestCreateTagRequest) GetNameOk ¶

func (o *RestCreateTagRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCreateTagRequest) GetStartPoint ¶

func (o *RestCreateTagRequest) GetStartPoint() string

GetStartPoint returns the StartPoint field value if set, zero value otherwise.

func (*RestCreateTagRequest) GetStartPointOk ¶

func (o *RestCreateTagRequest) GetStartPointOk() (*string, bool)

GetStartPointOk returns a tuple with the StartPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestCreateTagRequest) HasMessage ¶

func (o *RestCreateTagRequest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestCreateTagRequest) HasName ¶

func (o *RestCreateTagRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestCreateTagRequest) HasStartPoint ¶

func (o *RestCreateTagRequest) HasStartPoint() bool

HasStartPoint returns a boolean if a field has been set.

func (RestCreateTagRequest) MarshalJSON ¶

func (o RestCreateTagRequest) MarshalJSON() ([]byte, error)

func (*RestCreateTagRequest) SetMessage ¶

func (o *RestCreateTagRequest) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestCreateTagRequest) SetName ¶

func (o *RestCreateTagRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestCreateTagRequest) SetStartPoint ¶

func (o *RestCreateTagRequest) SetStartPoint(v string)

SetStartPoint gets a reference to the given string and assigns it to the StartPoint field.

func (RestCreateTagRequest) ToMap ¶

func (o RestCreateTagRequest) ToMap() (map[string]interface{}, error)

type RestDefaultBranch ¶

type RestDefaultBranch struct {
	Id *string `json:"id,omitempty"`
}

RestDefaultBranch struct for RestDefaultBranch

func NewRestDefaultBranch ¶

func NewRestDefaultBranch() *RestDefaultBranch

NewRestDefaultBranch instantiates a new RestDefaultBranch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDefaultBranchWithDefaults ¶

func NewRestDefaultBranchWithDefaults() *RestDefaultBranch

NewRestDefaultBranchWithDefaults instantiates a new RestDefaultBranch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDefaultBranch) GetId ¶

func (o *RestDefaultBranch) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestDefaultBranch) GetIdOk ¶

func (o *RestDefaultBranch) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDefaultBranch) HasId ¶

func (o *RestDefaultBranch) HasId() bool

HasId returns a boolean if a field has been set.

func (RestDefaultBranch) MarshalJSON ¶

func (o RestDefaultBranch) MarshalJSON() ([]byte, error)

func (*RestDefaultBranch) SetId ¶

func (o *RestDefaultBranch) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (RestDefaultBranch) ToMap ¶

func (o RestDefaultBranch) ToMap() (map[string]interface{}, error)

type RestDefaultReviewersRequest ¶

type RestDefaultReviewersRequest struct {
	RequiredApprovals *int32                                           `json:"requiredApprovals,omitempty"`
	Reviewers         []RestApplicationUser                            `json:"reviewers,omitempty"`
	SourceMatcher     *UpdatePullRequestCondition1RequestSourceMatcher `json:"sourceMatcher,omitempty"`
	TargetMatcher     *UpdatePullRequestCondition1RequestSourceMatcher `json:"targetMatcher,omitempty"`
}

RestDefaultReviewersRequest struct for RestDefaultReviewersRequest

func NewRestDefaultReviewersRequest ¶

func NewRestDefaultReviewersRequest() *RestDefaultReviewersRequest

NewRestDefaultReviewersRequest instantiates a new RestDefaultReviewersRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDefaultReviewersRequestWithDefaults ¶

func NewRestDefaultReviewersRequestWithDefaults() *RestDefaultReviewersRequest

NewRestDefaultReviewersRequestWithDefaults instantiates a new RestDefaultReviewersRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDefaultReviewersRequest) GetRequiredApprovals ¶

func (o *RestDefaultReviewersRequest) GetRequiredApprovals() int32

GetRequiredApprovals returns the RequiredApprovals field value if set, zero value otherwise.

func (*RestDefaultReviewersRequest) GetRequiredApprovalsOk ¶

func (o *RestDefaultReviewersRequest) GetRequiredApprovalsOk() (*int32, bool)

GetRequiredApprovalsOk returns a tuple with the RequiredApprovals field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDefaultReviewersRequest) GetReviewers ¶

GetReviewers returns the Reviewers field value if set, zero value otherwise.

func (*RestDefaultReviewersRequest) GetReviewersOk ¶

func (o *RestDefaultReviewersRequest) GetReviewersOk() ([]RestApplicationUser, bool)

GetReviewersOk returns a tuple with the Reviewers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDefaultReviewersRequest) GetSourceMatcher ¶

GetSourceMatcher returns the SourceMatcher field value if set, zero value otherwise.

func (*RestDefaultReviewersRequest) GetSourceMatcherOk ¶

GetSourceMatcherOk returns a tuple with the SourceMatcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDefaultReviewersRequest) GetTargetMatcher ¶

GetTargetMatcher returns the TargetMatcher field value if set, zero value otherwise.

func (*RestDefaultReviewersRequest) GetTargetMatcherOk ¶

GetTargetMatcherOk returns a tuple with the TargetMatcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDefaultReviewersRequest) HasRequiredApprovals ¶

func (o *RestDefaultReviewersRequest) HasRequiredApprovals() bool

HasRequiredApprovals returns a boolean if a field has been set.

func (*RestDefaultReviewersRequest) HasReviewers ¶

func (o *RestDefaultReviewersRequest) HasReviewers() bool

HasReviewers returns a boolean if a field has been set.

func (*RestDefaultReviewersRequest) HasSourceMatcher ¶

func (o *RestDefaultReviewersRequest) HasSourceMatcher() bool

HasSourceMatcher returns a boolean if a field has been set.

func (*RestDefaultReviewersRequest) HasTargetMatcher ¶

func (o *RestDefaultReviewersRequest) HasTargetMatcher() bool

HasTargetMatcher returns a boolean if a field has been set.

func (RestDefaultReviewersRequest) MarshalJSON ¶

func (o RestDefaultReviewersRequest) MarshalJSON() ([]byte, error)

func (*RestDefaultReviewersRequest) SetRequiredApprovals ¶

func (o *RestDefaultReviewersRequest) SetRequiredApprovals(v int32)

SetRequiredApprovals gets a reference to the given int32 and assigns it to the RequiredApprovals field.

func (*RestDefaultReviewersRequest) SetReviewers ¶

func (o *RestDefaultReviewersRequest) SetReviewers(v []RestApplicationUser)

SetReviewers gets a reference to the given []RestApplicationUser and assigns it to the Reviewers field.

func (*RestDefaultReviewersRequest) SetSourceMatcher ¶

SetSourceMatcher gets a reference to the given UpdatePullRequestCondition1RequestSourceMatcher and assigns it to the SourceMatcher field.

func (*RestDefaultReviewersRequest) SetTargetMatcher ¶

SetTargetMatcher gets a reference to the given UpdatePullRequestCondition1RequestSourceMatcher and assigns it to the TargetMatcher field.

func (RestDefaultReviewersRequest) ToMap ¶

func (o RestDefaultReviewersRequest) ToMap() (map[string]interface{}, error)

type RestDeployment ¶

type RestDeployment struct {
	Key                      *string                           `json:"key,omitempty"`
	State                    *string                           `json:"state,omitempty"`
	DisplayName              *string                           `json:"displayName,omitempty"`
	DeploymentSequenceNumber *int64                            `json:"deploymentSequenceNumber,omitempty"`
	FromCommit               *RestChangesetFromCommit          `json:"fromCommit,omitempty"`
	ToCommit                 *RestChangesetFromCommit          `json:"toCommit,omitempty"`
	Repository               *RestPullRequestFromRefRepository `json:"repository,omitempty"`
	LastUpdated              *int64                            `json:"lastUpdated,omitempty"`
	Description              *string                           `json:"description,omitempty"`
	Environment              *RestDeploymentEnvironment        `json:"environment,omitempty"`
	Url                      *string                           `json:"url,omitempty"`
}

RestDeployment struct for RestDeployment

func NewRestDeployment ¶

func NewRestDeployment() *RestDeployment

NewRestDeployment instantiates a new RestDeployment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDeploymentWithDefaults ¶

func NewRestDeploymentWithDefaults() *RestDeployment

NewRestDeploymentWithDefaults instantiates a new RestDeployment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDeployment) GetDeploymentSequenceNumber ¶

func (o *RestDeployment) GetDeploymentSequenceNumber() int64

GetDeploymentSequenceNumber returns the DeploymentSequenceNumber field value if set, zero value otherwise.

func (*RestDeployment) GetDeploymentSequenceNumberOk ¶

func (o *RestDeployment) GetDeploymentSequenceNumberOk() (*int64, bool)

GetDeploymentSequenceNumberOk returns a tuple with the DeploymentSequenceNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetDescription ¶

func (o *RestDeployment) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestDeployment) GetDescriptionOk ¶

func (o *RestDeployment) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetDisplayName ¶

func (o *RestDeployment) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*RestDeployment) GetDisplayNameOk ¶

func (o *RestDeployment) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetEnvironment ¶

func (o *RestDeployment) GetEnvironment() RestDeploymentEnvironment

GetEnvironment returns the Environment field value if set, zero value otherwise.

func (*RestDeployment) GetEnvironmentOk ¶

func (o *RestDeployment) GetEnvironmentOk() (*RestDeploymentEnvironment, bool)

GetEnvironmentOk returns a tuple with the Environment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetFromCommit ¶

func (o *RestDeployment) GetFromCommit() RestChangesetFromCommit

GetFromCommit returns the FromCommit field value if set, zero value otherwise.

func (*RestDeployment) GetFromCommitOk ¶

func (o *RestDeployment) GetFromCommitOk() (*RestChangesetFromCommit, bool)

GetFromCommitOk returns a tuple with the FromCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetKey ¶

func (o *RestDeployment) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*RestDeployment) GetKeyOk ¶

func (o *RestDeployment) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetLastUpdated ¶

func (o *RestDeployment) GetLastUpdated() int64

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*RestDeployment) GetLastUpdatedOk ¶

func (o *RestDeployment) GetLastUpdatedOk() (*int64, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetRepository ¶

GetRepository returns the Repository field value if set, zero value otherwise.

func (*RestDeployment) GetRepositoryOk ¶

func (o *RestDeployment) GetRepositoryOk() (*RestPullRequestFromRefRepository, bool)

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetState ¶

func (o *RestDeployment) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestDeployment) GetStateOk ¶

func (o *RestDeployment) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetToCommit ¶

func (o *RestDeployment) GetToCommit() RestChangesetFromCommit

GetToCommit returns the ToCommit field value if set, zero value otherwise.

func (*RestDeployment) GetToCommitOk ¶

func (o *RestDeployment) GetToCommitOk() (*RestChangesetFromCommit, bool)

GetToCommitOk returns a tuple with the ToCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) GetUrl ¶

func (o *RestDeployment) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*RestDeployment) GetUrlOk ¶

func (o *RestDeployment) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeployment) HasDeploymentSequenceNumber ¶

func (o *RestDeployment) HasDeploymentSequenceNumber() bool

HasDeploymentSequenceNumber returns a boolean if a field has been set.

func (*RestDeployment) HasDescription ¶

func (o *RestDeployment) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestDeployment) HasDisplayName ¶

func (o *RestDeployment) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*RestDeployment) HasEnvironment ¶

func (o *RestDeployment) HasEnvironment() bool

HasEnvironment returns a boolean if a field has been set.

func (*RestDeployment) HasFromCommit ¶

func (o *RestDeployment) HasFromCommit() bool

HasFromCommit returns a boolean if a field has been set.

func (*RestDeployment) HasKey ¶

func (o *RestDeployment) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*RestDeployment) HasLastUpdated ¶

func (o *RestDeployment) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*RestDeployment) HasRepository ¶

func (o *RestDeployment) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*RestDeployment) HasState ¶

func (o *RestDeployment) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestDeployment) HasToCommit ¶

func (o *RestDeployment) HasToCommit() bool

HasToCommit returns a boolean if a field has been set.

func (*RestDeployment) HasUrl ¶

func (o *RestDeployment) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (RestDeployment) MarshalJSON ¶

func (o RestDeployment) MarshalJSON() ([]byte, error)

func (*RestDeployment) SetDeploymentSequenceNumber ¶

func (o *RestDeployment) SetDeploymentSequenceNumber(v int64)

SetDeploymentSequenceNumber gets a reference to the given int64 and assigns it to the DeploymentSequenceNumber field.

func (*RestDeployment) SetDescription ¶

func (o *RestDeployment) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestDeployment) SetDisplayName ¶

func (o *RestDeployment) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*RestDeployment) SetEnvironment ¶

func (o *RestDeployment) SetEnvironment(v RestDeploymentEnvironment)

SetEnvironment gets a reference to the given RestDeploymentEnvironment and assigns it to the Environment field.

func (*RestDeployment) SetFromCommit ¶

func (o *RestDeployment) SetFromCommit(v RestChangesetFromCommit)

SetFromCommit gets a reference to the given RestChangesetFromCommit and assigns it to the FromCommit field.

func (*RestDeployment) SetKey ¶

func (o *RestDeployment) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*RestDeployment) SetLastUpdated ¶

func (o *RestDeployment) SetLastUpdated(v int64)

SetLastUpdated gets a reference to the given int64 and assigns it to the LastUpdated field.

func (*RestDeployment) SetRepository ¶

SetRepository gets a reference to the given RestPullRequestFromRefRepository and assigns it to the Repository field.

func (*RestDeployment) SetState ¶

func (o *RestDeployment) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestDeployment) SetToCommit ¶

func (o *RestDeployment) SetToCommit(v RestChangesetFromCommit)

SetToCommit gets a reference to the given RestChangesetFromCommit and assigns it to the ToCommit field.

func (*RestDeployment) SetUrl ¶

func (o *RestDeployment) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (RestDeployment) ToMap ¶

func (o RestDeployment) ToMap() (map[string]interface{}, error)

type RestDeploymentEnvironment ¶

type RestDeploymentEnvironment struct {
	Key         string  `json:"key"`
	Type        *string `json:"type,omitempty"`
	DisplayName string  `json:"displayName"`
	Url         *string `json:"url,omitempty"`
}

RestDeploymentEnvironment struct for RestDeploymentEnvironment

func NewRestDeploymentEnvironment ¶

func NewRestDeploymentEnvironment(key string, displayName string) *RestDeploymentEnvironment

NewRestDeploymentEnvironment instantiates a new RestDeploymentEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDeploymentEnvironmentWithDefaults ¶

func NewRestDeploymentEnvironmentWithDefaults() *RestDeploymentEnvironment

NewRestDeploymentEnvironmentWithDefaults instantiates a new RestDeploymentEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDeploymentEnvironment) GetDisplayName ¶

func (o *RestDeploymentEnvironment) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*RestDeploymentEnvironment) GetDisplayNameOk ¶

func (o *RestDeploymentEnvironment) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*RestDeploymentEnvironment) GetKey ¶

func (o *RestDeploymentEnvironment) GetKey() string

GetKey returns the Key field value

func (*RestDeploymentEnvironment) GetKeyOk ¶

func (o *RestDeploymentEnvironment) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*RestDeploymentEnvironment) GetType ¶

func (o *RestDeploymentEnvironment) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestDeploymentEnvironment) GetTypeOk ¶

func (o *RestDeploymentEnvironment) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeploymentEnvironment) GetUrl ¶

func (o *RestDeploymentEnvironment) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*RestDeploymentEnvironment) GetUrlOk ¶

func (o *RestDeploymentEnvironment) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeploymentEnvironment) HasType ¶

func (o *RestDeploymentEnvironment) HasType() bool

HasType returns a boolean if a field has been set.

func (*RestDeploymentEnvironment) HasUrl ¶

func (o *RestDeploymentEnvironment) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (RestDeploymentEnvironment) MarshalJSON ¶

func (o RestDeploymentEnvironment) MarshalJSON() ([]byte, error)

func (*RestDeploymentEnvironment) SetDisplayName ¶

func (o *RestDeploymentEnvironment) SetDisplayName(v string)

SetDisplayName sets field value

func (*RestDeploymentEnvironment) SetKey ¶

func (o *RestDeploymentEnvironment) SetKey(v string)

SetKey sets field value

func (*RestDeploymentEnvironment) SetType ¶

func (o *RestDeploymentEnvironment) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestDeploymentEnvironment) SetUrl ¶

func (o *RestDeploymentEnvironment) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (RestDeploymentEnvironment) ToMap ¶

func (o RestDeploymentEnvironment) ToMap() (map[string]interface{}, error)

type RestDeploymentSetRequest ¶

type RestDeploymentSetRequest struct {
	DeploymentSequenceNumber int64                     `json:"deploymentSequenceNumber"`
	Description              string                    `json:"description"`
	DisplayName              string                    `json:"displayName"`
	Environment              RestDeploymentEnvironment `json:"environment"`
	Key                      string                    `json:"key"`
	LastUpdated              *int64                    `json:"lastUpdated,omitempty"`
	State                    string                    `json:"state"`
	Url                      string                    `json:"url"`
}

RestDeploymentSetRequest struct for RestDeploymentSetRequest

func NewRestDeploymentSetRequest ¶

func NewRestDeploymentSetRequest(deploymentSequenceNumber int64, description string, displayName string, environment RestDeploymentEnvironment, key string, state string, url string) *RestDeploymentSetRequest

NewRestDeploymentSetRequest instantiates a new RestDeploymentSetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDeploymentSetRequestWithDefaults ¶

func NewRestDeploymentSetRequestWithDefaults() *RestDeploymentSetRequest

NewRestDeploymentSetRequestWithDefaults instantiates a new RestDeploymentSetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDeploymentSetRequest) GetDeploymentSequenceNumber ¶

func (o *RestDeploymentSetRequest) GetDeploymentSequenceNumber() int64

GetDeploymentSequenceNumber returns the DeploymentSequenceNumber field value

func (*RestDeploymentSetRequest) GetDeploymentSequenceNumberOk ¶

func (o *RestDeploymentSetRequest) GetDeploymentSequenceNumberOk() (*int64, bool)

GetDeploymentSequenceNumberOk returns a tuple with the DeploymentSequenceNumber field value and a boolean to check if the value has been set.

func (*RestDeploymentSetRequest) GetDescription ¶

func (o *RestDeploymentSetRequest) GetDescription() string

GetDescription returns the Description field value

func (*RestDeploymentSetRequest) GetDescriptionOk ¶

func (o *RestDeploymentSetRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*RestDeploymentSetRequest) GetDisplayName ¶

func (o *RestDeploymentSetRequest) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*RestDeploymentSetRequest) GetDisplayNameOk ¶

func (o *RestDeploymentSetRequest) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*RestDeploymentSetRequest) GetEnvironment ¶

GetEnvironment returns the Environment field value

func (*RestDeploymentSetRequest) GetEnvironmentOk ¶

func (o *RestDeploymentSetRequest) GetEnvironmentOk() (*RestDeploymentEnvironment, bool)

GetEnvironmentOk returns a tuple with the Environment field value and a boolean to check if the value has been set.

func (*RestDeploymentSetRequest) GetKey ¶

func (o *RestDeploymentSetRequest) GetKey() string

GetKey returns the Key field value

func (*RestDeploymentSetRequest) GetKeyOk ¶

func (o *RestDeploymentSetRequest) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*RestDeploymentSetRequest) GetLastUpdated ¶

func (o *RestDeploymentSetRequest) GetLastUpdated() int64

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*RestDeploymentSetRequest) GetLastUpdatedOk ¶

func (o *RestDeploymentSetRequest) GetLastUpdatedOk() (*int64, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDeploymentSetRequest) GetState ¶

func (o *RestDeploymentSetRequest) GetState() string

GetState returns the State field value

func (*RestDeploymentSetRequest) GetStateOk ¶

func (o *RestDeploymentSetRequest) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*RestDeploymentSetRequest) GetUrl ¶

func (o *RestDeploymentSetRequest) GetUrl() string

GetUrl returns the Url field value

func (*RestDeploymentSetRequest) GetUrlOk ¶

func (o *RestDeploymentSetRequest) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*RestDeploymentSetRequest) HasLastUpdated ¶

func (o *RestDeploymentSetRequest) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (RestDeploymentSetRequest) MarshalJSON ¶

func (o RestDeploymentSetRequest) MarshalJSON() ([]byte, error)

func (*RestDeploymentSetRequest) SetDeploymentSequenceNumber ¶

func (o *RestDeploymentSetRequest) SetDeploymentSequenceNumber(v int64)

SetDeploymentSequenceNumber sets field value

func (*RestDeploymentSetRequest) SetDescription ¶

func (o *RestDeploymentSetRequest) SetDescription(v string)

SetDescription sets field value

func (*RestDeploymentSetRequest) SetDisplayName ¶

func (o *RestDeploymentSetRequest) SetDisplayName(v string)

SetDisplayName sets field value

func (*RestDeploymentSetRequest) SetEnvironment ¶

SetEnvironment sets field value

func (*RestDeploymentSetRequest) SetKey ¶

func (o *RestDeploymentSetRequest) SetKey(v string)

SetKey sets field value

func (*RestDeploymentSetRequest) SetLastUpdated ¶

func (o *RestDeploymentSetRequest) SetLastUpdated(v int64)

SetLastUpdated gets a reference to the given int64 and assigns it to the LastUpdated field.

func (*RestDeploymentSetRequest) SetState ¶

func (o *RestDeploymentSetRequest) SetState(v string)

SetState sets field value

func (*RestDeploymentSetRequest) SetUrl ¶

func (o *RestDeploymentSetRequest) SetUrl(v string)

SetUrl sets field value

func (RestDeploymentSetRequest) ToMap ¶

func (o RestDeploymentSetRequest) ToMap() (map[string]interface{}, error)

type RestDetailedGroup ¶

type RestDetailedGroup struct {
	Name      *string `json:"name,omitempty"`
	Deletable *bool   `json:"deletable,omitempty"`
}

RestDetailedGroup struct for RestDetailedGroup

func NewRestDetailedGroup ¶

func NewRestDetailedGroup() *RestDetailedGroup

NewRestDetailedGroup instantiates a new RestDetailedGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDetailedGroupWithDefaults ¶

func NewRestDetailedGroupWithDefaults() *RestDetailedGroup

NewRestDetailedGroupWithDefaults instantiates a new RestDetailedGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDetailedGroup) GetDeletable ¶

func (o *RestDetailedGroup) GetDeletable() bool

GetDeletable returns the Deletable field value if set, zero value otherwise.

func (*RestDetailedGroup) GetDeletableOk ¶

func (o *RestDetailedGroup) GetDeletableOk() (*bool, bool)

GetDeletableOk returns a tuple with the Deletable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedGroup) GetName ¶

func (o *RestDetailedGroup) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestDetailedGroup) GetNameOk ¶

func (o *RestDetailedGroup) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedGroup) HasDeletable ¶

func (o *RestDetailedGroup) HasDeletable() bool

HasDeletable returns a boolean if a field has been set.

func (*RestDetailedGroup) HasName ¶

func (o *RestDetailedGroup) HasName() bool

HasName returns a boolean if a field has been set.

func (RestDetailedGroup) MarshalJSON ¶

func (o RestDetailedGroup) MarshalJSON() ([]byte, error)

func (*RestDetailedGroup) SetDeletable ¶

func (o *RestDetailedGroup) SetDeletable(v bool)

SetDeletable gets a reference to the given bool and assigns it to the Deletable field.

func (*RestDetailedGroup) SetName ¶

func (o *RestDetailedGroup) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestDetailedGroup) ToMap ¶

func (o RestDetailedGroup) ToMap() (map[string]interface{}, error)

type RestDetailedInvocation ¶

type RestDetailedInvocation struct {
	Start      *int32                            `json:"start,omitempty"`
	Id         *int32                            `json:"id,omitempty"`
	Result     map[string]interface{}            `json:"result,omitempty"`
	EventScope *RestDetailedInvocationEventScope `json:"eventScope,omitempty"`
	Request    map[string]interface{}            `json:"request,omitempty"`
	Duration   *int32                            `json:"duration,omitempty"`
	Finish     *int32                            `json:"finish,omitempty"`
	Event      *string                           `json:"event,omitempty"`
}

RestDetailedInvocation struct for RestDetailedInvocation

func NewRestDetailedInvocation ¶

func NewRestDetailedInvocation() *RestDetailedInvocation

NewRestDetailedInvocation instantiates a new RestDetailedInvocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDetailedInvocationWithDefaults ¶

func NewRestDetailedInvocationWithDefaults() *RestDetailedInvocation

NewRestDetailedInvocationWithDefaults instantiates a new RestDetailedInvocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDetailedInvocation) GetDuration ¶

func (o *RestDetailedInvocation) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*RestDetailedInvocation) GetDurationOk ¶

func (o *RestDetailedInvocation) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocation) GetEvent ¶

func (o *RestDetailedInvocation) GetEvent() string

GetEvent returns the Event field value if set, zero value otherwise.

func (*RestDetailedInvocation) GetEventOk ¶

func (o *RestDetailedInvocation) GetEventOk() (*string, bool)

GetEventOk returns a tuple with the Event field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocation) GetEventScope ¶

GetEventScope returns the EventScope field value if set, zero value otherwise.

func (*RestDetailedInvocation) GetEventScopeOk ¶

GetEventScopeOk returns a tuple with the EventScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocation) GetFinish ¶

func (o *RestDetailedInvocation) GetFinish() int32

GetFinish returns the Finish field value if set, zero value otherwise.

func (*RestDetailedInvocation) GetFinishOk ¶

func (o *RestDetailedInvocation) GetFinishOk() (*int32, bool)

GetFinishOk returns a tuple with the Finish field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocation) GetId ¶

func (o *RestDetailedInvocation) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestDetailedInvocation) GetIdOk ¶

func (o *RestDetailedInvocation) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocation) GetRequest ¶

func (o *RestDetailedInvocation) GetRequest() map[string]interface{}

GetRequest returns the Request field value if set, zero value otherwise.

func (*RestDetailedInvocation) GetRequestOk ¶

func (o *RestDetailedInvocation) GetRequestOk() (map[string]interface{}, bool)

GetRequestOk returns a tuple with the Request field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocation) GetResult ¶

func (o *RestDetailedInvocation) GetResult() map[string]interface{}

GetResult returns the Result field value if set, zero value otherwise.

func (*RestDetailedInvocation) GetResultOk ¶

func (o *RestDetailedInvocation) GetResultOk() (map[string]interface{}, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocation) GetStart ¶

func (o *RestDetailedInvocation) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*RestDetailedInvocation) GetStartOk ¶

func (o *RestDetailedInvocation) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocation) HasDuration ¶

func (o *RestDetailedInvocation) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*RestDetailedInvocation) HasEvent ¶

func (o *RestDetailedInvocation) HasEvent() bool

HasEvent returns a boolean if a field has been set.

func (*RestDetailedInvocation) HasEventScope ¶

func (o *RestDetailedInvocation) HasEventScope() bool

HasEventScope returns a boolean if a field has been set.

func (*RestDetailedInvocation) HasFinish ¶

func (o *RestDetailedInvocation) HasFinish() bool

HasFinish returns a boolean if a field has been set.

func (*RestDetailedInvocation) HasId ¶

func (o *RestDetailedInvocation) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestDetailedInvocation) HasRequest ¶

func (o *RestDetailedInvocation) HasRequest() bool

HasRequest returns a boolean if a field has been set.

func (*RestDetailedInvocation) HasResult ¶

func (o *RestDetailedInvocation) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*RestDetailedInvocation) HasStart ¶

func (o *RestDetailedInvocation) HasStart() bool

HasStart returns a boolean if a field has been set.

func (RestDetailedInvocation) MarshalJSON ¶

func (o RestDetailedInvocation) MarshalJSON() ([]byte, error)

func (*RestDetailedInvocation) SetDuration ¶

func (o *RestDetailedInvocation) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*RestDetailedInvocation) SetEvent ¶

func (o *RestDetailedInvocation) SetEvent(v string)

SetEvent gets a reference to the given string and assigns it to the Event field.

func (*RestDetailedInvocation) SetEventScope ¶

SetEventScope gets a reference to the given RestDetailedInvocationEventScope and assigns it to the EventScope field.

func (*RestDetailedInvocation) SetFinish ¶

func (o *RestDetailedInvocation) SetFinish(v int32)

SetFinish gets a reference to the given int32 and assigns it to the Finish field.

func (*RestDetailedInvocation) SetId ¶

func (o *RestDetailedInvocation) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestDetailedInvocation) SetRequest ¶

func (o *RestDetailedInvocation) SetRequest(v map[string]interface{})

SetRequest gets a reference to the given map[string]interface{} and assigns it to the Request field.

func (*RestDetailedInvocation) SetResult ¶

func (o *RestDetailedInvocation) SetResult(v map[string]interface{})

SetResult gets a reference to the given map[string]interface{} and assigns it to the Result field.

func (*RestDetailedInvocation) SetStart ¶

func (o *RestDetailedInvocation) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (RestDetailedInvocation) ToMap ¶

func (o RestDetailedInvocation) ToMap() (map[string]interface{}, error)

type RestDetailedInvocationEventScope ¶

type RestDetailedInvocationEventScope struct {
	Id   *string `json:"id,omitempty"`
	Type *string `json:"type,omitempty"`
}

RestDetailedInvocationEventScope struct for RestDetailedInvocationEventScope

func NewRestDetailedInvocationEventScope ¶

func NewRestDetailedInvocationEventScope() *RestDetailedInvocationEventScope

NewRestDetailedInvocationEventScope instantiates a new RestDetailedInvocationEventScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDetailedInvocationEventScopeWithDefaults ¶

func NewRestDetailedInvocationEventScopeWithDefaults() *RestDetailedInvocationEventScope

NewRestDetailedInvocationEventScopeWithDefaults instantiates a new RestDetailedInvocationEventScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDetailedInvocationEventScope) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestDetailedInvocationEventScope) GetIdOk ¶

func (o *RestDetailedInvocationEventScope) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocationEventScope) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestDetailedInvocationEventScope) GetTypeOk ¶

func (o *RestDetailedInvocationEventScope) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedInvocationEventScope) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestDetailedInvocationEventScope) HasType ¶

HasType returns a boolean if a field has been set.

func (RestDetailedInvocationEventScope) MarshalJSON ¶

func (o RestDetailedInvocationEventScope) MarshalJSON() ([]byte, error)

func (*RestDetailedInvocationEventScope) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestDetailedInvocationEventScope) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RestDetailedInvocationEventScope) ToMap ¶

func (o RestDetailedInvocationEventScope) ToMap() (map[string]interface{}, error)

type RestDetailedUser ¶

type RestDetailedUser struct {
	LastAuthenticationTimestamp *float32               `json:"lastAuthenticationTimestamp,omitempty"`
	MutableDetails              *bool                  `json:"mutableDetails,omitempty"`
	Deletable                   *bool                  `json:"deletable,omitempty"`
	MutableGroups               *bool                  `json:"mutableGroups,omitempty"`
	DirectoryName               *string                `json:"directoryName,omitempty"`
	Name                        *string                `json:"name,omitempty"`
	Id                          *int32                 `json:"id,omitempty"`
	Type                        *string                `json:"type,omitempty"`
	DisplayName                 *string                `json:"displayName,omitempty"`
	EmailAddress                *string                `json:"emailAddress,omitempty"`
	Slug                        *string                `json:"slug,omitempty"`
	Links                       map[string]interface{} `json:"links,omitempty"`
	Active                      *bool                  `json:"active,omitempty"`
	AvatarUrl                   *string                `json:"avatarUrl,omitempty"`
}

RestDetailedUser struct for RestDetailedUser

func NewRestDetailedUser ¶

func NewRestDetailedUser() *RestDetailedUser

NewRestDetailedUser instantiates a new RestDetailedUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDetailedUserWithDefaults ¶

func NewRestDetailedUserWithDefaults() *RestDetailedUser

NewRestDetailedUserWithDefaults instantiates a new RestDetailedUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDetailedUser) GetActive ¶

func (o *RestDetailedUser) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*RestDetailedUser) GetActiveOk ¶

func (o *RestDetailedUser) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetAvatarUrl ¶

func (o *RestDetailedUser) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestDetailedUser) GetAvatarUrlOk ¶

func (o *RestDetailedUser) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetDeletable ¶

func (o *RestDetailedUser) GetDeletable() bool

GetDeletable returns the Deletable field value if set, zero value otherwise.

func (*RestDetailedUser) GetDeletableOk ¶

func (o *RestDetailedUser) GetDeletableOk() (*bool, bool)

GetDeletableOk returns a tuple with the Deletable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetDirectoryName ¶

func (o *RestDetailedUser) GetDirectoryName() string

GetDirectoryName returns the DirectoryName field value if set, zero value otherwise.

func (*RestDetailedUser) GetDirectoryNameOk ¶

func (o *RestDetailedUser) GetDirectoryNameOk() (*string, bool)

GetDirectoryNameOk returns a tuple with the DirectoryName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetDisplayName ¶

func (o *RestDetailedUser) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*RestDetailedUser) GetDisplayNameOk ¶

func (o *RestDetailedUser) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetEmailAddress ¶

func (o *RestDetailedUser) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*RestDetailedUser) GetEmailAddressOk ¶

func (o *RestDetailedUser) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetId ¶

func (o *RestDetailedUser) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestDetailedUser) GetIdOk ¶

func (o *RestDetailedUser) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetLastAuthenticationTimestamp ¶

func (o *RestDetailedUser) GetLastAuthenticationTimestamp() float32

GetLastAuthenticationTimestamp returns the LastAuthenticationTimestamp field value if set, zero value otherwise.

func (*RestDetailedUser) GetLastAuthenticationTimestampOk ¶

func (o *RestDetailedUser) GetLastAuthenticationTimestampOk() (*float32, bool)

GetLastAuthenticationTimestampOk returns a tuple with the LastAuthenticationTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestDetailedUser) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestDetailedUser) GetLinksOk ¶

func (o *RestDetailedUser) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetMutableDetails ¶

func (o *RestDetailedUser) GetMutableDetails() bool

GetMutableDetails returns the MutableDetails field value if set, zero value otherwise.

func (*RestDetailedUser) GetMutableDetailsOk ¶

func (o *RestDetailedUser) GetMutableDetailsOk() (*bool, bool)

GetMutableDetailsOk returns a tuple with the MutableDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetMutableGroups ¶

func (o *RestDetailedUser) GetMutableGroups() bool

GetMutableGroups returns the MutableGroups field value if set, zero value otherwise.

func (*RestDetailedUser) GetMutableGroupsOk ¶

func (o *RestDetailedUser) GetMutableGroupsOk() (*bool, bool)

GetMutableGroupsOk returns a tuple with the MutableGroups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetName ¶

func (o *RestDetailedUser) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestDetailedUser) GetNameOk ¶

func (o *RestDetailedUser) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetSlug ¶

func (o *RestDetailedUser) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestDetailedUser) GetSlugOk ¶

func (o *RestDetailedUser) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) GetType ¶

func (o *RestDetailedUser) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestDetailedUser) GetTypeOk ¶

func (o *RestDetailedUser) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDetailedUser) HasActive ¶

func (o *RestDetailedUser) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*RestDetailedUser) HasAvatarUrl ¶

func (o *RestDetailedUser) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*RestDetailedUser) HasDeletable ¶

func (o *RestDetailedUser) HasDeletable() bool

HasDeletable returns a boolean if a field has been set.

func (*RestDetailedUser) HasDirectoryName ¶

func (o *RestDetailedUser) HasDirectoryName() bool

HasDirectoryName returns a boolean if a field has been set.

func (*RestDetailedUser) HasDisplayName ¶

func (o *RestDetailedUser) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*RestDetailedUser) HasEmailAddress ¶

func (o *RestDetailedUser) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*RestDetailedUser) HasId ¶

func (o *RestDetailedUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestDetailedUser) HasLastAuthenticationTimestamp ¶

func (o *RestDetailedUser) HasLastAuthenticationTimestamp() bool

HasLastAuthenticationTimestamp returns a boolean if a field has been set.

func (o *RestDetailedUser) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestDetailedUser) HasMutableDetails ¶

func (o *RestDetailedUser) HasMutableDetails() bool

HasMutableDetails returns a boolean if a field has been set.

func (*RestDetailedUser) HasMutableGroups ¶

func (o *RestDetailedUser) HasMutableGroups() bool

HasMutableGroups returns a boolean if a field has been set.

func (*RestDetailedUser) HasName ¶

func (o *RestDetailedUser) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestDetailedUser) HasSlug ¶

func (o *RestDetailedUser) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*RestDetailedUser) HasType ¶

func (o *RestDetailedUser) HasType() bool

HasType returns a boolean if a field has been set.

func (RestDetailedUser) MarshalJSON ¶

func (o RestDetailedUser) MarshalJSON() ([]byte, error)

func (*RestDetailedUser) SetActive ¶

func (o *RestDetailedUser) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*RestDetailedUser) SetAvatarUrl ¶

func (o *RestDetailedUser) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestDetailedUser) SetDeletable ¶

func (o *RestDetailedUser) SetDeletable(v bool)

SetDeletable gets a reference to the given bool and assigns it to the Deletable field.

func (*RestDetailedUser) SetDirectoryName ¶

func (o *RestDetailedUser) SetDirectoryName(v string)

SetDirectoryName gets a reference to the given string and assigns it to the DirectoryName field.

func (*RestDetailedUser) SetDisplayName ¶

func (o *RestDetailedUser) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*RestDetailedUser) SetEmailAddress ¶

func (o *RestDetailedUser) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*RestDetailedUser) SetId ¶

func (o *RestDetailedUser) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestDetailedUser) SetLastAuthenticationTimestamp ¶

func (o *RestDetailedUser) SetLastAuthenticationTimestamp(v float32)

SetLastAuthenticationTimestamp gets a reference to the given float32 and assigns it to the LastAuthenticationTimestamp field.

func (o *RestDetailedUser) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestDetailedUser) SetMutableDetails ¶

func (o *RestDetailedUser) SetMutableDetails(v bool)

SetMutableDetails gets a reference to the given bool and assigns it to the MutableDetails field.

func (*RestDetailedUser) SetMutableGroups ¶

func (o *RestDetailedUser) SetMutableGroups(v bool)

SetMutableGroups gets a reference to the given bool and assigns it to the MutableGroups field.

func (*RestDetailedUser) SetName ¶

func (o *RestDetailedUser) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestDetailedUser) SetSlug ¶

func (o *RestDetailedUser) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestDetailedUser) SetType ¶

func (o *RestDetailedUser) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestDetailedUser) ToMap ¶

func (o RestDetailedUser) ToMap() (map[string]interface{}, error)

type RestDiff ¶

type RestDiff struct {
	LineComments []RestComment                    `json:"lineComments,omitempty"`
	Source       *RestCommentThreadDiffAnchorPath `json:"source,omitempty"`
	Destination  *RestCommentThreadDiffAnchorPath `json:"destination,omitempty"`
	Truncated    *bool                            `json:"truncated,omitempty"`
	Binary       *bool                            `json:"binary,omitempty"`
	Hunks        []RestDiffHunk                   `json:"hunks,omitempty"`
	Properties   map[string]interface{}           `json:"properties,omitempty"`
}

RestDiff struct for RestDiff

func NewRestDiff ¶

func NewRestDiff() *RestDiff

NewRestDiff instantiates a new RestDiff object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDiffWithDefaults ¶

func NewRestDiffWithDefaults() *RestDiff

NewRestDiffWithDefaults instantiates a new RestDiff object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDiff) GetBinary ¶

func (o *RestDiff) GetBinary() bool

GetBinary returns the Binary field value if set, zero value otherwise.

func (*RestDiff) GetBinaryOk ¶

func (o *RestDiff) GetBinaryOk() (*bool, bool)

GetBinaryOk returns a tuple with the Binary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiff) GetDestination ¶

func (o *RestDiff) GetDestination() RestCommentThreadDiffAnchorPath

GetDestination returns the Destination field value if set, zero value otherwise.

func (*RestDiff) GetDestinationOk ¶

func (o *RestDiff) GetDestinationOk() (*RestCommentThreadDiffAnchorPath, bool)

GetDestinationOk returns a tuple with the Destination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiff) GetHunks ¶

func (o *RestDiff) GetHunks() []RestDiffHunk

GetHunks returns the Hunks field value if set, zero value otherwise.

func (*RestDiff) GetHunksOk ¶

func (o *RestDiff) GetHunksOk() ([]RestDiffHunk, bool)

GetHunksOk returns a tuple with the Hunks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiff) GetLineComments ¶

func (o *RestDiff) GetLineComments() []RestComment

GetLineComments returns the LineComments field value if set, zero value otherwise.

func (*RestDiff) GetLineCommentsOk ¶

func (o *RestDiff) GetLineCommentsOk() ([]RestComment, bool)

GetLineCommentsOk returns a tuple with the LineComments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiff) GetProperties ¶

func (o *RestDiff) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*RestDiff) GetPropertiesOk ¶

func (o *RestDiff) GetPropertiesOk() (map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiff) GetSource ¶

GetSource returns the Source field value if set, zero value otherwise.

func (*RestDiff) GetSourceOk ¶

func (o *RestDiff) GetSourceOk() (*RestCommentThreadDiffAnchorPath, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiff) GetTruncated ¶

func (o *RestDiff) GetTruncated() bool

GetTruncated returns the Truncated field value if set, zero value otherwise.

func (*RestDiff) GetTruncatedOk ¶

func (o *RestDiff) GetTruncatedOk() (*bool, bool)

GetTruncatedOk returns a tuple with the Truncated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiff) HasBinary ¶

func (o *RestDiff) HasBinary() bool

HasBinary returns a boolean if a field has been set.

func (*RestDiff) HasDestination ¶

func (o *RestDiff) HasDestination() bool

HasDestination returns a boolean if a field has been set.

func (*RestDiff) HasHunks ¶

func (o *RestDiff) HasHunks() bool

HasHunks returns a boolean if a field has been set.

func (*RestDiff) HasLineComments ¶

func (o *RestDiff) HasLineComments() bool

HasLineComments returns a boolean if a field has been set.

func (*RestDiff) HasProperties ¶

func (o *RestDiff) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*RestDiff) HasSource ¶

func (o *RestDiff) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*RestDiff) HasTruncated ¶

func (o *RestDiff) HasTruncated() bool

HasTruncated returns a boolean if a field has been set.

func (RestDiff) MarshalJSON ¶

func (o RestDiff) MarshalJSON() ([]byte, error)

func (*RestDiff) SetBinary ¶

func (o *RestDiff) SetBinary(v bool)

SetBinary gets a reference to the given bool and assigns it to the Binary field.

func (*RestDiff) SetDestination ¶

func (o *RestDiff) SetDestination(v RestCommentThreadDiffAnchorPath)

SetDestination gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the Destination field.

func (*RestDiff) SetHunks ¶

func (o *RestDiff) SetHunks(v []RestDiffHunk)

SetHunks gets a reference to the given []RestDiffHunk and assigns it to the Hunks field.

func (*RestDiff) SetLineComments ¶

func (o *RestDiff) SetLineComments(v []RestComment)

SetLineComments gets a reference to the given []RestComment and assigns it to the LineComments field.

func (*RestDiff) SetProperties ¶

func (o *RestDiff) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given map[string]interface{} and assigns it to the Properties field.

func (*RestDiff) SetSource ¶

func (o *RestDiff) SetSource(v RestCommentThreadDiffAnchorPath)

SetSource gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the Source field.

func (*RestDiff) SetTruncated ¶

func (o *RestDiff) SetTruncated(v bool)

SetTruncated gets a reference to the given bool and assigns it to the Truncated field.

func (RestDiff) ToMap ¶

func (o RestDiff) ToMap() (map[string]interface{}, error)

type RestDiffHunk ¶

type RestDiffHunk struct {
	Context         *string           `json:"context,omitempty"`
	SourceLine      *int32            `json:"sourceLine,omitempty"`
	SourceSpan      *int32            `json:"sourceSpan,omitempty"`
	DestinationLine *int32            `json:"destinationLine,omitempty"`
	DestinationSpan *int32            `json:"destinationSpan,omitempty"`
	Segments        []RestDiffSegment `json:"segments,omitempty"`
	Truncated       *bool             `json:"truncated,omitempty"`
}

RestDiffHunk struct for RestDiffHunk

func NewRestDiffHunk ¶

func NewRestDiffHunk() *RestDiffHunk

NewRestDiffHunk instantiates a new RestDiffHunk object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDiffHunkWithDefaults ¶

func NewRestDiffHunkWithDefaults() *RestDiffHunk

NewRestDiffHunkWithDefaults instantiates a new RestDiffHunk object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDiffHunk) GetContext ¶

func (o *RestDiffHunk) GetContext() string

GetContext returns the Context field value if set, zero value otherwise.

func (*RestDiffHunk) GetContextOk ¶

func (o *RestDiffHunk) GetContextOk() (*string, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffHunk) GetDestinationLine ¶

func (o *RestDiffHunk) GetDestinationLine() int32

GetDestinationLine returns the DestinationLine field value if set, zero value otherwise.

func (*RestDiffHunk) GetDestinationLineOk ¶

func (o *RestDiffHunk) GetDestinationLineOk() (*int32, bool)

GetDestinationLineOk returns a tuple with the DestinationLine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffHunk) GetDestinationSpan ¶

func (o *RestDiffHunk) GetDestinationSpan() int32

GetDestinationSpan returns the DestinationSpan field value if set, zero value otherwise.

func (*RestDiffHunk) GetDestinationSpanOk ¶

func (o *RestDiffHunk) GetDestinationSpanOk() (*int32, bool)

GetDestinationSpanOk returns a tuple with the DestinationSpan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffHunk) GetSegments ¶

func (o *RestDiffHunk) GetSegments() []RestDiffSegment

GetSegments returns the Segments field value if set, zero value otherwise.

func (*RestDiffHunk) GetSegmentsOk ¶

func (o *RestDiffHunk) GetSegmentsOk() ([]RestDiffSegment, bool)

GetSegmentsOk returns a tuple with the Segments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffHunk) GetSourceLine ¶

func (o *RestDiffHunk) GetSourceLine() int32

GetSourceLine returns the SourceLine field value if set, zero value otherwise.

func (*RestDiffHunk) GetSourceLineOk ¶

func (o *RestDiffHunk) GetSourceLineOk() (*int32, bool)

GetSourceLineOk returns a tuple with the SourceLine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffHunk) GetSourceSpan ¶

func (o *RestDiffHunk) GetSourceSpan() int32

GetSourceSpan returns the SourceSpan field value if set, zero value otherwise.

func (*RestDiffHunk) GetSourceSpanOk ¶

func (o *RestDiffHunk) GetSourceSpanOk() (*int32, bool)

GetSourceSpanOk returns a tuple with the SourceSpan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffHunk) GetTruncated ¶

func (o *RestDiffHunk) GetTruncated() bool

GetTruncated returns the Truncated field value if set, zero value otherwise.

func (*RestDiffHunk) GetTruncatedOk ¶

func (o *RestDiffHunk) GetTruncatedOk() (*bool, bool)

GetTruncatedOk returns a tuple with the Truncated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffHunk) HasContext ¶

func (o *RestDiffHunk) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*RestDiffHunk) HasDestinationLine ¶

func (o *RestDiffHunk) HasDestinationLine() bool

HasDestinationLine returns a boolean if a field has been set.

func (*RestDiffHunk) HasDestinationSpan ¶

func (o *RestDiffHunk) HasDestinationSpan() bool

HasDestinationSpan returns a boolean if a field has been set.

func (*RestDiffHunk) HasSegments ¶

func (o *RestDiffHunk) HasSegments() bool

HasSegments returns a boolean if a field has been set.

func (*RestDiffHunk) HasSourceLine ¶

func (o *RestDiffHunk) HasSourceLine() bool

HasSourceLine returns a boolean if a field has been set.

func (*RestDiffHunk) HasSourceSpan ¶

func (o *RestDiffHunk) HasSourceSpan() bool

HasSourceSpan returns a boolean if a field has been set.

func (*RestDiffHunk) HasTruncated ¶

func (o *RestDiffHunk) HasTruncated() bool

HasTruncated returns a boolean if a field has been set.

func (RestDiffHunk) MarshalJSON ¶

func (o RestDiffHunk) MarshalJSON() ([]byte, error)

func (*RestDiffHunk) SetContext ¶

func (o *RestDiffHunk) SetContext(v string)

SetContext gets a reference to the given string and assigns it to the Context field.

func (*RestDiffHunk) SetDestinationLine ¶

func (o *RestDiffHunk) SetDestinationLine(v int32)

SetDestinationLine gets a reference to the given int32 and assigns it to the DestinationLine field.

func (*RestDiffHunk) SetDestinationSpan ¶

func (o *RestDiffHunk) SetDestinationSpan(v int32)

SetDestinationSpan gets a reference to the given int32 and assigns it to the DestinationSpan field.

func (*RestDiffHunk) SetSegments ¶

func (o *RestDiffHunk) SetSegments(v []RestDiffSegment)

SetSegments gets a reference to the given []RestDiffSegment and assigns it to the Segments field.

func (*RestDiffHunk) SetSourceLine ¶

func (o *RestDiffHunk) SetSourceLine(v int32)

SetSourceLine gets a reference to the given int32 and assigns it to the SourceLine field.

func (*RestDiffHunk) SetSourceSpan ¶

func (o *RestDiffHunk) SetSourceSpan(v int32)

SetSourceSpan gets a reference to the given int32 and assigns it to the SourceSpan field.

func (*RestDiffHunk) SetTruncated ¶

func (o *RestDiffHunk) SetTruncated(v bool)

SetTruncated gets a reference to the given bool and assigns it to the Truncated field.

func (RestDiffHunk) ToMap ¶

func (o RestDiffHunk) ToMap() (map[string]interface{}, error)

type RestDiffLine ¶

type RestDiffLine struct {
	ConflictMarker *string `json:"conflictMarker,omitempty"`
	CommentIds     []int64 `json:"commentIds,omitempty"`
	Source         *int32  `json:"source,omitempty"`
	Destination    *int32  `json:"destination,omitempty"`
	Truncated      *bool   `json:"truncated,omitempty"`
	Line           *string `json:"line,omitempty"`
}

RestDiffLine struct for RestDiffLine

func NewRestDiffLine ¶

func NewRestDiffLine() *RestDiffLine

NewRestDiffLine instantiates a new RestDiffLine object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDiffLineWithDefaults ¶

func NewRestDiffLineWithDefaults() *RestDiffLine

NewRestDiffLineWithDefaults instantiates a new RestDiffLine object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDiffLine) GetCommentIds ¶

func (o *RestDiffLine) GetCommentIds() []int64

GetCommentIds returns the CommentIds field value if set, zero value otherwise.

func (*RestDiffLine) GetCommentIdsOk ¶

func (o *RestDiffLine) GetCommentIdsOk() ([]int64, bool)

GetCommentIdsOk returns a tuple with the CommentIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffLine) GetConflictMarker ¶

func (o *RestDiffLine) GetConflictMarker() string

GetConflictMarker returns the ConflictMarker field value if set, zero value otherwise.

func (*RestDiffLine) GetConflictMarkerOk ¶

func (o *RestDiffLine) GetConflictMarkerOk() (*string, bool)

GetConflictMarkerOk returns a tuple with the ConflictMarker field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffLine) GetDestination ¶

func (o *RestDiffLine) GetDestination() int32

GetDestination returns the Destination field value if set, zero value otherwise.

func (*RestDiffLine) GetDestinationOk ¶

func (o *RestDiffLine) GetDestinationOk() (*int32, bool)

GetDestinationOk returns a tuple with the Destination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffLine) GetLine ¶

func (o *RestDiffLine) GetLine() string

GetLine returns the Line field value if set, zero value otherwise.

func (*RestDiffLine) GetLineOk ¶

func (o *RestDiffLine) GetLineOk() (*string, bool)

GetLineOk returns a tuple with the Line field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffLine) GetSource ¶

func (o *RestDiffLine) GetSource() int32

GetSource returns the Source field value if set, zero value otherwise.

func (*RestDiffLine) GetSourceOk ¶

func (o *RestDiffLine) GetSourceOk() (*int32, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffLine) GetTruncated ¶

func (o *RestDiffLine) GetTruncated() bool

GetTruncated returns the Truncated field value if set, zero value otherwise.

func (*RestDiffLine) GetTruncatedOk ¶

func (o *RestDiffLine) GetTruncatedOk() (*bool, bool)

GetTruncatedOk returns a tuple with the Truncated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffLine) HasCommentIds ¶

func (o *RestDiffLine) HasCommentIds() bool

HasCommentIds returns a boolean if a field has been set.

func (*RestDiffLine) HasConflictMarker ¶

func (o *RestDiffLine) HasConflictMarker() bool

HasConflictMarker returns a boolean if a field has been set.

func (*RestDiffLine) HasDestination ¶

func (o *RestDiffLine) HasDestination() bool

HasDestination returns a boolean if a field has been set.

func (*RestDiffLine) HasLine ¶

func (o *RestDiffLine) HasLine() bool

HasLine returns a boolean if a field has been set.

func (*RestDiffLine) HasSource ¶

func (o *RestDiffLine) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*RestDiffLine) HasTruncated ¶

func (o *RestDiffLine) HasTruncated() bool

HasTruncated returns a boolean if a field has been set.

func (RestDiffLine) MarshalJSON ¶

func (o RestDiffLine) MarshalJSON() ([]byte, error)

func (*RestDiffLine) SetCommentIds ¶

func (o *RestDiffLine) SetCommentIds(v []int64)

SetCommentIds gets a reference to the given []int64 and assigns it to the CommentIds field.

func (*RestDiffLine) SetConflictMarker ¶

func (o *RestDiffLine) SetConflictMarker(v string)

SetConflictMarker gets a reference to the given string and assigns it to the ConflictMarker field.

func (*RestDiffLine) SetDestination ¶

func (o *RestDiffLine) SetDestination(v int32)

SetDestination gets a reference to the given int32 and assigns it to the Destination field.

func (*RestDiffLine) SetLine ¶

func (o *RestDiffLine) SetLine(v string)

SetLine gets a reference to the given string and assigns it to the Line field.

func (*RestDiffLine) SetSource ¶

func (o *RestDiffLine) SetSource(v int32)

SetSource gets a reference to the given int32 and assigns it to the Source field.

func (*RestDiffLine) SetTruncated ¶

func (o *RestDiffLine) SetTruncated(v bool)

SetTruncated gets a reference to the given bool and assigns it to the Truncated field.

func (RestDiffLine) ToMap ¶

func (o RestDiffLine) ToMap() (map[string]interface{}, error)

type RestDiffSegment ¶

type RestDiffSegment struct {
	Type      *string        `json:"type,omitempty"`
	Truncated *bool          `json:"truncated,omitempty"`
	Lines     []RestDiffLine `json:"lines,omitempty"`
}

RestDiffSegment struct for RestDiffSegment

func NewRestDiffSegment ¶

func NewRestDiffSegment() *RestDiffSegment

NewRestDiffSegment instantiates a new RestDiffSegment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestDiffSegmentWithDefaults ¶

func NewRestDiffSegmentWithDefaults() *RestDiffSegment

NewRestDiffSegmentWithDefaults instantiates a new RestDiffSegment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestDiffSegment) GetLines ¶

func (o *RestDiffSegment) GetLines() []RestDiffLine

GetLines returns the Lines field value if set, zero value otherwise.

func (*RestDiffSegment) GetLinesOk ¶

func (o *RestDiffSegment) GetLinesOk() ([]RestDiffLine, bool)

GetLinesOk returns a tuple with the Lines field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffSegment) GetTruncated ¶

func (o *RestDiffSegment) GetTruncated() bool

GetTruncated returns the Truncated field value if set, zero value otherwise.

func (*RestDiffSegment) GetTruncatedOk ¶

func (o *RestDiffSegment) GetTruncatedOk() (*bool, bool)

GetTruncatedOk returns a tuple with the Truncated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffSegment) GetType ¶

func (o *RestDiffSegment) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestDiffSegment) GetTypeOk ¶

func (o *RestDiffSegment) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestDiffSegment) HasLines ¶

func (o *RestDiffSegment) HasLines() bool

HasLines returns a boolean if a field has been set.

func (*RestDiffSegment) HasTruncated ¶

func (o *RestDiffSegment) HasTruncated() bool

HasTruncated returns a boolean if a field has been set.

func (*RestDiffSegment) HasType ¶

func (o *RestDiffSegment) HasType() bool

HasType returns a boolean if a field has been set.

func (RestDiffSegment) MarshalJSON ¶

func (o RestDiffSegment) MarshalJSON() ([]byte, error)

func (*RestDiffSegment) SetLines ¶

func (o *RestDiffSegment) SetLines(v []RestDiffLine)

SetLines gets a reference to the given []RestDiffLine and assigns it to the Lines field.

func (*RestDiffSegment) SetTruncated ¶

func (o *RestDiffSegment) SetTruncated(v bool)

SetTruncated gets a reference to the given bool and assigns it to the Truncated field.

func (*RestDiffSegment) SetType ¶

func (o *RestDiffSegment) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestDiffSegment) ToMap ¶

func (o RestDiffSegment) ToMap() (map[string]interface{}, error)

type RestEmoticon ¶

type RestEmoticon struct {
	Value    *string `json:"value,omitempty"`
	Shortcut *string `json:"shortcut,omitempty"`
	Url      *string `json:"url,omitempty"`
}

RestEmoticon struct for RestEmoticon

func NewRestEmoticon ¶

func NewRestEmoticon() *RestEmoticon

NewRestEmoticon instantiates a new RestEmoticon object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestEmoticonWithDefaults ¶

func NewRestEmoticonWithDefaults() *RestEmoticon

NewRestEmoticonWithDefaults instantiates a new RestEmoticon object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestEmoticon) GetShortcut ¶

func (o *RestEmoticon) GetShortcut() string

GetShortcut returns the Shortcut field value if set, zero value otherwise.

func (*RestEmoticon) GetShortcutOk ¶

func (o *RestEmoticon) GetShortcutOk() (*string, bool)

GetShortcutOk returns a tuple with the Shortcut field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestEmoticon) GetUrl ¶

func (o *RestEmoticon) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*RestEmoticon) GetUrlOk ¶

func (o *RestEmoticon) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestEmoticon) GetValue ¶

func (o *RestEmoticon) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*RestEmoticon) GetValueOk ¶

func (o *RestEmoticon) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestEmoticon) HasShortcut ¶

func (o *RestEmoticon) HasShortcut() bool

HasShortcut returns a boolean if a field has been set.

func (*RestEmoticon) HasUrl ¶

func (o *RestEmoticon) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*RestEmoticon) HasValue ¶

func (o *RestEmoticon) HasValue() bool

HasValue returns a boolean if a field has been set.

func (RestEmoticon) MarshalJSON ¶

func (o RestEmoticon) MarshalJSON() ([]byte, error)

func (*RestEmoticon) SetShortcut ¶

func (o *RestEmoticon) SetShortcut(v string)

SetShortcut gets a reference to the given string and assigns it to the Shortcut field.

func (*RestEmoticon) SetUrl ¶

func (o *RestEmoticon) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*RestEmoticon) SetValue ¶

func (o *RestEmoticon) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (RestEmoticon) ToMap ¶

func (o RestEmoticon) ToMap() (map[string]interface{}, error)
type RestEnhancedEntityLink struct {
	ProjectName       *string `json:"projectName,omitempty"`
	ApplicationLinkId *string `json:"applicationLinkId,omitempty"`
	DisplayUrl        *string `json:"displayUrl,omitempty"`
	ProjectId         *int64  `json:"projectId,omitempty"`
	ProjectKey        *string `json:"projectKey,omitempty"`
}

RestEnhancedEntityLink struct for RestEnhancedEntityLink

func NewRestEnhancedEntityLink() *RestEnhancedEntityLink

NewRestEnhancedEntityLink instantiates a new RestEnhancedEntityLink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestEnhancedEntityLinkWithDefaults ¶

func NewRestEnhancedEntityLinkWithDefaults() *RestEnhancedEntityLink

NewRestEnhancedEntityLinkWithDefaults instantiates a new RestEnhancedEntityLink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestEnhancedEntityLink) GetApplicationLinkId ¶

func (o *RestEnhancedEntityLink) GetApplicationLinkId() string

GetApplicationLinkId returns the ApplicationLinkId field value if set, zero value otherwise.

func (*RestEnhancedEntityLink) GetApplicationLinkIdOk ¶

func (o *RestEnhancedEntityLink) GetApplicationLinkIdOk() (*string, bool)

GetApplicationLinkIdOk returns a tuple with the ApplicationLinkId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestEnhancedEntityLink) GetDisplayUrl ¶

func (o *RestEnhancedEntityLink) GetDisplayUrl() string

GetDisplayUrl returns the DisplayUrl field value if set, zero value otherwise.

func (*RestEnhancedEntityLink) GetDisplayUrlOk ¶

func (o *RestEnhancedEntityLink) GetDisplayUrlOk() (*string, bool)

GetDisplayUrlOk returns a tuple with the DisplayUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestEnhancedEntityLink) GetProjectId ¶

func (o *RestEnhancedEntityLink) GetProjectId() int64

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*RestEnhancedEntityLink) GetProjectIdOk ¶

func (o *RestEnhancedEntityLink) GetProjectIdOk() (*int64, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestEnhancedEntityLink) GetProjectKey ¶

func (o *RestEnhancedEntityLink) GetProjectKey() string

GetProjectKey returns the ProjectKey field value if set, zero value otherwise.

func (*RestEnhancedEntityLink) GetProjectKeyOk ¶

func (o *RestEnhancedEntityLink) GetProjectKeyOk() (*string, bool)

GetProjectKeyOk returns a tuple with the ProjectKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestEnhancedEntityLink) GetProjectName ¶

func (o *RestEnhancedEntityLink) GetProjectName() string

GetProjectName returns the ProjectName field value if set, zero value otherwise.

func (*RestEnhancedEntityLink) GetProjectNameOk ¶

func (o *RestEnhancedEntityLink) GetProjectNameOk() (*string, bool)

GetProjectNameOk returns a tuple with the ProjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestEnhancedEntityLink) HasApplicationLinkId ¶

func (o *RestEnhancedEntityLink) HasApplicationLinkId() bool

HasApplicationLinkId returns a boolean if a field has been set.

func (*RestEnhancedEntityLink) HasDisplayUrl ¶

func (o *RestEnhancedEntityLink) HasDisplayUrl() bool

HasDisplayUrl returns a boolean if a field has been set.

func (*RestEnhancedEntityLink) HasProjectId ¶

func (o *RestEnhancedEntityLink) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*RestEnhancedEntityLink) HasProjectKey ¶

func (o *RestEnhancedEntityLink) HasProjectKey() bool

HasProjectKey returns a boolean if a field has been set.

func (*RestEnhancedEntityLink) HasProjectName ¶

func (o *RestEnhancedEntityLink) HasProjectName() bool

HasProjectName returns a boolean if a field has been set.

func (RestEnhancedEntityLink) MarshalJSON ¶

func (o RestEnhancedEntityLink) MarshalJSON() ([]byte, error)

func (*RestEnhancedEntityLink) SetApplicationLinkId ¶

func (o *RestEnhancedEntityLink) SetApplicationLinkId(v string)

SetApplicationLinkId gets a reference to the given string and assigns it to the ApplicationLinkId field.

func (*RestEnhancedEntityLink) SetDisplayUrl ¶

func (o *RestEnhancedEntityLink) SetDisplayUrl(v string)

SetDisplayUrl gets a reference to the given string and assigns it to the DisplayUrl field.

func (*RestEnhancedEntityLink) SetProjectId ¶

func (o *RestEnhancedEntityLink) SetProjectId(v int64)

SetProjectId gets a reference to the given int64 and assigns it to the ProjectId field.

func (*RestEnhancedEntityLink) SetProjectKey ¶

func (o *RestEnhancedEntityLink) SetProjectKey(v string)

SetProjectKey gets a reference to the given string and assigns it to the ProjectKey field.

func (*RestEnhancedEntityLink) SetProjectName ¶

func (o *RestEnhancedEntityLink) SetProjectName(v string)

SetProjectName gets a reference to the given string and assigns it to the ProjectName field.

func (RestEnhancedEntityLink) ToMap ¶

func (o RestEnhancedEntityLink) ToMap() (map[string]interface{}, error)

type RestErasedUser ¶

type RestErasedUser struct {
	NewIdentifier *string `json:"newIdentifier,omitempty"`
}

RestErasedUser struct for RestErasedUser

func NewRestErasedUser ¶

func NewRestErasedUser() *RestErasedUser

NewRestErasedUser instantiates a new RestErasedUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestErasedUserWithDefaults ¶

func NewRestErasedUserWithDefaults() *RestErasedUser

NewRestErasedUserWithDefaults instantiates a new RestErasedUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestErasedUser) GetNewIdentifier ¶

func (o *RestErasedUser) GetNewIdentifier() string

GetNewIdentifier returns the NewIdentifier field value if set, zero value otherwise.

func (*RestErasedUser) GetNewIdentifierOk ¶

func (o *RestErasedUser) GetNewIdentifierOk() (*string, bool)

GetNewIdentifierOk returns a tuple with the NewIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestErasedUser) HasNewIdentifier ¶

func (o *RestErasedUser) HasNewIdentifier() bool

HasNewIdentifier returns a boolean if a field has been set.

func (RestErasedUser) MarshalJSON ¶

func (o RestErasedUser) MarshalJSON() ([]byte, error)

func (*RestErasedUser) SetNewIdentifier ¶

func (o *RestErasedUser) SetNewIdentifier(v string)

SetNewIdentifier gets a reference to the given string and assigns it to the NewIdentifier field.

func (RestErasedUser) ToMap ¶

func (o RestErasedUser) ToMap() (map[string]interface{}, error)

type RestErrorMessage ¶

type RestErrorMessage struct {
	Message       *string `json:"message,omitempty"`
	Context       *string `json:"context,omitempty"`
	ExceptionName *string `json:"exceptionName,omitempty"`
}

RestErrorMessage struct for RestErrorMessage

func NewRestErrorMessage ¶

func NewRestErrorMessage() *RestErrorMessage

NewRestErrorMessage instantiates a new RestErrorMessage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestErrorMessageWithDefaults ¶

func NewRestErrorMessageWithDefaults() *RestErrorMessage

NewRestErrorMessageWithDefaults instantiates a new RestErrorMessage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestErrorMessage) GetContext ¶

func (o *RestErrorMessage) GetContext() string

GetContext returns the Context field value if set, zero value otherwise.

func (*RestErrorMessage) GetContextOk ¶

func (o *RestErrorMessage) GetContextOk() (*string, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestErrorMessage) GetExceptionName ¶

func (o *RestErrorMessage) GetExceptionName() string

GetExceptionName returns the ExceptionName field value if set, zero value otherwise.

func (*RestErrorMessage) GetExceptionNameOk ¶

func (o *RestErrorMessage) GetExceptionNameOk() (*string, bool)

GetExceptionNameOk returns a tuple with the ExceptionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestErrorMessage) GetMessage ¶

func (o *RestErrorMessage) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestErrorMessage) GetMessageOk ¶

func (o *RestErrorMessage) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestErrorMessage) HasContext ¶

func (o *RestErrorMessage) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*RestErrorMessage) HasExceptionName ¶

func (o *RestErrorMessage) HasExceptionName() bool

HasExceptionName returns a boolean if a field has been set.

func (*RestErrorMessage) HasMessage ¶

func (o *RestErrorMessage) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (RestErrorMessage) MarshalJSON ¶

func (o RestErrorMessage) MarshalJSON() ([]byte, error)

func (*RestErrorMessage) SetContext ¶

func (o *RestErrorMessage) SetContext(v string)

SetContext gets a reference to the given string and assigns it to the Context field.

func (*RestErrorMessage) SetExceptionName ¶

func (o *RestErrorMessage) SetExceptionName(v string)

SetExceptionName gets a reference to the given string and assigns it to the ExceptionName field.

func (*RestErrorMessage) SetMessage ¶

func (o *RestErrorMessage) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (RestErrorMessage) ToMap ¶

func (o RestErrorMessage) ToMap() (map[string]interface{}, error)

type RestErrors ¶

type RestErrors struct {
	Errors []RestErrorMessage `json:"errors,omitempty"`
}

RestErrors struct for RestErrors

func NewRestErrors ¶

func NewRestErrors() *RestErrors

NewRestErrors instantiates a new RestErrors object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestErrorsWithDefaults ¶

func NewRestErrorsWithDefaults() *RestErrors

NewRestErrorsWithDefaults instantiates a new RestErrors object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestErrors) GetErrors ¶

func (o *RestErrors) GetErrors() []RestErrorMessage

GetErrors returns the Errors field value if set, zero value otherwise.

func (*RestErrors) GetErrorsOk ¶

func (o *RestErrors) GetErrorsOk() ([]RestErrorMessage, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestErrors) HasErrors ¶

func (o *RestErrors) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (RestErrors) MarshalJSON ¶

func (o RestErrors) MarshalJSON() ([]byte, error)

func (*RestErrors) SetErrors ¶

func (o *RestErrors) SetErrors(v []RestErrorMessage)

SetErrors gets a reference to the given []RestErrorMessage and assigns it to the Errors field.

func (RestErrors) ToMap ¶

func (o RestErrors) ToMap() (map[string]interface{}, error)

type RestExportRequest ¶

type RestExportRequest struct {
	ExportLocation      *string                              `json:"exportLocation,omitempty"`
	RepositoriesRequest RestExportRequestRepositoriesRequest `json:"repositoriesRequest"`
}

RestExportRequest struct for RestExportRequest

func NewRestExportRequest ¶

func NewRestExportRequest(repositoriesRequest RestExportRequestRepositoriesRequest) *RestExportRequest

NewRestExportRequest instantiates a new RestExportRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestExportRequestWithDefaults ¶

func NewRestExportRequestWithDefaults() *RestExportRequest

NewRestExportRequestWithDefaults instantiates a new RestExportRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestExportRequest) GetExportLocation ¶

func (o *RestExportRequest) GetExportLocation() string

GetExportLocation returns the ExportLocation field value if set, zero value otherwise.

func (*RestExportRequest) GetExportLocationOk ¶

func (o *RestExportRequest) GetExportLocationOk() (*string, bool)

GetExportLocationOk returns a tuple with the ExportLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestExportRequest) GetRepositoriesRequest ¶

func (o *RestExportRequest) GetRepositoriesRequest() RestExportRequestRepositoriesRequest

GetRepositoriesRequest returns the RepositoriesRequest field value

func (*RestExportRequest) GetRepositoriesRequestOk ¶

func (o *RestExportRequest) GetRepositoriesRequestOk() (*RestExportRequestRepositoriesRequest, bool)

GetRepositoriesRequestOk returns a tuple with the RepositoriesRequest field value and a boolean to check if the value has been set.

func (*RestExportRequest) HasExportLocation ¶

func (o *RestExportRequest) HasExportLocation() bool

HasExportLocation returns a boolean if a field has been set.

func (RestExportRequest) MarshalJSON ¶

func (o RestExportRequest) MarshalJSON() ([]byte, error)

func (*RestExportRequest) SetExportLocation ¶

func (o *RestExportRequest) SetExportLocation(v string)

SetExportLocation gets a reference to the given string and assigns it to the ExportLocation field.

func (*RestExportRequest) SetRepositoriesRequest ¶

func (o *RestExportRequest) SetRepositoriesRequest(v RestExportRequestRepositoriesRequest)

SetRepositoriesRequest sets field value

func (RestExportRequest) ToMap ¶

func (o RestExportRequest) ToMap() (map[string]interface{}, error)

type RestExportRequestRepositoriesRequest ¶

type RestExportRequestRepositoriesRequest struct {
	Includes []RestRepositorySelector `json:"includes"`
}

RestExportRequestRepositoriesRequest struct for RestExportRequestRepositoriesRequest

func NewRestExportRequestRepositoriesRequest ¶

func NewRestExportRequestRepositoriesRequest(includes []RestRepositorySelector) *RestExportRequestRepositoriesRequest

NewRestExportRequestRepositoriesRequest instantiates a new RestExportRequestRepositoriesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestExportRequestRepositoriesRequestWithDefaults ¶

func NewRestExportRequestRepositoriesRequestWithDefaults() *RestExportRequestRepositoriesRequest

NewRestExportRequestRepositoriesRequestWithDefaults instantiates a new RestExportRequestRepositoriesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestExportRequestRepositoriesRequest) GetIncludes ¶

GetIncludes returns the Includes field value

func (*RestExportRequestRepositoriesRequest) GetIncludesOk ¶

GetIncludesOk returns a tuple with the Includes field value and a boolean to check if the value has been set.

func (RestExportRequestRepositoriesRequest) MarshalJSON ¶

func (o RestExportRequestRepositoriesRequest) MarshalJSON() ([]byte, error)

func (*RestExportRequestRepositoriesRequest) SetIncludes ¶

SetIncludes sets field value

func (RestExportRequestRepositoriesRequest) ToMap ¶

func (o RestExportRequestRepositoriesRequest) ToMap() (map[string]interface{}, error)

type RestFarmSynchronizationRequest ¶

type RestFarmSynchronizationRequest struct {
	Attempt        *int32  `json:"attempt,omitempty"`
	CreatedAt      *string `json:"createdAt,omitempty"`
	ExternalRepoId *string `json:"externalRepoId,omitempty"`
	Type           *string `json:"type,omitempty"`
}

RestFarmSynchronizationRequest struct for RestFarmSynchronizationRequest

func NewRestFarmSynchronizationRequest ¶

func NewRestFarmSynchronizationRequest() *RestFarmSynchronizationRequest

NewRestFarmSynchronizationRequest instantiates a new RestFarmSynchronizationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestFarmSynchronizationRequestWithDefaults ¶

func NewRestFarmSynchronizationRequestWithDefaults() *RestFarmSynchronizationRequest

NewRestFarmSynchronizationRequestWithDefaults instantiates a new RestFarmSynchronizationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestFarmSynchronizationRequest) GetAttempt ¶

func (o *RestFarmSynchronizationRequest) GetAttempt() int32

GetAttempt returns the Attempt field value if set, zero value otherwise.

func (*RestFarmSynchronizationRequest) GetAttemptOk ¶

func (o *RestFarmSynchronizationRequest) GetAttemptOk() (*int32, bool)

GetAttemptOk returns a tuple with the Attempt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestFarmSynchronizationRequest) GetCreatedAt ¶

func (o *RestFarmSynchronizationRequest) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*RestFarmSynchronizationRequest) GetCreatedAtOk ¶

func (o *RestFarmSynchronizationRequest) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestFarmSynchronizationRequest) GetExternalRepoId ¶

func (o *RestFarmSynchronizationRequest) GetExternalRepoId() string

GetExternalRepoId returns the ExternalRepoId field value if set, zero value otherwise.

func (*RestFarmSynchronizationRequest) GetExternalRepoIdOk ¶

func (o *RestFarmSynchronizationRequest) GetExternalRepoIdOk() (*string, bool)

GetExternalRepoIdOk returns a tuple with the ExternalRepoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestFarmSynchronizationRequest) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestFarmSynchronizationRequest) GetTypeOk ¶

func (o *RestFarmSynchronizationRequest) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestFarmSynchronizationRequest) HasAttempt ¶

func (o *RestFarmSynchronizationRequest) HasAttempt() bool

HasAttempt returns a boolean if a field has been set.

func (*RestFarmSynchronizationRequest) HasCreatedAt ¶

func (o *RestFarmSynchronizationRequest) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*RestFarmSynchronizationRequest) HasExternalRepoId ¶

func (o *RestFarmSynchronizationRequest) HasExternalRepoId() bool

HasExternalRepoId returns a boolean if a field has been set.

func (*RestFarmSynchronizationRequest) HasType ¶

func (o *RestFarmSynchronizationRequest) HasType() bool

HasType returns a boolean if a field has been set.

func (RestFarmSynchronizationRequest) MarshalJSON ¶

func (o RestFarmSynchronizationRequest) MarshalJSON() ([]byte, error)

func (*RestFarmSynchronizationRequest) SetAttempt ¶

func (o *RestFarmSynchronizationRequest) SetAttempt(v int32)

SetAttempt gets a reference to the given int32 and assigns it to the Attempt field.

func (*RestFarmSynchronizationRequest) SetCreatedAt ¶

func (o *RestFarmSynchronizationRequest) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*RestFarmSynchronizationRequest) SetExternalRepoId ¶

func (o *RestFarmSynchronizationRequest) SetExternalRepoId(v string)

SetExternalRepoId gets a reference to the given string and assigns it to the ExternalRepoId field.

func (*RestFarmSynchronizationRequest) SetType ¶

func (o *RestFarmSynchronizationRequest) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestFarmSynchronizationRequest) ToMap ¶

func (o RestFarmSynchronizationRequest) ToMap() (map[string]interface{}, error)

type RestGitTagCreateRequest ¶

type RestGitTagCreateRequest struct {
	Force      *bool   `json:"force,omitempty"`
	Message    *string `json:"message,omitempty"`
	Name       *string `json:"name,omitempty"`
	StartPoint *string `json:"startPoint,omitempty"`
	Type       *string `json:"type,omitempty"`
}

RestGitTagCreateRequest struct for RestGitTagCreateRequest

func NewRestGitTagCreateRequest ¶

func NewRestGitTagCreateRequest() *RestGitTagCreateRequest

NewRestGitTagCreateRequest instantiates a new RestGitTagCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestGitTagCreateRequestWithDefaults ¶

func NewRestGitTagCreateRequestWithDefaults() *RestGitTagCreateRequest

NewRestGitTagCreateRequestWithDefaults instantiates a new RestGitTagCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestGitTagCreateRequest) GetForce ¶

func (o *RestGitTagCreateRequest) GetForce() bool

GetForce returns the Force field value if set, zero value otherwise.

func (*RestGitTagCreateRequest) GetForceOk ¶

func (o *RestGitTagCreateRequest) GetForceOk() (*bool, bool)

GetForceOk returns a tuple with the Force field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGitTagCreateRequest) GetMessage ¶

func (o *RestGitTagCreateRequest) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestGitTagCreateRequest) GetMessageOk ¶

func (o *RestGitTagCreateRequest) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGitTagCreateRequest) GetName ¶

func (o *RestGitTagCreateRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestGitTagCreateRequest) GetNameOk ¶

func (o *RestGitTagCreateRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGitTagCreateRequest) GetStartPoint ¶

func (o *RestGitTagCreateRequest) GetStartPoint() string

GetStartPoint returns the StartPoint field value if set, zero value otherwise.

func (*RestGitTagCreateRequest) GetStartPointOk ¶

func (o *RestGitTagCreateRequest) GetStartPointOk() (*string, bool)

GetStartPointOk returns a tuple with the StartPoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGitTagCreateRequest) GetType ¶

func (o *RestGitTagCreateRequest) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestGitTagCreateRequest) GetTypeOk ¶

func (o *RestGitTagCreateRequest) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGitTagCreateRequest) HasForce ¶

func (o *RestGitTagCreateRequest) HasForce() bool

HasForce returns a boolean if a field has been set.

func (*RestGitTagCreateRequest) HasMessage ¶

func (o *RestGitTagCreateRequest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestGitTagCreateRequest) HasName ¶

func (o *RestGitTagCreateRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestGitTagCreateRequest) HasStartPoint ¶

func (o *RestGitTagCreateRequest) HasStartPoint() bool

HasStartPoint returns a boolean if a field has been set.

func (*RestGitTagCreateRequest) HasType ¶

func (o *RestGitTagCreateRequest) HasType() bool

HasType returns a boolean if a field has been set.

func (RestGitTagCreateRequest) MarshalJSON ¶

func (o RestGitTagCreateRequest) MarshalJSON() ([]byte, error)

func (*RestGitTagCreateRequest) SetForce ¶

func (o *RestGitTagCreateRequest) SetForce(v bool)

SetForce gets a reference to the given bool and assigns it to the Force field.

func (*RestGitTagCreateRequest) SetMessage ¶

func (o *RestGitTagCreateRequest) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestGitTagCreateRequest) SetName ¶

func (o *RestGitTagCreateRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestGitTagCreateRequest) SetStartPoint ¶

func (o *RestGitTagCreateRequest) SetStartPoint(v string)

SetStartPoint gets a reference to the given string and assigns it to the StartPoint field.

func (*RestGitTagCreateRequest) SetType ¶

func (o *RestGitTagCreateRequest) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestGitTagCreateRequest) ToMap ¶

func (o RestGitTagCreateRequest) ToMap() (map[string]interface{}, error)

type RestGpgKey ¶

type RestGpgKey struct {
	Id           *string         `json:"id,omitempty"`
	ExpiryDate   *int64          `json:"expiryDate,omitempty"`
	SubKeys      []RestGpgSubKey `json:"subKeys,omitempty"`
	Fingerprint  *string         `json:"fingerprint,omitempty"`
	EmailAddress *string         `json:"emailAddress,omitempty"`
	Text         *string         `json:"text,omitempty"`
}

RestGpgKey struct for RestGpgKey

func NewRestGpgKey ¶

func NewRestGpgKey() *RestGpgKey

NewRestGpgKey instantiates a new RestGpgKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestGpgKeyWithDefaults ¶

func NewRestGpgKeyWithDefaults() *RestGpgKey

NewRestGpgKeyWithDefaults instantiates a new RestGpgKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestGpgKey) GetEmailAddress ¶

func (o *RestGpgKey) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*RestGpgKey) GetEmailAddressOk ¶

func (o *RestGpgKey) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGpgKey) GetExpiryDate ¶

func (o *RestGpgKey) GetExpiryDate() int64

GetExpiryDate returns the ExpiryDate field value if set, zero value otherwise.

func (*RestGpgKey) GetExpiryDateOk ¶

func (o *RestGpgKey) GetExpiryDateOk() (*int64, bool)

GetExpiryDateOk returns a tuple with the ExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGpgKey) GetFingerprint ¶

func (o *RestGpgKey) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*RestGpgKey) GetFingerprintOk ¶

func (o *RestGpgKey) GetFingerprintOk() (*string, bool)

GetFingerprintOk returns a tuple with the Fingerprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGpgKey) GetId ¶

func (o *RestGpgKey) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestGpgKey) GetIdOk ¶

func (o *RestGpgKey) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGpgKey) GetSubKeys ¶

func (o *RestGpgKey) GetSubKeys() []RestGpgSubKey

GetSubKeys returns the SubKeys field value if set, zero value otherwise.

func (*RestGpgKey) GetSubKeysOk ¶

func (o *RestGpgKey) GetSubKeysOk() ([]RestGpgSubKey, bool)

GetSubKeysOk returns a tuple with the SubKeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGpgKey) GetText ¶

func (o *RestGpgKey) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*RestGpgKey) GetTextOk ¶

func (o *RestGpgKey) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGpgKey) HasEmailAddress ¶

func (o *RestGpgKey) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*RestGpgKey) HasExpiryDate ¶

func (o *RestGpgKey) HasExpiryDate() bool

HasExpiryDate returns a boolean if a field has been set.

func (*RestGpgKey) HasFingerprint ¶

func (o *RestGpgKey) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*RestGpgKey) HasId ¶

func (o *RestGpgKey) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestGpgKey) HasSubKeys ¶

func (o *RestGpgKey) HasSubKeys() bool

HasSubKeys returns a boolean if a field has been set.

func (*RestGpgKey) HasText ¶

func (o *RestGpgKey) HasText() bool

HasText returns a boolean if a field has been set.

func (RestGpgKey) MarshalJSON ¶

func (o RestGpgKey) MarshalJSON() ([]byte, error)

func (*RestGpgKey) SetEmailAddress ¶

func (o *RestGpgKey) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*RestGpgKey) SetExpiryDate ¶

func (o *RestGpgKey) SetExpiryDate(v int64)

SetExpiryDate gets a reference to the given int64 and assigns it to the ExpiryDate field.

func (*RestGpgKey) SetFingerprint ¶

func (o *RestGpgKey) SetFingerprint(v string)

SetFingerprint gets a reference to the given string and assigns it to the Fingerprint field.

func (*RestGpgKey) SetId ¶

func (o *RestGpgKey) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestGpgKey) SetSubKeys ¶

func (o *RestGpgKey) SetSubKeys(v []RestGpgSubKey)

SetSubKeys gets a reference to the given []RestGpgSubKey and assigns it to the SubKeys field.

func (*RestGpgKey) SetText ¶

func (o *RestGpgKey) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (RestGpgKey) ToMap ¶

func (o RestGpgKey) ToMap() (map[string]interface{}, error)

type RestGpgSubKey ¶

type RestGpgSubKey struct {
	ExpiryDate  *time.Time `json:"expiryDate,omitempty"`
	Fingerprint *string    `json:"fingerprint,omitempty"`
}

RestGpgSubKey struct for RestGpgSubKey

func NewRestGpgSubKey ¶

func NewRestGpgSubKey() *RestGpgSubKey

NewRestGpgSubKey instantiates a new RestGpgSubKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestGpgSubKeyWithDefaults ¶

func NewRestGpgSubKeyWithDefaults() *RestGpgSubKey

NewRestGpgSubKeyWithDefaults instantiates a new RestGpgSubKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestGpgSubKey) GetExpiryDate ¶

func (o *RestGpgSubKey) GetExpiryDate() time.Time

GetExpiryDate returns the ExpiryDate field value if set, zero value otherwise.

func (*RestGpgSubKey) GetExpiryDateOk ¶

func (o *RestGpgSubKey) GetExpiryDateOk() (*time.Time, bool)

GetExpiryDateOk returns a tuple with the ExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGpgSubKey) GetFingerprint ¶

func (o *RestGpgSubKey) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*RestGpgSubKey) GetFingerprintOk ¶

func (o *RestGpgSubKey) GetFingerprintOk() (*string, bool)

GetFingerprintOk returns a tuple with the Fingerprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestGpgSubKey) HasExpiryDate ¶

func (o *RestGpgSubKey) HasExpiryDate() bool

HasExpiryDate returns a boolean if a field has been set.

func (*RestGpgSubKey) HasFingerprint ¶

func (o *RestGpgSubKey) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (RestGpgSubKey) MarshalJSON ¶

func (o RestGpgSubKey) MarshalJSON() ([]byte, error)

func (*RestGpgSubKey) SetExpiryDate ¶

func (o *RestGpgSubKey) SetExpiryDate(v time.Time)

SetExpiryDate gets a reference to the given time.Time and assigns it to the ExpiryDate field.

func (*RestGpgSubKey) SetFingerprint ¶

func (o *RestGpgSubKey) SetFingerprint(v string)

SetFingerprint gets a reference to the given string and assigns it to the Fingerprint field.

func (RestGpgSubKey) ToMap ¶

func (o RestGpgSubKey) ToMap() (map[string]interface{}, error)

type RestHookScript ¶

type RestHookScript struct {
	Version     *int32     `json:"version,omitempty"`
	Name        *string    `json:"name,omitempty"`
	Id          *int64     `json:"id,omitempty"`
	Type        *string    `json:"type,omitempty"`
	PluginKey   *string    `json:"pluginKey,omitempty"`
	Description *string    `json:"description,omitempty"`
	UpdatedDate *time.Time `json:"updatedDate,omitempty"`
	CreatedDate *time.Time `json:"createdDate,omitempty"`
}

RestHookScript struct for RestHookScript

func NewRestHookScript ¶

func NewRestHookScript() *RestHookScript

NewRestHookScript instantiates a new RestHookScript object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestHookScriptWithDefaults ¶

func NewRestHookScriptWithDefaults() *RestHookScript

NewRestHookScriptWithDefaults instantiates a new RestHookScript object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestHookScript) GetCreatedDate ¶

func (o *RestHookScript) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestHookScript) GetCreatedDateOk ¶

func (o *RestHookScript) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScript) GetDescription ¶

func (o *RestHookScript) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestHookScript) GetDescriptionOk ¶

func (o *RestHookScript) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScript) GetId ¶

func (o *RestHookScript) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestHookScript) GetIdOk ¶

func (o *RestHookScript) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScript) GetName ¶

func (o *RestHookScript) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestHookScript) GetNameOk ¶

func (o *RestHookScript) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScript) GetPluginKey ¶

func (o *RestHookScript) GetPluginKey() string

GetPluginKey returns the PluginKey field value if set, zero value otherwise.

func (*RestHookScript) GetPluginKeyOk ¶

func (o *RestHookScript) GetPluginKeyOk() (*string, bool)

GetPluginKeyOk returns a tuple with the PluginKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScript) GetType ¶

func (o *RestHookScript) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestHookScript) GetTypeOk ¶

func (o *RestHookScript) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScript) GetUpdatedDate ¶

func (o *RestHookScript) GetUpdatedDate() time.Time

GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.

func (*RestHookScript) GetUpdatedDateOk ¶

func (o *RestHookScript) GetUpdatedDateOk() (*time.Time, bool)

GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScript) GetVersion ¶

func (o *RestHookScript) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestHookScript) GetVersionOk ¶

func (o *RestHookScript) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScript) HasCreatedDate ¶

func (o *RestHookScript) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestHookScript) HasDescription ¶

func (o *RestHookScript) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestHookScript) HasId ¶

func (o *RestHookScript) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestHookScript) HasName ¶

func (o *RestHookScript) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestHookScript) HasPluginKey ¶

func (o *RestHookScript) HasPluginKey() bool

HasPluginKey returns a boolean if a field has been set.

func (*RestHookScript) HasType ¶

func (o *RestHookScript) HasType() bool

HasType returns a boolean if a field has been set.

func (*RestHookScript) HasUpdatedDate ¶

func (o *RestHookScript) HasUpdatedDate() bool

HasUpdatedDate returns a boolean if a field has been set.

func (*RestHookScript) HasVersion ¶

func (o *RestHookScript) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestHookScript) MarshalJSON ¶

func (o RestHookScript) MarshalJSON() ([]byte, error)

func (*RestHookScript) SetCreatedDate ¶

func (o *RestHookScript) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*RestHookScript) SetDescription ¶

func (o *RestHookScript) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestHookScript) SetId ¶

func (o *RestHookScript) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestHookScript) SetName ¶

func (o *RestHookScript) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestHookScript) SetPluginKey ¶

func (o *RestHookScript) SetPluginKey(v string)

SetPluginKey gets a reference to the given string and assigns it to the PluginKey field.

func (*RestHookScript) SetType ¶

func (o *RestHookScript) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestHookScript) SetUpdatedDate ¶

func (o *RestHookScript) SetUpdatedDate(v time.Time)

SetUpdatedDate gets a reference to the given time.Time and assigns it to the UpdatedDate field.

func (*RestHookScript) SetVersion ¶

func (o *RestHookScript) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestHookScript) ToMap ¶

func (o RestHookScript) ToMap() (map[string]interface{}, error)

type RestHookScriptConfig ¶

type RestHookScriptConfig struct {
	Script     *RestHookScriptConfigScript   `json:"script,omitempty"`
	Scope      *RestAutoDeclineSettingsScope `json:"scope,omitempty"`
	TriggerIds []string                      `json:"triggerIds,omitempty"`
}

RestHookScriptConfig struct for RestHookScriptConfig

func NewRestHookScriptConfig ¶

func NewRestHookScriptConfig() *RestHookScriptConfig

NewRestHookScriptConfig instantiates a new RestHookScriptConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestHookScriptConfigWithDefaults ¶

func NewRestHookScriptConfigWithDefaults() *RestHookScriptConfig

NewRestHookScriptConfigWithDefaults instantiates a new RestHookScriptConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestHookScriptConfig) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestHookScriptConfig) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfig) GetScript ¶

GetScript returns the Script field value if set, zero value otherwise.

func (*RestHookScriptConfig) GetScriptOk ¶

GetScriptOk returns a tuple with the Script field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfig) GetTriggerIds ¶

func (o *RestHookScriptConfig) GetTriggerIds() []string

GetTriggerIds returns the TriggerIds field value if set, zero value otherwise.

func (*RestHookScriptConfig) GetTriggerIdsOk ¶

func (o *RestHookScriptConfig) GetTriggerIdsOk() ([]string, bool)

GetTriggerIdsOk returns a tuple with the TriggerIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfig) HasScope ¶

func (o *RestHookScriptConfig) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*RestHookScriptConfig) HasScript ¶

func (o *RestHookScriptConfig) HasScript() bool

HasScript returns a boolean if a field has been set.

func (*RestHookScriptConfig) HasTriggerIds ¶

func (o *RestHookScriptConfig) HasTriggerIds() bool

HasTriggerIds returns a boolean if a field has been set.

func (RestHookScriptConfig) MarshalJSON ¶

func (o RestHookScriptConfig) MarshalJSON() ([]byte, error)

func (*RestHookScriptConfig) SetScope ¶

SetScope gets a reference to the given RestAutoDeclineSettingsScope and assigns it to the Scope field.

func (*RestHookScriptConfig) SetScript ¶

SetScript gets a reference to the given RestHookScriptConfigScript and assigns it to the Script field.

func (*RestHookScriptConfig) SetTriggerIds ¶

func (o *RestHookScriptConfig) SetTriggerIds(v []string)

SetTriggerIds gets a reference to the given []string and assigns it to the TriggerIds field.

func (RestHookScriptConfig) ToMap ¶

func (o RestHookScriptConfig) ToMap() (map[string]interface{}, error)

type RestHookScriptConfigScript ¶

type RestHookScriptConfigScript struct {
	Version     *int32     `json:"version,omitempty"`
	Name        *string    `json:"name,omitempty"`
	Id          *int64     `json:"id,omitempty"`
	Type        *string    `json:"type,omitempty"`
	PluginKey   *string    `json:"pluginKey,omitempty"`
	Description *string    `json:"description,omitempty"`
	UpdatedDate *time.Time `json:"updatedDate,omitempty"`
	CreatedDate *time.Time `json:"createdDate,omitempty"`
}

RestHookScriptConfigScript struct for RestHookScriptConfigScript

func NewRestHookScriptConfigScript ¶

func NewRestHookScriptConfigScript() *RestHookScriptConfigScript

NewRestHookScriptConfigScript instantiates a new RestHookScriptConfigScript object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestHookScriptConfigScriptWithDefaults ¶

func NewRestHookScriptConfigScriptWithDefaults() *RestHookScriptConfigScript

NewRestHookScriptConfigScriptWithDefaults instantiates a new RestHookScriptConfigScript object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestHookScriptConfigScript) GetCreatedDate ¶

func (o *RestHookScriptConfigScript) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestHookScriptConfigScript) GetCreatedDateOk ¶

func (o *RestHookScriptConfigScript) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfigScript) GetDescription ¶

func (o *RestHookScriptConfigScript) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestHookScriptConfigScript) GetDescriptionOk ¶

func (o *RestHookScriptConfigScript) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfigScript) GetId ¶

func (o *RestHookScriptConfigScript) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestHookScriptConfigScript) GetIdOk ¶

func (o *RestHookScriptConfigScript) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfigScript) GetName ¶

func (o *RestHookScriptConfigScript) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestHookScriptConfigScript) GetNameOk ¶

func (o *RestHookScriptConfigScript) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfigScript) GetPluginKey ¶

func (o *RestHookScriptConfigScript) GetPluginKey() string

GetPluginKey returns the PluginKey field value if set, zero value otherwise.

func (*RestHookScriptConfigScript) GetPluginKeyOk ¶

func (o *RestHookScriptConfigScript) GetPluginKeyOk() (*string, bool)

GetPluginKeyOk returns a tuple with the PluginKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfigScript) GetType ¶

func (o *RestHookScriptConfigScript) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestHookScriptConfigScript) GetTypeOk ¶

func (o *RestHookScriptConfigScript) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfigScript) GetUpdatedDate ¶

func (o *RestHookScriptConfigScript) GetUpdatedDate() time.Time

GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.

func (*RestHookScriptConfigScript) GetUpdatedDateOk ¶

func (o *RestHookScriptConfigScript) GetUpdatedDateOk() (*time.Time, bool)

GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfigScript) GetVersion ¶

func (o *RestHookScriptConfigScript) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestHookScriptConfigScript) GetVersionOk ¶

func (o *RestHookScriptConfigScript) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptConfigScript) HasCreatedDate ¶

func (o *RestHookScriptConfigScript) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestHookScriptConfigScript) HasDescription ¶

func (o *RestHookScriptConfigScript) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestHookScriptConfigScript) HasId ¶

func (o *RestHookScriptConfigScript) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestHookScriptConfigScript) HasName ¶

func (o *RestHookScriptConfigScript) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestHookScriptConfigScript) HasPluginKey ¶

func (o *RestHookScriptConfigScript) HasPluginKey() bool

HasPluginKey returns a boolean if a field has been set.

func (*RestHookScriptConfigScript) HasType ¶

func (o *RestHookScriptConfigScript) HasType() bool

HasType returns a boolean if a field has been set.

func (*RestHookScriptConfigScript) HasUpdatedDate ¶

func (o *RestHookScriptConfigScript) HasUpdatedDate() bool

HasUpdatedDate returns a boolean if a field has been set.

func (*RestHookScriptConfigScript) HasVersion ¶

func (o *RestHookScriptConfigScript) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestHookScriptConfigScript) MarshalJSON ¶

func (o RestHookScriptConfigScript) MarshalJSON() ([]byte, error)

func (*RestHookScriptConfigScript) SetCreatedDate ¶

func (o *RestHookScriptConfigScript) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*RestHookScriptConfigScript) SetDescription ¶

func (o *RestHookScriptConfigScript) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestHookScriptConfigScript) SetId ¶

func (o *RestHookScriptConfigScript) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestHookScriptConfigScript) SetName ¶

func (o *RestHookScriptConfigScript) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestHookScriptConfigScript) SetPluginKey ¶

func (o *RestHookScriptConfigScript) SetPluginKey(v string)

SetPluginKey gets a reference to the given string and assigns it to the PluginKey field.

func (*RestHookScriptConfigScript) SetType ¶

func (o *RestHookScriptConfigScript) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestHookScriptConfigScript) SetUpdatedDate ¶

func (o *RestHookScriptConfigScript) SetUpdatedDate(v time.Time)

SetUpdatedDate gets a reference to the given time.Time and assigns it to the UpdatedDate field.

func (*RestHookScriptConfigScript) SetVersion ¶

func (o *RestHookScriptConfigScript) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestHookScriptConfigScript) ToMap ¶

func (o RestHookScriptConfigScript) ToMap() (map[string]interface{}, error)

type RestHookScriptTriggers ¶

type RestHookScriptTriggers struct {
	TriggerIds []string `json:"triggerIds,omitempty"`
}

RestHookScriptTriggers struct for RestHookScriptTriggers

func NewRestHookScriptTriggers ¶

func NewRestHookScriptTriggers() *RestHookScriptTriggers

NewRestHookScriptTriggers instantiates a new RestHookScriptTriggers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestHookScriptTriggersWithDefaults ¶

func NewRestHookScriptTriggersWithDefaults() *RestHookScriptTriggers

NewRestHookScriptTriggersWithDefaults instantiates a new RestHookScriptTriggers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestHookScriptTriggers) GetTriggerIds ¶

func (o *RestHookScriptTriggers) GetTriggerIds() []string

GetTriggerIds returns the TriggerIds field value if set, zero value otherwise.

func (*RestHookScriptTriggers) GetTriggerIdsOk ¶

func (o *RestHookScriptTriggers) GetTriggerIdsOk() ([]string, bool)

GetTriggerIdsOk returns a tuple with the TriggerIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestHookScriptTriggers) HasTriggerIds ¶

func (o *RestHookScriptTriggers) HasTriggerIds() bool

HasTriggerIds returns a boolean if a field has been set.

func (RestHookScriptTriggers) MarshalJSON ¶

func (o RestHookScriptTriggers) MarshalJSON() ([]byte, error)

func (*RestHookScriptTriggers) SetTriggerIds ¶

func (o *RestHookScriptTriggers) SetTriggerIds(v []string)

SetTriggerIds gets a reference to the given []string and assigns it to the TriggerIds field.

func (RestHookScriptTriggers) ToMap ¶

func (o RestHookScriptTriggers) ToMap() (map[string]interface{}, error)

type RestImportRequest ¶

type RestImportRequest struct {
	ArchivePath *string `json:"archivePath,omitempty"`
}

RestImportRequest struct for RestImportRequest

func NewRestImportRequest ¶

func NewRestImportRequest() *RestImportRequest

NewRestImportRequest instantiates a new RestImportRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestImportRequestWithDefaults ¶

func NewRestImportRequestWithDefaults() *RestImportRequest

NewRestImportRequestWithDefaults instantiates a new RestImportRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestImportRequest) GetArchivePath ¶

func (o *RestImportRequest) GetArchivePath() string

GetArchivePath returns the ArchivePath field value if set, zero value otherwise.

func (*RestImportRequest) GetArchivePathOk ¶

func (o *RestImportRequest) GetArchivePathOk() (*string, bool)

GetArchivePathOk returns a tuple with the ArchivePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestImportRequest) HasArchivePath ¶

func (o *RestImportRequest) HasArchivePath() bool

HasArchivePath returns a boolean if a field has been set.

func (RestImportRequest) MarshalJSON ¶

func (o RestImportRequest) MarshalJSON() ([]byte, error)

func (*RestImportRequest) SetArchivePath ¶

func (o *RestImportRequest) SetArchivePath(v string)

SetArchivePath gets a reference to the given string and assigns it to the ArchivePath field.

func (RestImportRequest) ToMap ¶

func (o RestImportRequest) ToMap() (map[string]interface{}, error)

type RestInsightAnnotation ¶

type RestInsightAnnotation struct {
	Message    *string `json:"message,omitempty"`
	Type       *string `json:"type,omitempty"`
	Path       *string `json:"path,omitempty"`
	Severity   *string `json:"severity,omitempty"`
	ReportKey  *string `json:"reportKey,omitempty"`
	ExternalId *string `json:"externalId,omitempty"`
	Link       *string `json:"link,omitempty"`
	Line       *int32  `json:"line,omitempty"`
}

RestInsightAnnotation struct for RestInsightAnnotation

func NewRestInsightAnnotation ¶

func NewRestInsightAnnotation() *RestInsightAnnotation

NewRestInsightAnnotation instantiates a new RestInsightAnnotation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestInsightAnnotationWithDefaults ¶

func NewRestInsightAnnotationWithDefaults() *RestInsightAnnotation

NewRestInsightAnnotationWithDefaults instantiates a new RestInsightAnnotation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestInsightAnnotation) GetExternalId ¶

func (o *RestInsightAnnotation) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*RestInsightAnnotation) GetExternalIdOk ¶

func (o *RestInsightAnnotation) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightAnnotation) GetLine ¶

func (o *RestInsightAnnotation) GetLine() int32

GetLine returns the Line field value if set, zero value otherwise.

func (*RestInsightAnnotation) GetLineOk ¶

func (o *RestInsightAnnotation) GetLineOk() (*int32, bool)

GetLineOk returns a tuple with the Line field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestInsightAnnotation) GetLink() string

GetLink returns the Link field value if set, zero value otherwise.

func (*RestInsightAnnotation) GetLinkOk ¶

func (o *RestInsightAnnotation) GetLinkOk() (*string, bool)

GetLinkOk returns a tuple with the Link field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightAnnotation) GetMessage ¶

func (o *RestInsightAnnotation) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestInsightAnnotation) GetMessageOk ¶

func (o *RestInsightAnnotation) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightAnnotation) GetPath ¶

func (o *RestInsightAnnotation) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*RestInsightAnnotation) GetPathOk ¶

func (o *RestInsightAnnotation) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightAnnotation) GetReportKey ¶

func (o *RestInsightAnnotation) GetReportKey() string

GetReportKey returns the ReportKey field value if set, zero value otherwise.

func (*RestInsightAnnotation) GetReportKeyOk ¶

func (o *RestInsightAnnotation) GetReportKeyOk() (*string, bool)

GetReportKeyOk returns a tuple with the ReportKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightAnnotation) GetSeverity ¶

func (o *RestInsightAnnotation) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*RestInsightAnnotation) GetSeverityOk ¶

func (o *RestInsightAnnotation) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightAnnotation) GetType ¶

func (o *RestInsightAnnotation) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestInsightAnnotation) GetTypeOk ¶

func (o *RestInsightAnnotation) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightAnnotation) HasExternalId ¶

func (o *RestInsightAnnotation) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*RestInsightAnnotation) HasLine ¶

func (o *RestInsightAnnotation) HasLine() bool

HasLine returns a boolean if a field has been set.

func (o *RestInsightAnnotation) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*RestInsightAnnotation) HasMessage ¶

func (o *RestInsightAnnotation) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestInsightAnnotation) HasPath ¶

func (o *RestInsightAnnotation) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*RestInsightAnnotation) HasReportKey ¶

func (o *RestInsightAnnotation) HasReportKey() bool

HasReportKey returns a boolean if a field has been set.

func (*RestInsightAnnotation) HasSeverity ¶

func (o *RestInsightAnnotation) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*RestInsightAnnotation) HasType ¶

func (o *RestInsightAnnotation) HasType() bool

HasType returns a boolean if a field has been set.

func (RestInsightAnnotation) MarshalJSON ¶

func (o RestInsightAnnotation) MarshalJSON() ([]byte, error)

func (*RestInsightAnnotation) SetExternalId ¶

func (o *RestInsightAnnotation) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*RestInsightAnnotation) SetLine ¶

func (o *RestInsightAnnotation) SetLine(v int32)

SetLine gets a reference to the given int32 and assigns it to the Line field.

func (o *RestInsightAnnotation) SetLink(v string)

SetLink gets a reference to the given string and assigns it to the Link field.

func (*RestInsightAnnotation) SetMessage ¶

func (o *RestInsightAnnotation) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestInsightAnnotation) SetPath ¶

func (o *RestInsightAnnotation) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*RestInsightAnnotation) SetReportKey ¶

func (o *RestInsightAnnotation) SetReportKey(v string)

SetReportKey gets a reference to the given string and assigns it to the ReportKey field.

func (*RestInsightAnnotation) SetSeverity ¶

func (o *RestInsightAnnotation) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*RestInsightAnnotation) SetType ¶

func (o *RestInsightAnnotation) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestInsightAnnotation) ToMap ¶

func (o RestInsightAnnotation) ToMap() (map[string]interface{}, error)

type RestInsightAnnotationsResponse ¶

type RestInsightAnnotationsResponse struct {
	Annotations []RestInsightAnnotation `json:"annotations,omitempty"`
}

RestInsightAnnotationsResponse struct for RestInsightAnnotationsResponse

func NewRestInsightAnnotationsResponse ¶

func NewRestInsightAnnotationsResponse() *RestInsightAnnotationsResponse

NewRestInsightAnnotationsResponse instantiates a new RestInsightAnnotationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestInsightAnnotationsResponseWithDefaults ¶

func NewRestInsightAnnotationsResponseWithDefaults() *RestInsightAnnotationsResponse

NewRestInsightAnnotationsResponseWithDefaults instantiates a new RestInsightAnnotationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestInsightAnnotationsResponse) GetAnnotations ¶

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*RestInsightAnnotationsResponse) GetAnnotationsOk ¶

func (o *RestInsightAnnotationsResponse) GetAnnotationsOk() ([]RestInsightAnnotation, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightAnnotationsResponse) HasAnnotations ¶

func (o *RestInsightAnnotationsResponse) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (RestInsightAnnotationsResponse) MarshalJSON ¶

func (o RestInsightAnnotationsResponse) MarshalJSON() ([]byte, error)

func (*RestInsightAnnotationsResponse) SetAnnotations ¶

SetAnnotations gets a reference to the given []RestInsightAnnotation and assigns it to the Annotations field.

func (RestInsightAnnotationsResponse) ToMap ¶

func (o RestInsightAnnotationsResponse) ToMap() (map[string]interface{}, error)

type RestInsightReport ¶

type RestInsightReport struct {
	Key         *string                 `json:"key,omitempty"`
	Result      *string                 `json:"result,omitempty"`
	CreatedDate *float32                `json:"createdDate,omitempty"`
	Reporter    *string                 `json:"reporter,omitempty"`
	Details     *string                 `json:"details,omitempty"`
	LogoUrl     *string                 `json:"logoUrl,omitempty"`
	Link        *string                 `json:"link,omitempty"`
	Title       *string                 `json:"title,omitempty"`
	Data        []RestInsightReportData `json:"data,omitempty"`
}

RestInsightReport struct for RestInsightReport

func NewRestInsightReport ¶

func NewRestInsightReport() *RestInsightReport

NewRestInsightReport instantiates a new RestInsightReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestInsightReportWithDefaults ¶

func NewRestInsightReportWithDefaults() *RestInsightReport

NewRestInsightReportWithDefaults instantiates a new RestInsightReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestInsightReport) GetCreatedDate ¶

func (o *RestInsightReport) GetCreatedDate() float32

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestInsightReport) GetCreatedDateOk ¶

func (o *RestInsightReport) GetCreatedDateOk() (*float32, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReport) GetData ¶

GetData returns the Data field value if set, zero value otherwise.

func (*RestInsightReport) GetDataOk ¶

func (o *RestInsightReport) GetDataOk() ([]RestInsightReportData, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReport) GetDetails ¶

func (o *RestInsightReport) GetDetails() string

GetDetails returns the Details field value if set, zero value otherwise.

func (*RestInsightReport) GetDetailsOk ¶

func (o *RestInsightReport) GetDetailsOk() (*string, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReport) GetKey ¶

func (o *RestInsightReport) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*RestInsightReport) GetKeyOk ¶

func (o *RestInsightReport) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestInsightReport) GetLink() string

GetLink returns the Link field value if set, zero value otherwise.

func (*RestInsightReport) GetLinkOk ¶

func (o *RestInsightReport) GetLinkOk() (*string, bool)

GetLinkOk returns a tuple with the Link field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReport) GetLogoUrl ¶

func (o *RestInsightReport) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value if set, zero value otherwise.

func (*RestInsightReport) GetLogoUrlOk ¶

func (o *RestInsightReport) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReport) GetReporter ¶

func (o *RestInsightReport) GetReporter() string

GetReporter returns the Reporter field value if set, zero value otherwise.

func (*RestInsightReport) GetReporterOk ¶

func (o *RestInsightReport) GetReporterOk() (*string, bool)

GetReporterOk returns a tuple with the Reporter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReport) GetResult ¶

func (o *RestInsightReport) GetResult() string

GetResult returns the Result field value if set, zero value otherwise.

func (*RestInsightReport) GetResultOk ¶

func (o *RestInsightReport) GetResultOk() (*string, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReport) GetTitle ¶

func (o *RestInsightReport) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*RestInsightReport) GetTitleOk ¶

func (o *RestInsightReport) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReport) HasCreatedDate ¶

func (o *RestInsightReport) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestInsightReport) HasData ¶

func (o *RestInsightReport) HasData() bool

HasData returns a boolean if a field has been set.

func (*RestInsightReport) HasDetails ¶

func (o *RestInsightReport) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*RestInsightReport) HasKey ¶

func (o *RestInsightReport) HasKey() bool

HasKey returns a boolean if a field has been set.

func (o *RestInsightReport) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*RestInsightReport) HasLogoUrl ¶

func (o *RestInsightReport) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*RestInsightReport) HasReporter ¶

func (o *RestInsightReport) HasReporter() bool

HasReporter returns a boolean if a field has been set.

func (*RestInsightReport) HasResult ¶

func (o *RestInsightReport) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*RestInsightReport) HasTitle ¶

func (o *RestInsightReport) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (RestInsightReport) MarshalJSON ¶

func (o RestInsightReport) MarshalJSON() ([]byte, error)

func (*RestInsightReport) SetCreatedDate ¶

func (o *RestInsightReport) SetCreatedDate(v float32)

SetCreatedDate gets a reference to the given float32 and assigns it to the CreatedDate field.

func (*RestInsightReport) SetData ¶

func (o *RestInsightReport) SetData(v []RestInsightReportData)

SetData gets a reference to the given []RestInsightReportData and assigns it to the Data field.

func (*RestInsightReport) SetDetails ¶

func (o *RestInsightReport) SetDetails(v string)

SetDetails gets a reference to the given string and assigns it to the Details field.

func (*RestInsightReport) SetKey ¶

func (o *RestInsightReport) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (o *RestInsightReport) SetLink(v string)

SetLink gets a reference to the given string and assigns it to the Link field.

func (*RestInsightReport) SetLogoUrl ¶

func (o *RestInsightReport) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given string and assigns it to the LogoUrl field.

func (*RestInsightReport) SetReporter ¶

func (o *RestInsightReport) SetReporter(v string)

SetReporter gets a reference to the given string and assigns it to the Reporter field.

func (*RestInsightReport) SetResult ¶

func (o *RestInsightReport) SetResult(v string)

SetResult gets a reference to the given string and assigns it to the Result field.

func (*RestInsightReport) SetTitle ¶

func (o *RestInsightReport) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (RestInsightReport) ToMap ¶

func (o RestInsightReport) ToMap() (map[string]interface{}, error)

type RestInsightReportData ¶

type RestInsightReportData struct {
	Value map[string]interface{} `json:"value,omitempty"`
	Type  *string                `json:"type,omitempty"`
	Title *string                `json:"title,omitempty"`
}

RestInsightReportData struct for RestInsightReportData

func NewRestInsightReportData ¶

func NewRestInsightReportData() *RestInsightReportData

NewRestInsightReportData instantiates a new RestInsightReportData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestInsightReportDataWithDefaults ¶

func NewRestInsightReportDataWithDefaults() *RestInsightReportData

NewRestInsightReportDataWithDefaults instantiates a new RestInsightReportData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestInsightReportData) GetTitle ¶

func (o *RestInsightReportData) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*RestInsightReportData) GetTitleOk ¶

func (o *RestInsightReportData) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReportData) GetType ¶

func (o *RestInsightReportData) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestInsightReportData) GetTypeOk ¶

func (o *RestInsightReportData) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReportData) GetValue ¶

func (o *RestInsightReportData) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*RestInsightReportData) GetValueOk ¶

func (o *RestInsightReportData) GetValueOk() (map[string]interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestInsightReportData) HasTitle ¶

func (o *RestInsightReportData) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*RestInsightReportData) HasType ¶

func (o *RestInsightReportData) HasType() bool

HasType returns a boolean if a field has been set.

func (*RestInsightReportData) HasValue ¶

func (o *RestInsightReportData) HasValue() bool

HasValue returns a boolean if a field has been set.

func (RestInsightReportData) MarshalJSON ¶

func (o RestInsightReportData) MarshalJSON() ([]byte, error)

func (*RestInsightReportData) SetTitle ¶

func (o *RestInsightReportData) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*RestInsightReportData) SetType ¶

func (o *RestInsightReportData) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestInsightReportData) SetValue ¶

func (o *RestInsightReportData) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

func (RestInsightReportData) ToMap ¶

func (o RestInsightReportData) ToMap() (map[string]interface{}, error)

type RestJiraIssue ¶

type RestJiraIssue struct {
	Key *string `json:"key,omitempty"`
	Url *string `json:"url,omitempty"`
}

RestJiraIssue struct for RestJiraIssue

func NewRestJiraIssue ¶

func NewRestJiraIssue() *RestJiraIssue

NewRestJiraIssue instantiates a new RestJiraIssue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestJiraIssueWithDefaults ¶

func NewRestJiraIssueWithDefaults() *RestJiraIssue

NewRestJiraIssueWithDefaults instantiates a new RestJiraIssue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestJiraIssue) GetKey ¶

func (o *RestJiraIssue) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*RestJiraIssue) GetKeyOk ¶

func (o *RestJiraIssue) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJiraIssue) GetUrl ¶

func (o *RestJiraIssue) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*RestJiraIssue) GetUrlOk ¶

func (o *RestJiraIssue) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJiraIssue) HasKey ¶

func (o *RestJiraIssue) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*RestJiraIssue) HasUrl ¶

func (o *RestJiraIssue) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (RestJiraIssue) MarshalJSON ¶

func (o RestJiraIssue) MarshalJSON() ([]byte, error)

func (*RestJiraIssue) SetKey ¶

func (o *RestJiraIssue) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*RestJiraIssue) SetUrl ¶

func (o *RestJiraIssue) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (RestJiraIssue) ToMap ¶

func (o RestJiraIssue) ToMap() (map[string]interface{}, error)

type RestJob ¶

type RestJob struct {
	Progress    *RestJobProgress                `json:"progress,omitempty"`
	Id          *int64                          `json:"id,omitempty"`
	State       *string                         `json:"state,omitempty"`
	Type        *string                         `json:"type,omitempty"`
	EndDate     *int64                          `json:"endDate,omitempty"`
	StartDate   *int64                          `json:"startDate,omitempty"`
	NodeId      *string                         `json:"nodeId,omitempty"`
	Initiator   *RestPullRequestParticipantUser `json:"initiator,omitempty"`
	UpdatedDate *int64                          `json:"updatedDate,omitempty"`
}

RestJob struct for RestJob

func NewRestJob ¶

func NewRestJob() *RestJob

NewRestJob instantiates a new RestJob object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestJobWithDefaults ¶

func NewRestJobWithDefaults() *RestJob

NewRestJobWithDefaults instantiates a new RestJob object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestJob) GetEndDate ¶

func (o *RestJob) GetEndDate() int64

GetEndDate returns the EndDate field value if set, zero value otherwise.

func (*RestJob) GetEndDateOk ¶

func (o *RestJob) GetEndDateOk() (*int64, bool)

GetEndDateOk returns a tuple with the EndDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJob) GetId ¶

func (o *RestJob) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestJob) GetIdOk ¶

func (o *RestJob) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJob) GetInitiator ¶

func (o *RestJob) GetInitiator() RestPullRequestParticipantUser

GetInitiator returns the Initiator field value if set, zero value otherwise.

func (*RestJob) GetInitiatorOk ¶

func (o *RestJob) GetInitiatorOk() (*RestPullRequestParticipantUser, bool)

GetInitiatorOk returns a tuple with the Initiator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJob) GetNodeId ¶

func (o *RestJob) GetNodeId() string

GetNodeId returns the NodeId field value if set, zero value otherwise.

func (*RestJob) GetNodeIdOk ¶

func (o *RestJob) GetNodeIdOk() (*string, bool)

GetNodeIdOk returns a tuple with the NodeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJob) GetProgress ¶

func (o *RestJob) GetProgress() RestJobProgress

GetProgress returns the Progress field value if set, zero value otherwise.

func (*RestJob) GetProgressOk ¶

func (o *RestJob) GetProgressOk() (*RestJobProgress, bool)

GetProgressOk returns a tuple with the Progress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJob) GetStartDate ¶

func (o *RestJob) GetStartDate() int64

GetStartDate returns the StartDate field value if set, zero value otherwise.

func (*RestJob) GetStartDateOk ¶

func (o *RestJob) GetStartDateOk() (*int64, bool)

GetStartDateOk returns a tuple with the StartDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJob) GetState ¶

func (o *RestJob) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestJob) GetStateOk ¶

func (o *RestJob) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJob) GetType ¶

func (o *RestJob) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestJob) GetTypeOk ¶

func (o *RestJob) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJob) GetUpdatedDate ¶

func (o *RestJob) GetUpdatedDate() int64

GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.

func (*RestJob) GetUpdatedDateOk ¶

func (o *RestJob) GetUpdatedDateOk() (*int64, bool)

GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJob) HasEndDate ¶

func (o *RestJob) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*RestJob) HasId ¶

func (o *RestJob) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestJob) HasInitiator ¶

func (o *RestJob) HasInitiator() bool

HasInitiator returns a boolean if a field has been set.

func (*RestJob) HasNodeId ¶

func (o *RestJob) HasNodeId() bool

HasNodeId returns a boolean if a field has been set.

func (*RestJob) HasProgress ¶

func (o *RestJob) HasProgress() bool

HasProgress returns a boolean if a field has been set.

func (*RestJob) HasStartDate ¶

func (o *RestJob) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (*RestJob) HasState ¶

func (o *RestJob) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestJob) HasType ¶

func (o *RestJob) HasType() bool

HasType returns a boolean if a field has been set.

func (*RestJob) HasUpdatedDate ¶

func (o *RestJob) HasUpdatedDate() bool

HasUpdatedDate returns a boolean if a field has been set.

func (RestJob) MarshalJSON ¶

func (o RestJob) MarshalJSON() ([]byte, error)

func (*RestJob) SetEndDate ¶

func (o *RestJob) SetEndDate(v int64)

SetEndDate gets a reference to the given int64 and assigns it to the EndDate field.

func (*RestJob) SetId ¶

func (o *RestJob) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestJob) SetInitiator ¶

func (o *RestJob) SetInitiator(v RestPullRequestParticipantUser)

SetInitiator gets a reference to the given RestPullRequestParticipantUser and assigns it to the Initiator field.

func (*RestJob) SetNodeId ¶

func (o *RestJob) SetNodeId(v string)

SetNodeId gets a reference to the given string and assigns it to the NodeId field.

func (*RestJob) SetProgress ¶

func (o *RestJob) SetProgress(v RestJobProgress)

SetProgress gets a reference to the given RestJobProgress and assigns it to the Progress field.

func (*RestJob) SetStartDate ¶

func (o *RestJob) SetStartDate(v int64)

SetStartDate gets a reference to the given int64 and assigns it to the StartDate field.

func (*RestJob) SetState ¶

func (o *RestJob) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestJob) SetType ¶

func (o *RestJob) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestJob) SetUpdatedDate ¶

func (o *RestJob) SetUpdatedDate(v int64)

SetUpdatedDate gets a reference to the given int64 and assigns it to the UpdatedDate field.

func (RestJob) ToMap ¶

func (o RestJob) ToMap() (map[string]interface{}, error)

type RestJobMessage ¶

type RestJobMessage struct {
	Subject     *string    `json:"subject,omitempty"`
	Id          *string    `json:"id,omitempty"`
	Severity    *string    `json:"severity,omitempty"`
	CreatedDate *time.Time `json:"createdDate,omitempty"`
	Text        *string    `json:"text,omitempty"`
}

RestJobMessage struct for RestJobMessage

func NewRestJobMessage ¶

func NewRestJobMessage() *RestJobMessage

NewRestJobMessage instantiates a new RestJobMessage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestJobMessageWithDefaults ¶

func NewRestJobMessageWithDefaults() *RestJobMessage

NewRestJobMessageWithDefaults instantiates a new RestJobMessage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestJobMessage) GetCreatedDate ¶

func (o *RestJobMessage) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestJobMessage) GetCreatedDateOk ¶

func (o *RestJobMessage) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJobMessage) GetId ¶

func (o *RestJobMessage) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestJobMessage) GetIdOk ¶

func (o *RestJobMessage) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJobMessage) GetSeverity ¶

func (o *RestJobMessage) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*RestJobMessage) GetSeverityOk ¶

func (o *RestJobMessage) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJobMessage) GetSubject ¶

func (o *RestJobMessage) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*RestJobMessage) GetSubjectOk ¶

func (o *RestJobMessage) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJobMessage) GetText ¶

func (o *RestJobMessage) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*RestJobMessage) GetTextOk ¶

func (o *RestJobMessage) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJobMessage) HasCreatedDate ¶

func (o *RestJobMessage) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestJobMessage) HasId ¶

func (o *RestJobMessage) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestJobMessage) HasSeverity ¶

func (o *RestJobMessage) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*RestJobMessage) HasSubject ¶

func (o *RestJobMessage) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*RestJobMessage) HasText ¶

func (o *RestJobMessage) HasText() bool

HasText returns a boolean if a field has been set.

func (RestJobMessage) MarshalJSON ¶

func (o RestJobMessage) MarshalJSON() ([]byte, error)

func (*RestJobMessage) SetCreatedDate ¶

func (o *RestJobMessage) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*RestJobMessage) SetId ¶

func (o *RestJobMessage) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestJobMessage) SetSeverity ¶

func (o *RestJobMessage) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*RestJobMessage) SetSubject ¶

func (o *RestJobMessage) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*RestJobMessage) SetText ¶

func (o *RestJobMessage) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (RestJobMessage) ToMap ¶

func (o RestJobMessage) ToMap() (map[string]interface{}, error)

type RestJobProgress ¶

type RestJobProgress struct {
	Message    *string `json:"message,omitempty"`
	Percentage *int32  `json:"percentage,omitempty"`
}

RestJobProgress struct for RestJobProgress

func NewRestJobProgress ¶

func NewRestJobProgress() *RestJobProgress

NewRestJobProgress instantiates a new RestJobProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestJobProgressWithDefaults ¶

func NewRestJobProgressWithDefaults() *RestJobProgress

NewRestJobProgressWithDefaults instantiates a new RestJobProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestJobProgress) GetMessage ¶

func (o *RestJobProgress) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestJobProgress) GetMessageOk ¶

func (o *RestJobProgress) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJobProgress) GetPercentage ¶

func (o *RestJobProgress) GetPercentage() int32

GetPercentage returns the Percentage field value if set, zero value otherwise.

func (*RestJobProgress) GetPercentageOk ¶

func (o *RestJobProgress) GetPercentageOk() (*int32, bool)

GetPercentageOk returns a tuple with the Percentage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestJobProgress) HasMessage ¶

func (o *RestJobProgress) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestJobProgress) HasPercentage ¶

func (o *RestJobProgress) HasPercentage() bool

HasPercentage returns a boolean if a field has been set.

func (RestJobProgress) MarshalJSON ¶

func (o RestJobProgress) MarshalJSON() ([]byte, error)

func (*RestJobProgress) SetMessage ¶

func (o *RestJobProgress) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestJobProgress) SetPercentage ¶

func (o *RestJobProgress) SetPercentage(v int32)

SetPercentage gets a reference to the given int32 and assigns it to the Percentage field.

func (RestJobProgress) ToMap ¶

func (o RestJobProgress) ToMap() (map[string]interface{}, error)

type RestLabel ¶

type RestLabel struct {
	Name *string `json:"name,omitempty"`
}

RestLabel struct for RestLabel

func NewRestLabel ¶

func NewRestLabel() *RestLabel

NewRestLabel instantiates a new RestLabel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestLabelWithDefaults ¶

func NewRestLabelWithDefaults() *RestLabel

NewRestLabelWithDefaults instantiates a new RestLabel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestLabel) GetName ¶

func (o *RestLabel) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestLabel) GetNameOk ¶

func (o *RestLabel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabel) HasName ¶

func (o *RestLabel) HasName() bool

HasName returns a boolean if a field has been set.

func (RestLabel) MarshalJSON ¶

func (o RestLabel) MarshalJSON() ([]byte, error)

func (*RestLabel) SetName ¶

func (o *RestLabel) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestLabel) ToMap ¶

func (o RestLabel) ToMap() (map[string]interface{}, error)

type RestLabelable ¶

type RestLabelable struct {
	LabelableType *string                                  `json:"labelableType,omitempty"`
	Name          *string                                  `json:"name,omitempty"`
	Id            *int32                                   `json:"id,omitempty"`
	State         *string                                  `json:"state,omitempty"`
	Public        *bool                                    `json:"public,omitempty"`
	Project       *RestPullRequestFromRefRepositoryProject `json:"project,omitempty"`
	Description   *string                                  `json:"description,omitempty"`
	DefaultBranch *string                                  `json:"defaultBranch,omitempty"`
	RelatedLinks  map[string]interface{}                   `json:"relatedLinks,omitempty"`
	Partition     *int32                                   `json:"partition,omitempty"`
	Origin        *RestPullRequestFromRefRepositoryOrigin  `json:"origin,omitempty"`
	HierarchyId   *string                                  `json:"hierarchyId,omitempty"`
	StatusMessage *string                                  `json:"statusMessage,omitempty"`
	Archived      *bool                                    `json:"archived,omitempty"`
	Forkable      *bool                                    `json:"forkable,omitempty"`
	ScmId         *string                                  `json:"scmId,omitempty"`
	Slug          *string                                  `json:"slug,omitempty"`
	Scope         *string                                  `json:"scope,omitempty"`
	Links         map[string]interface{}                   `json:"links,omitempty"`
}

RestLabelable struct for RestLabelable

func NewRestLabelable ¶

func NewRestLabelable() *RestLabelable

NewRestLabelable instantiates a new RestLabelable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestLabelableWithDefaults ¶

func NewRestLabelableWithDefaults() *RestLabelable

NewRestLabelableWithDefaults instantiates a new RestLabelable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestLabelable) GetArchived ¶

func (o *RestLabelable) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*RestLabelable) GetArchivedOk ¶

func (o *RestLabelable) GetArchivedOk() (*bool, bool)

GetArchivedOk returns a tuple with the Archived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetDefaultBranch ¶

func (o *RestLabelable) GetDefaultBranch() string

GetDefaultBranch returns the DefaultBranch field value if set, zero value otherwise.

func (*RestLabelable) GetDefaultBranchOk ¶

func (o *RestLabelable) GetDefaultBranchOk() (*string, bool)

GetDefaultBranchOk returns a tuple with the DefaultBranch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetDescription ¶

func (o *RestLabelable) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestLabelable) GetDescriptionOk ¶

func (o *RestLabelable) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetForkable ¶

func (o *RestLabelable) GetForkable() bool

GetForkable returns the Forkable field value if set, zero value otherwise.

func (*RestLabelable) GetForkableOk ¶

func (o *RestLabelable) GetForkableOk() (*bool, bool)

GetForkableOk returns a tuple with the Forkable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetHierarchyId ¶

func (o *RestLabelable) GetHierarchyId() string

GetHierarchyId returns the HierarchyId field value if set, zero value otherwise.

func (*RestLabelable) GetHierarchyIdOk ¶

func (o *RestLabelable) GetHierarchyIdOk() (*string, bool)

GetHierarchyIdOk returns a tuple with the HierarchyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetId ¶

func (o *RestLabelable) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestLabelable) GetIdOk ¶

func (o *RestLabelable) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetLabelableType ¶

func (o *RestLabelable) GetLabelableType() string

GetLabelableType returns the LabelableType field value if set, zero value otherwise.

func (*RestLabelable) GetLabelableTypeOk ¶

func (o *RestLabelable) GetLabelableTypeOk() (*string, bool)

GetLabelableTypeOk returns a tuple with the LabelableType field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestLabelable) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestLabelable) GetLinksOk ¶

func (o *RestLabelable) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetName ¶

func (o *RestLabelable) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestLabelable) GetNameOk ¶

func (o *RestLabelable) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetOrigin ¶

GetOrigin returns the Origin field value if set, zero value otherwise.

func (*RestLabelable) GetOriginOk ¶

GetOriginOk returns a tuple with the Origin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetPartition ¶

func (o *RestLabelable) GetPartition() int32

GetPartition returns the Partition field value if set, zero value otherwise.

func (*RestLabelable) GetPartitionOk ¶

func (o *RestLabelable) GetPartitionOk() (*int32, bool)

GetPartitionOk returns a tuple with the Partition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*RestLabelable) GetProjectOk ¶

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetPublic ¶

func (o *RestLabelable) GetPublic() bool

GetPublic returns the Public field value if set, zero value otherwise.

func (*RestLabelable) GetPublicOk ¶

func (o *RestLabelable) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestLabelable) GetRelatedLinks() map[string]interface{}

GetRelatedLinks returns the RelatedLinks field value if set, zero value otherwise.

func (*RestLabelable) GetRelatedLinksOk ¶

func (o *RestLabelable) GetRelatedLinksOk() (map[string]interface{}, bool)

GetRelatedLinksOk returns a tuple with the RelatedLinks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetScmId ¶

func (o *RestLabelable) GetScmId() string

GetScmId returns the ScmId field value if set, zero value otherwise.

func (*RestLabelable) GetScmIdOk ¶

func (o *RestLabelable) GetScmIdOk() (*string, bool)

GetScmIdOk returns a tuple with the ScmId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetScope ¶

func (o *RestLabelable) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestLabelable) GetScopeOk ¶

func (o *RestLabelable) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetSlug ¶

func (o *RestLabelable) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestLabelable) GetSlugOk ¶

func (o *RestLabelable) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetState ¶

func (o *RestLabelable) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestLabelable) GetStateOk ¶

func (o *RestLabelable) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) GetStatusMessage ¶

func (o *RestLabelable) GetStatusMessage() string

GetStatusMessage returns the StatusMessage field value if set, zero value otherwise.

func (*RestLabelable) GetStatusMessageOk ¶

func (o *RestLabelable) GetStatusMessageOk() (*string, bool)

GetStatusMessageOk returns a tuple with the StatusMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLabelable) HasArchived ¶

func (o *RestLabelable) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*RestLabelable) HasDefaultBranch ¶

func (o *RestLabelable) HasDefaultBranch() bool

HasDefaultBranch returns a boolean if a field has been set.

func (*RestLabelable) HasDescription ¶

func (o *RestLabelable) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestLabelable) HasForkable ¶

func (o *RestLabelable) HasForkable() bool

HasForkable returns a boolean if a field has been set.

func (*RestLabelable) HasHierarchyId ¶

func (o *RestLabelable) HasHierarchyId() bool

HasHierarchyId returns a boolean if a field has been set.

func (*RestLabelable) HasId ¶

func (o *RestLabelable) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestLabelable) HasLabelableType ¶

func (o *RestLabelable) HasLabelableType() bool

HasLabelableType returns a boolean if a field has been set.

func (o *RestLabelable) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestLabelable) HasName ¶

func (o *RestLabelable) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestLabelable) HasOrigin ¶

func (o *RestLabelable) HasOrigin() bool

HasOrigin returns a boolean if a field has been set.

func (*RestLabelable) HasPartition ¶

func (o *RestLabelable) HasPartition() bool

HasPartition returns a boolean if a field has been set.

func (*RestLabelable) HasProject ¶

func (o *RestLabelable) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*RestLabelable) HasPublic ¶

func (o *RestLabelable) HasPublic() bool

HasPublic returns a boolean if a field has been set.

func (o *RestLabelable) HasRelatedLinks() bool

HasRelatedLinks returns a boolean if a field has been set.

func (*RestLabelable) HasScmId ¶

func (o *RestLabelable) HasScmId() bool

HasScmId returns a boolean if a field has been set.

func (*RestLabelable) HasScope ¶

func (o *RestLabelable) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*RestLabelable) HasSlug ¶

func (o *RestLabelable) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*RestLabelable) HasState ¶

func (o *RestLabelable) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestLabelable) HasStatusMessage ¶

func (o *RestLabelable) HasStatusMessage() bool

HasStatusMessage returns a boolean if a field has been set.

func (RestLabelable) MarshalJSON ¶

func (o RestLabelable) MarshalJSON() ([]byte, error)

func (*RestLabelable) SetArchived ¶

func (o *RestLabelable) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*RestLabelable) SetDefaultBranch ¶

func (o *RestLabelable) SetDefaultBranch(v string)

SetDefaultBranch gets a reference to the given string and assigns it to the DefaultBranch field.

func (*RestLabelable) SetDescription ¶

func (o *RestLabelable) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestLabelable) SetForkable ¶

func (o *RestLabelable) SetForkable(v bool)

SetForkable gets a reference to the given bool and assigns it to the Forkable field.

func (*RestLabelable) SetHierarchyId ¶

func (o *RestLabelable) SetHierarchyId(v string)

SetHierarchyId gets a reference to the given string and assigns it to the HierarchyId field.

func (*RestLabelable) SetId ¶

func (o *RestLabelable) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestLabelable) SetLabelableType ¶

func (o *RestLabelable) SetLabelableType(v string)

SetLabelableType gets a reference to the given string and assigns it to the LabelableType field.

func (o *RestLabelable) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestLabelable) SetName ¶

func (o *RestLabelable) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestLabelable) SetOrigin ¶

SetOrigin gets a reference to the given RestPullRequestFromRefRepositoryOrigin and assigns it to the Origin field.

func (*RestLabelable) SetPartition ¶

func (o *RestLabelable) SetPartition(v int32)

SetPartition gets a reference to the given int32 and assigns it to the Partition field.

func (*RestLabelable) SetProject ¶

SetProject gets a reference to the given RestPullRequestFromRefRepositoryProject and assigns it to the Project field.

func (*RestLabelable) SetPublic ¶

func (o *RestLabelable) SetPublic(v bool)

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (o *RestLabelable) SetRelatedLinks(v map[string]interface{})

SetRelatedLinks gets a reference to the given map[string]interface{} and assigns it to the RelatedLinks field.

func (*RestLabelable) SetScmId ¶

func (o *RestLabelable) SetScmId(v string)

SetScmId gets a reference to the given string and assigns it to the ScmId field.

func (*RestLabelable) SetScope ¶

func (o *RestLabelable) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*RestLabelable) SetSlug ¶

func (o *RestLabelable) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestLabelable) SetState ¶

func (o *RestLabelable) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestLabelable) SetStatusMessage ¶

func (o *RestLabelable) SetStatusMessage(v string)

SetStatusMessage gets a reference to the given string and assigns it to the StatusMessage field.

func (RestLabelable) ToMap ¶

func (o RestLabelable) ToMap() (map[string]interface{}, error)

type RestLogLevel ¶

type RestLogLevel struct {
	LogLevel *string `json:"logLevel,omitempty"`
}

RestLogLevel struct for RestLogLevel

func NewRestLogLevel ¶

func NewRestLogLevel() *RestLogLevel

NewRestLogLevel instantiates a new RestLogLevel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestLogLevelWithDefaults ¶

func NewRestLogLevelWithDefaults() *RestLogLevel

NewRestLogLevelWithDefaults instantiates a new RestLogLevel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestLogLevel) GetLogLevel ¶

func (o *RestLogLevel) GetLogLevel() string

GetLogLevel returns the LogLevel field value if set, zero value otherwise.

func (*RestLogLevel) GetLogLevelOk ¶

func (o *RestLogLevel) GetLogLevelOk() (*string, bool)

GetLogLevelOk returns a tuple with the LogLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestLogLevel) HasLogLevel ¶

func (o *RestLogLevel) HasLogLevel() bool

HasLogLevel returns a boolean if a field has been set.

func (RestLogLevel) MarshalJSON ¶

func (o RestLogLevel) MarshalJSON() ([]byte, error)

func (*RestLogLevel) SetLogLevel ¶

func (o *RestLogLevel) SetLogLevel(v string)

SetLogLevel gets a reference to the given string and assigns it to the LogLevel field.

func (RestLogLevel) ToMap ¶

func (o RestLogLevel) ToMap() (map[string]interface{}, error)

type RestMailConfiguration ¶

type RestMailConfiguration struct {
	Protocol        *string `json:"protocol,omitempty"`
	Port            *int32  `json:"port,omitempty"`
	Hostname        *string `json:"hostname,omitempty"`
	RequireStartTls *bool   `json:"requireStartTls,omitempty"`
	UseStartTls     *bool   `json:"useStartTls,omitempty"`
	Username        *string `json:"username,omitempty"`
	Password        *string `json:"password,omitempty"`
	SenderAddress   *string `json:"senderAddress,omitempty"`
}

RestMailConfiguration struct for RestMailConfiguration

func NewRestMailConfiguration ¶

func NewRestMailConfiguration() *RestMailConfiguration

NewRestMailConfiguration instantiates a new RestMailConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMailConfigurationWithDefaults ¶

func NewRestMailConfigurationWithDefaults() *RestMailConfiguration

NewRestMailConfigurationWithDefaults instantiates a new RestMailConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMailConfiguration) GetHostname ¶

func (o *RestMailConfiguration) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*RestMailConfiguration) GetHostnameOk ¶

func (o *RestMailConfiguration) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMailConfiguration) GetPassword ¶

func (o *RestMailConfiguration) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*RestMailConfiguration) GetPasswordOk ¶

func (o *RestMailConfiguration) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMailConfiguration) GetPort ¶

func (o *RestMailConfiguration) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*RestMailConfiguration) GetPortOk ¶

func (o *RestMailConfiguration) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMailConfiguration) GetProtocol ¶

func (o *RestMailConfiguration) GetProtocol() string

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*RestMailConfiguration) GetProtocolOk ¶

func (o *RestMailConfiguration) GetProtocolOk() (*string, bool)

GetProtocolOk returns a tuple with the Protocol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMailConfiguration) GetRequireStartTls ¶

func (o *RestMailConfiguration) GetRequireStartTls() bool

GetRequireStartTls returns the RequireStartTls field value if set, zero value otherwise.

func (*RestMailConfiguration) GetRequireStartTlsOk ¶

func (o *RestMailConfiguration) GetRequireStartTlsOk() (*bool, bool)

GetRequireStartTlsOk returns a tuple with the RequireStartTls field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMailConfiguration) GetSenderAddress ¶

func (o *RestMailConfiguration) GetSenderAddress() string

GetSenderAddress returns the SenderAddress field value if set, zero value otherwise.

func (*RestMailConfiguration) GetSenderAddressOk ¶

func (o *RestMailConfiguration) GetSenderAddressOk() (*string, bool)

GetSenderAddressOk returns a tuple with the SenderAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMailConfiguration) GetUseStartTls ¶

func (o *RestMailConfiguration) GetUseStartTls() bool

GetUseStartTls returns the UseStartTls field value if set, zero value otherwise.

func (*RestMailConfiguration) GetUseStartTlsOk ¶

func (o *RestMailConfiguration) GetUseStartTlsOk() (*bool, bool)

GetUseStartTlsOk returns a tuple with the UseStartTls field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMailConfiguration) GetUsername ¶

func (o *RestMailConfiguration) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*RestMailConfiguration) GetUsernameOk ¶

func (o *RestMailConfiguration) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMailConfiguration) HasHostname ¶

func (o *RestMailConfiguration) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*RestMailConfiguration) HasPassword ¶

func (o *RestMailConfiguration) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*RestMailConfiguration) HasPort ¶

func (o *RestMailConfiguration) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*RestMailConfiguration) HasProtocol ¶

func (o *RestMailConfiguration) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*RestMailConfiguration) HasRequireStartTls ¶

func (o *RestMailConfiguration) HasRequireStartTls() bool

HasRequireStartTls returns a boolean if a field has been set.

func (*RestMailConfiguration) HasSenderAddress ¶

func (o *RestMailConfiguration) HasSenderAddress() bool

HasSenderAddress returns a boolean if a field has been set.

func (*RestMailConfiguration) HasUseStartTls ¶

func (o *RestMailConfiguration) HasUseStartTls() bool

HasUseStartTls returns a boolean if a field has been set.

func (*RestMailConfiguration) HasUsername ¶

func (o *RestMailConfiguration) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (RestMailConfiguration) MarshalJSON ¶

func (o RestMailConfiguration) MarshalJSON() ([]byte, error)

func (*RestMailConfiguration) SetHostname ¶

func (o *RestMailConfiguration) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*RestMailConfiguration) SetPassword ¶

func (o *RestMailConfiguration) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*RestMailConfiguration) SetPort ¶

func (o *RestMailConfiguration) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*RestMailConfiguration) SetProtocol ¶

func (o *RestMailConfiguration) SetProtocol(v string)

SetProtocol gets a reference to the given string and assigns it to the Protocol field.

func (*RestMailConfiguration) SetRequireStartTls ¶

func (o *RestMailConfiguration) SetRequireStartTls(v bool)

SetRequireStartTls gets a reference to the given bool and assigns it to the RequireStartTls field.

func (*RestMailConfiguration) SetSenderAddress ¶

func (o *RestMailConfiguration) SetSenderAddress(v string)

SetSenderAddress gets a reference to the given string and assigns it to the SenderAddress field.

func (*RestMailConfiguration) SetUseStartTls ¶

func (o *RestMailConfiguration) SetUseStartTls(v bool)

SetUseStartTls gets a reference to the given bool and assigns it to the UseStartTls field.

func (*RestMailConfiguration) SetUsername ¶

func (o *RestMailConfiguration) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (RestMailConfiguration) ToMap ¶

func (o RestMailConfiguration) ToMap() (map[string]interface{}, error)

type RestMarkup ¶

type RestMarkup struct {
	Html *string `json:"html,omitempty"`
}

RestMarkup struct for RestMarkup

func NewRestMarkup ¶

func NewRestMarkup() *RestMarkup

NewRestMarkup instantiates a new RestMarkup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMarkupWithDefaults ¶

func NewRestMarkupWithDefaults() *RestMarkup

NewRestMarkupWithDefaults instantiates a new RestMarkup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMarkup) GetHtml ¶

func (o *RestMarkup) GetHtml() string

GetHtml returns the Html field value if set, zero value otherwise.

func (*RestMarkup) GetHtmlOk ¶

func (o *RestMarkup) GetHtmlOk() (*string, bool)

GetHtmlOk returns a tuple with the Html field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMarkup) HasHtml ¶

func (o *RestMarkup) HasHtml() bool

HasHtml returns a boolean if a field has been set.

func (RestMarkup) MarshalJSON ¶

func (o RestMarkup) MarshalJSON() ([]byte, error)

func (*RestMarkup) SetHtml ¶

func (o *RestMarkup) SetHtml(v string)

SetHtml gets a reference to the given string and assigns it to the Html field.

func (RestMarkup) ToMap ¶

func (o RestMarkup) ToMap() (map[string]interface{}, error)

type RestMeshConnectivityReport ¶

type RestMeshConnectivityReport struct {
	Reports []RestNodeConnectivityReport `json:"reports,omitempty"`
}

RestMeshConnectivityReport struct for RestMeshConnectivityReport

func NewRestMeshConnectivityReport ¶

func NewRestMeshConnectivityReport() *RestMeshConnectivityReport

NewRestMeshConnectivityReport instantiates a new RestMeshConnectivityReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMeshConnectivityReportWithDefaults ¶

func NewRestMeshConnectivityReportWithDefaults() *RestMeshConnectivityReport

NewRestMeshConnectivityReportWithDefaults instantiates a new RestMeshConnectivityReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMeshConnectivityReport) GetReports ¶

GetReports returns the Reports field value if set, zero value otherwise.

func (*RestMeshConnectivityReport) GetReportsOk ¶

GetReportsOk returns a tuple with the Reports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshConnectivityReport) HasReports ¶

func (o *RestMeshConnectivityReport) HasReports() bool

HasReports returns a boolean if a field has been set.

func (RestMeshConnectivityReport) MarshalJSON ¶

func (o RestMeshConnectivityReport) MarshalJSON() ([]byte, error)

func (*RestMeshConnectivityReport) SetReports ¶

SetReports gets a reference to the given []RestNodeConnectivityReport and assigns it to the Reports field.

func (RestMeshConnectivityReport) ToMap ¶

func (o RestMeshConnectivityReport) ToMap() (map[string]interface{}, error)

type RestMeshMigrationRequest ¶

type RestMeshMigrationRequest struct {
	All               *bool                                       `json:"all,omitempty"`
	MaxBytesPerSecond *StartMeshMigrationRequestMaxBytesPerSecond `json:"maxBytesPerSecond,omitempty"`
	ProjectIds        []int32                                     `json:"projectIds,omitempty"`
	RepositoryIds     []int32                                     `json:"repositoryIds,omitempty"`
}

RestMeshMigrationRequest struct for RestMeshMigrationRequest

func NewRestMeshMigrationRequest ¶

func NewRestMeshMigrationRequest() *RestMeshMigrationRequest

NewRestMeshMigrationRequest instantiates a new RestMeshMigrationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMeshMigrationRequestWithDefaults ¶

func NewRestMeshMigrationRequestWithDefaults() *RestMeshMigrationRequest

NewRestMeshMigrationRequestWithDefaults instantiates a new RestMeshMigrationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMeshMigrationRequest) GetAll ¶

func (o *RestMeshMigrationRequest) GetAll() bool

GetAll returns the All field value if set, zero value otherwise.

func (*RestMeshMigrationRequest) GetAllOk ¶

func (o *RestMeshMigrationRequest) GetAllOk() (*bool, bool)

GetAllOk returns a tuple with the All field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationRequest) GetMaxBytesPerSecond ¶

GetMaxBytesPerSecond returns the MaxBytesPerSecond field value if set, zero value otherwise.

func (*RestMeshMigrationRequest) GetMaxBytesPerSecondOk ¶

GetMaxBytesPerSecondOk returns a tuple with the MaxBytesPerSecond field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationRequest) GetProjectIds ¶

func (o *RestMeshMigrationRequest) GetProjectIds() []int32

GetProjectIds returns the ProjectIds field value if set, zero value otherwise.

func (*RestMeshMigrationRequest) GetProjectIdsOk ¶

func (o *RestMeshMigrationRequest) GetProjectIdsOk() ([]int32, bool)

GetProjectIdsOk returns a tuple with the ProjectIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationRequest) GetRepositoryIds ¶

func (o *RestMeshMigrationRequest) GetRepositoryIds() []int32

GetRepositoryIds returns the RepositoryIds field value if set, zero value otherwise.

func (*RestMeshMigrationRequest) GetRepositoryIdsOk ¶

func (o *RestMeshMigrationRequest) GetRepositoryIdsOk() ([]int32, bool)

GetRepositoryIdsOk returns a tuple with the RepositoryIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationRequest) HasAll ¶

func (o *RestMeshMigrationRequest) HasAll() bool

HasAll returns a boolean if a field has been set.

func (*RestMeshMigrationRequest) HasMaxBytesPerSecond ¶

func (o *RestMeshMigrationRequest) HasMaxBytesPerSecond() bool

HasMaxBytesPerSecond returns a boolean if a field has been set.

func (*RestMeshMigrationRequest) HasProjectIds ¶

func (o *RestMeshMigrationRequest) HasProjectIds() bool

HasProjectIds returns a boolean if a field has been set.

func (*RestMeshMigrationRequest) HasRepositoryIds ¶

func (o *RestMeshMigrationRequest) HasRepositoryIds() bool

HasRepositoryIds returns a boolean if a field has been set.

func (RestMeshMigrationRequest) MarshalJSON ¶

func (o RestMeshMigrationRequest) MarshalJSON() ([]byte, error)

func (*RestMeshMigrationRequest) SetAll ¶

func (o *RestMeshMigrationRequest) SetAll(v bool)

SetAll gets a reference to the given bool and assigns it to the All field.

func (*RestMeshMigrationRequest) SetMaxBytesPerSecond ¶

SetMaxBytesPerSecond gets a reference to the given StartMeshMigrationRequestMaxBytesPerSecond and assigns it to the MaxBytesPerSecond field.

func (*RestMeshMigrationRequest) SetProjectIds ¶

func (o *RestMeshMigrationRequest) SetProjectIds(v []int32)

SetProjectIds gets a reference to the given []int32 and assigns it to the ProjectIds field.

func (*RestMeshMigrationRequest) SetRepositoryIds ¶

func (o *RestMeshMigrationRequest) SetRepositoryIds(v []int32)

SetRepositoryIds gets a reference to the given []int32 and assigns it to the RepositoryIds field.

func (RestMeshMigrationRequest) ToMap ¶

func (o RestMeshMigrationRequest) ToMap() (map[string]interface{}, error)

type RestMeshMigrationSummary ¶

type RestMeshMigrationSummary struct {
	Progress     *int32                 `json:"progress,omitempty"`
	Queue        map[string]interface{} `json:"queue,omitempty"`
	State        *string                `json:"state,omitempty"`
	StartTime    *int64                 `json:"startTime,omitempty"`
	EndTime      *int64                 `json:"endTime,omitempty"`
	MaxBandwidth *int64                 `json:"maxBandwidth,omitempty"`
	JobId        *int64                 `json:"jobId,omitempty"`
}

RestMeshMigrationSummary struct for RestMeshMigrationSummary

func NewRestMeshMigrationSummary ¶

func NewRestMeshMigrationSummary() *RestMeshMigrationSummary

NewRestMeshMigrationSummary instantiates a new RestMeshMigrationSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMeshMigrationSummaryWithDefaults ¶

func NewRestMeshMigrationSummaryWithDefaults() *RestMeshMigrationSummary

NewRestMeshMigrationSummaryWithDefaults instantiates a new RestMeshMigrationSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMeshMigrationSummary) GetEndTime ¶

func (o *RestMeshMigrationSummary) GetEndTime() int64

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*RestMeshMigrationSummary) GetEndTimeOk ¶

func (o *RestMeshMigrationSummary) GetEndTimeOk() (*int64, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationSummary) GetJobId ¶

func (o *RestMeshMigrationSummary) GetJobId() int64

GetJobId returns the JobId field value if set, zero value otherwise.

func (*RestMeshMigrationSummary) GetJobIdOk ¶

func (o *RestMeshMigrationSummary) GetJobIdOk() (*int64, bool)

GetJobIdOk returns a tuple with the JobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationSummary) GetMaxBandwidth ¶

func (o *RestMeshMigrationSummary) GetMaxBandwidth() int64

GetMaxBandwidth returns the MaxBandwidth field value if set, zero value otherwise.

func (*RestMeshMigrationSummary) GetMaxBandwidthOk ¶

func (o *RestMeshMigrationSummary) GetMaxBandwidthOk() (*int64, bool)

GetMaxBandwidthOk returns a tuple with the MaxBandwidth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationSummary) GetProgress ¶

func (o *RestMeshMigrationSummary) GetProgress() int32

GetProgress returns the Progress field value if set, zero value otherwise.

func (*RestMeshMigrationSummary) GetProgressOk ¶

func (o *RestMeshMigrationSummary) GetProgressOk() (*int32, bool)

GetProgressOk returns a tuple with the Progress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationSummary) GetQueue ¶

func (o *RestMeshMigrationSummary) GetQueue() map[string]interface{}

GetQueue returns the Queue field value if set, zero value otherwise.

func (*RestMeshMigrationSummary) GetQueueOk ¶

func (o *RestMeshMigrationSummary) GetQueueOk() (map[string]interface{}, bool)

GetQueueOk returns a tuple with the Queue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationSummary) GetStartTime ¶

func (o *RestMeshMigrationSummary) GetStartTime() int64

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*RestMeshMigrationSummary) GetStartTimeOk ¶

func (o *RestMeshMigrationSummary) GetStartTimeOk() (*int64, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationSummary) GetState ¶

func (o *RestMeshMigrationSummary) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestMeshMigrationSummary) GetStateOk ¶

func (o *RestMeshMigrationSummary) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshMigrationSummary) HasEndTime ¶

func (o *RestMeshMigrationSummary) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*RestMeshMigrationSummary) HasJobId ¶

func (o *RestMeshMigrationSummary) HasJobId() bool

HasJobId returns a boolean if a field has been set.

func (*RestMeshMigrationSummary) HasMaxBandwidth ¶

func (o *RestMeshMigrationSummary) HasMaxBandwidth() bool

HasMaxBandwidth returns a boolean if a field has been set.

func (*RestMeshMigrationSummary) HasProgress ¶

func (o *RestMeshMigrationSummary) HasProgress() bool

HasProgress returns a boolean if a field has been set.

func (*RestMeshMigrationSummary) HasQueue ¶

func (o *RestMeshMigrationSummary) HasQueue() bool

HasQueue returns a boolean if a field has been set.

func (*RestMeshMigrationSummary) HasStartTime ¶

func (o *RestMeshMigrationSummary) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*RestMeshMigrationSummary) HasState ¶

func (o *RestMeshMigrationSummary) HasState() bool

HasState returns a boolean if a field has been set.

func (RestMeshMigrationSummary) MarshalJSON ¶

func (o RestMeshMigrationSummary) MarshalJSON() ([]byte, error)

func (*RestMeshMigrationSummary) SetEndTime ¶

func (o *RestMeshMigrationSummary) SetEndTime(v int64)

SetEndTime gets a reference to the given int64 and assigns it to the EndTime field.

func (*RestMeshMigrationSummary) SetJobId ¶

func (o *RestMeshMigrationSummary) SetJobId(v int64)

SetJobId gets a reference to the given int64 and assigns it to the JobId field.

func (*RestMeshMigrationSummary) SetMaxBandwidth ¶

func (o *RestMeshMigrationSummary) SetMaxBandwidth(v int64)

SetMaxBandwidth gets a reference to the given int64 and assigns it to the MaxBandwidth field.

func (*RestMeshMigrationSummary) SetProgress ¶

func (o *RestMeshMigrationSummary) SetProgress(v int32)

SetProgress gets a reference to the given int32 and assigns it to the Progress field.

func (*RestMeshMigrationSummary) SetQueue ¶

func (o *RestMeshMigrationSummary) SetQueue(v map[string]interface{})

SetQueue gets a reference to the given map[string]interface{} and assigns it to the Queue field.

func (*RestMeshMigrationSummary) SetStartTime ¶

func (o *RestMeshMigrationSummary) SetStartTime(v int64)

SetStartTime gets a reference to the given int64 and assigns it to the StartTime field.

func (*RestMeshMigrationSummary) SetState ¶

func (o *RestMeshMigrationSummary) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (RestMeshMigrationSummary) ToMap ¶

func (o RestMeshMigrationSummary) ToMap() (map[string]interface{}, error)

type RestMeshNode ¶

type RestMeshNode struct {
	Name         *string  `json:"name,omitempty"`
	Id           *string  `json:"id,omitempty"`
	State        *string  `json:"state,omitempty"`
	RpcUrl       *string  `json:"rpcUrl,omitempty"`
	LastSeenDate *float32 `json:"lastSeenDate,omitempty"`
	Offline      *bool    `json:"offline,omitempty"`
	RpcId        *string  `json:"rpcId,omitempty"`
}

RestMeshNode struct for RestMeshNode

func NewRestMeshNode ¶

func NewRestMeshNode() *RestMeshNode

NewRestMeshNode instantiates a new RestMeshNode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMeshNodeWithDefaults ¶

func NewRestMeshNodeWithDefaults() *RestMeshNode

NewRestMeshNodeWithDefaults instantiates a new RestMeshNode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMeshNode) GetId ¶

func (o *RestMeshNode) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestMeshNode) GetIdOk ¶

func (o *RestMeshNode) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshNode) GetLastSeenDate ¶

func (o *RestMeshNode) GetLastSeenDate() float32

GetLastSeenDate returns the LastSeenDate field value if set, zero value otherwise.

func (*RestMeshNode) GetLastSeenDateOk ¶

func (o *RestMeshNode) GetLastSeenDateOk() (*float32, bool)

GetLastSeenDateOk returns a tuple with the LastSeenDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshNode) GetName ¶

func (o *RestMeshNode) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestMeshNode) GetNameOk ¶

func (o *RestMeshNode) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshNode) GetOffline ¶

func (o *RestMeshNode) GetOffline() bool

GetOffline returns the Offline field value if set, zero value otherwise.

func (*RestMeshNode) GetOfflineOk ¶

func (o *RestMeshNode) GetOfflineOk() (*bool, bool)

GetOfflineOk returns a tuple with the Offline field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshNode) GetRpcId ¶

func (o *RestMeshNode) GetRpcId() string

GetRpcId returns the RpcId field value if set, zero value otherwise.

func (*RestMeshNode) GetRpcIdOk ¶

func (o *RestMeshNode) GetRpcIdOk() (*string, bool)

GetRpcIdOk returns a tuple with the RpcId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshNode) GetRpcUrl ¶

func (o *RestMeshNode) GetRpcUrl() string

GetRpcUrl returns the RpcUrl field value if set, zero value otherwise.

func (*RestMeshNode) GetRpcUrlOk ¶

func (o *RestMeshNode) GetRpcUrlOk() (*string, bool)

GetRpcUrlOk returns a tuple with the RpcUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshNode) GetState ¶

func (o *RestMeshNode) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestMeshNode) GetStateOk ¶

func (o *RestMeshNode) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMeshNode) HasId ¶

func (o *RestMeshNode) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestMeshNode) HasLastSeenDate ¶

func (o *RestMeshNode) HasLastSeenDate() bool

HasLastSeenDate returns a boolean if a field has been set.

func (*RestMeshNode) HasName ¶

func (o *RestMeshNode) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestMeshNode) HasOffline ¶

func (o *RestMeshNode) HasOffline() bool

HasOffline returns a boolean if a field has been set.

func (*RestMeshNode) HasRpcId ¶

func (o *RestMeshNode) HasRpcId() bool

HasRpcId returns a boolean if a field has been set.

func (*RestMeshNode) HasRpcUrl ¶

func (o *RestMeshNode) HasRpcUrl() bool

HasRpcUrl returns a boolean if a field has been set.

func (*RestMeshNode) HasState ¶

func (o *RestMeshNode) HasState() bool

HasState returns a boolean if a field has been set.

func (RestMeshNode) MarshalJSON ¶

func (o RestMeshNode) MarshalJSON() ([]byte, error)

func (*RestMeshNode) SetId ¶

func (o *RestMeshNode) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestMeshNode) SetLastSeenDate ¶

func (o *RestMeshNode) SetLastSeenDate(v float32)

SetLastSeenDate gets a reference to the given float32 and assigns it to the LastSeenDate field.

func (*RestMeshNode) SetName ¶

func (o *RestMeshNode) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestMeshNode) SetOffline ¶

func (o *RestMeshNode) SetOffline(v bool)

SetOffline gets a reference to the given bool and assigns it to the Offline field.

func (*RestMeshNode) SetRpcId ¶

func (o *RestMeshNode) SetRpcId(v string)

SetRpcId gets a reference to the given string and assigns it to the RpcId field.

func (*RestMeshNode) SetRpcUrl ¶

func (o *RestMeshNode) SetRpcUrl(v string)

SetRpcUrl gets a reference to the given string and assigns it to the RpcUrl field.

func (*RestMeshNode) SetState ¶

func (o *RestMeshNode) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (RestMeshNode) ToMap ¶

func (o RestMeshNode) ToMap() (map[string]interface{}, error)

type RestMigrationRepository ¶

type RestMigrationRepository struct {
	MigrationState *string                           `json:"migrationState,omitempty"`
	Repository     *RestPullRequestFromRefRepository `json:"repository,omitempty"`
}

RestMigrationRepository struct for RestMigrationRepository

func NewRestMigrationRepository ¶

func NewRestMigrationRepository() *RestMigrationRepository

NewRestMigrationRepository instantiates a new RestMigrationRepository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMigrationRepositoryWithDefaults ¶

func NewRestMigrationRepositoryWithDefaults() *RestMigrationRepository

NewRestMigrationRepositoryWithDefaults instantiates a new RestMigrationRepository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMigrationRepository) GetMigrationState ¶

func (o *RestMigrationRepository) GetMigrationState() string

GetMigrationState returns the MigrationState field value if set, zero value otherwise.

func (*RestMigrationRepository) GetMigrationStateOk ¶

func (o *RestMigrationRepository) GetMigrationStateOk() (*string, bool)

GetMigrationStateOk returns a tuple with the MigrationState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMigrationRepository) GetRepository ¶

GetRepository returns the Repository field value if set, zero value otherwise.

func (*RestMigrationRepository) GetRepositoryOk ¶

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMigrationRepository) HasMigrationState ¶

func (o *RestMigrationRepository) HasMigrationState() bool

HasMigrationState returns a boolean if a field has been set.

func (*RestMigrationRepository) HasRepository ¶

func (o *RestMigrationRepository) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (RestMigrationRepository) MarshalJSON ¶

func (o RestMigrationRepository) MarshalJSON() ([]byte, error)

func (*RestMigrationRepository) SetMigrationState ¶

func (o *RestMigrationRepository) SetMigrationState(v string)

SetMigrationState gets a reference to the given string and assigns it to the MigrationState field.

func (*RestMigrationRepository) SetRepository ¶

SetRepository gets a reference to the given RestPullRequestFromRefRepository and assigns it to the Repository field.

func (RestMigrationRepository) ToMap ¶

func (o RestMigrationRepository) ToMap() (map[string]interface{}, error)

type RestMinimalCommit ¶

type RestMinimalCommit struct {
	Id        *string `json:"id,omitempty"`
	DisplayId *string `json:"displayId,omitempty"`
}

RestMinimalCommit struct for RestMinimalCommit

func NewRestMinimalCommit ¶

func NewRestMinimalCommit() *RestMinimalCommit

NewRestMinimalCommit instantiates a new RestMinimalCommit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMinimalCommitWithDefaults ¶

func NewRestMinimalCommitWithDefaults() *RestMinimalCommit

NewRestMinimalCommitWithDefaults instantiates a new RestMinimalCommit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMinimalCommit) GetDisplayId ¶

func (o *RestMinimalCommit) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestMinimalCommit) GetDisplayIdOk ¶

func (o *RestMinimalCommit) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMinimalCommit) GetId ¶

func (o *RestMinimalCommit) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestMinimalCommit) GetIdOk ¶

func (o *RestMinimalCommit) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMinimalCommit) HasDisplayId ¶

func (o *RestMinimalCommit) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestMinimalCommit) HasId ¶

func (o *RestMinimalCommit) HasId() bool

HasId returns a boolean if a field has been set.

func (RestMinimalCommit) MarshalJSON ¶

func (o RestMinimalCommit) MarshalJSON() ([]byte, error)

func (*RestMinimalCommit) SetDisplayId ¶

func (o *RestMinimalCommit) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestMinimalCommit) SetId ¶

func (o *RestMinimalCommit) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (RestMinimalCommit) ToMap ¶

func (o RestMinimalCommit) ToMap() (map[string]interface{}, error)

type RestMinimalRef ¶

type RestMinimalRef struct {
	Id        *string `json:"id,omitempty"`
	Type      *string `json:"type,omitempty"`
	DisplayId *string `json:"displayId,omitempty"`
}

RestMinimalRef struct for RestMinimalRef

func NewRestMinimalRef ¶

func NewRestMinimalRef() *RestMinimalRef

NewRestMinimalRef instantiates a new RestMinimalRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMinimalRefWithDefaults ¶

func NewRestMinimalRefWithDefaults() *RestMinimalRef

NewRestMinimalRefWithDefaults instantiates a new RestMinimalRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMinimalRef) GetDisplayId ¶

func (o *RestMinimalRef) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestMinimalRef) GetDisplayIdOk ¶

func (o *RestMinimalRef) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMinimalRef) GetId ¶

func (o *RestMinimalRef) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestMinimalRef) GetIdOk ¶

func (o *RestMinimalRef) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMinimalRef) GetType ¶

func (o *RestMinimalRef) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestMinimalRef) GetTypeOk ¶

func (o *RestMinimalRef) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMinimalRef) HasDisplayId ¶

func (o *RestMinimalRef) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestMinimalRef) HasId ¶

func (o *RestMinimalRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestMinimalRef) HasType ¶

func (o *RestMinimalRef) HasType() bool

HasType returns a boolean if a field has been set.

func (RestMinimalRef) MarshalJSON ¶

func (o RestMinimalRef) MarshalJSON() ([]byte, error)

func (*RestMinimalRef) SetDisplayId ¶

func (o *RestMinimalRef) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestMinimalRef) SetId ¶

func (o *RestMinimalRef) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestMinimalRef) SetType ¶

func (o *RestMinimalRef) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestMinimalRef) ToMap ¶

func (o RestMinimalRef) ToMap() (map[string]interface{}, error)

type RestMirrorHashes ¶

type RestMirrorHashes struct {
	Content  *string `json:"content,omitempty"`
	Metadata *string `json:"metadata,omitempty"`
}

RestMirrorHashes struct for RestMirrorHashes

func NewRestMirrorHashes ¶

func NewRestMirrorHashes() *RestMirrorHashes

NewRestMirrorHashes instantiates a new RestMirrorHashes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMirrorHashesWithDefaults ¶

func NewRestMirrorHashesWithDefaults() *RestMirrorHashes

NewRestMirrorHashesWithDefaults instantiates a new RestMirrorHashes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMirrorHashes) GetContent ¶

func (o *RestMirrorHashes) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*RestMirrorHashes) GetContentOk ¶

func (o *RestMirrorHashes) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorHashes) GetMetadata ¶

func (o *RestMirrorHashes) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*RestMirrorHashes) GetMetadataOk ¶

func (o *RestMirrorHashes) GetMetadataOk() (*string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorHashes) HasContent ¶

func (o *RestMirrorHashes) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*RestMirrorHashes) HasMetadata ¶

func (o *RestMirrorHashes) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (RestMirrorHashes) MarshalJSON ¶

func (o RestMirrorHashes) MarshalJSON() ([]byte, error)

func (*RestMirrorHashes) SetContent ¶

func (o *RestMirrorHashes) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*RestMirrorHashes) SetMetadata ¶

func (o *RestMirrorHashes) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (RestMirrorHashes) ToMap ¶

func (o RestMirrorHashes) ToMap() (map[string]interface{}, error)

type RestMirrorRepositorySynchronizationStatus ¶

type RestMirrorRepositorySynchronizationStatus struct {
	ExternalRepoId  *string                                          `json:"externalRepoId,omitempty"`
	FailedSyncCount *int32                                           `json:"failedSyncCount,omitempty"`
	Hashes          *RestMirrorRepositorySynchronizationStatusHashes `json:"hashes,omitempty"`
	LastSyncDate    *time.Time                                       `json:"lastSyncDate,omitempty"`
	LocalProjectId  *int32                                           `json:"localProjectId,omitempty"`
	LocalRepoId     *int32                                           `json:"localRepoId,omitempty"`
	UpstreamId      *string                                          `json:"upstreamId,omitempty"`
	InitialSyncDate *time.Time                                       `json:"initialSyncDate,omitempty"`
}

RestMirrorRepositorySynchronizationStatus struct for RestMirrorRepositorySynchronizationStatus

func NewRestMirrorRepositorySynchronizationStatus ¶

func NewRestMirrorRepositorySynchronizationStatus() *RestMirrorRepositorySynchronizationStatus

NewRestMirrorRepositorySynchronizationStatus instantiates a new RestMirrorRepositorySynchronizationStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMirrorRepositorySynchronizationStatusWithDefaults ¶

func NewRestMirrorRepositorySynchronizationStatusWithDefaults() *RestMirrorRepositorySynchronizationStatus

NewRestMirrorRepositorySynchronizationStatusWithDefaults instantiates a new RestMirrorRepositorySynchronizationStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMirrorRepositorySynchronizationStatus) GetExternalRepoId ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetExternalRepoId() string

GetExternalRepoId returns the ExternalRepoId field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatus) GetExternalRepoIdOk ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetExternalRepoIdOk() (*string, bool)

GetExternalRepoIdOk returns a tuple with the ExternalRepoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatus) GetFailedSyncCount ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetFailedSyncCount() int32

GetFailedSyncCount returns the FailedSyncCount field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatus) GetFailedSyncCountOk ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetFailedSyncCountOk() (*int32, bool)

GetFailedSyncCountOk returns a tuple with the FailedSyncCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatus) GetHashes ¶

GetHashes returns the Hashes field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatus) GetHashesOk ¶

GetHashesOk returns a tuple with the Hashes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatus) GetInitialSyncDate ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetInitialSyncDate() time.Time

GetInitialSyncDate returns the InitialSyncDate field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatus) GetInitialSyncDateOk ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetInitialSyncDateOk() (*time.Time, bool)

GetInitialSyncDateOk returns a tuple with the InitialSyncDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatus) GetLastSyncDate ¶

GetLastSyncDate returns the LastSyncDate field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatus) GetLastSyncDateOk ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetLastSyncDateOk() (*time.Time, bool)

GetLastSyncDateOk returns a tuple with the LastSyncDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatus) GetLocalProjectId ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetLocalProjectId() int32

GetLocalProjectId returns the LocalProjectId field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatus) GetLocalProjectIdOk ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetLocalProjectIdOk() (*int32, bool)

GetLocalProjectIdOk returns a tuple with the LocalProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatus) GetLocalRepoId ¶

GetLocalRepoId returns the LocalRepoId field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatus) GetLocalRepoIdOk ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetLocalRepoIdOk() (*int32, bool)

GetLocalRepoIdOk returns a tuple with the LocalRepoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatus) GetUpstreamId ¶

GetUpstreamId returns the UpstreamId field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatus) GetUpstreamIdOk ¶

func (o *RestMirrorRepositorySynchronizationStatus) GetUpstreamIdOk() (*string, bool)

GetUpstreamIdOk returns a tuple with the UpstreamId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatus) HasExternalRepoId ¶

func (o *RestMirrorRepositorySynchronizationStatus) HasExternalRepoId() bool

HasExternalRepoId returns a boolean if a field has been set.

func (*RestMirrorRepositorySynchronizationStatus) HasFailedSyncCount ¶

func (o *RestMirrorRepositorySynchronizationStatus) HasFailedSyncCount() bool

HasFailedSyncCount returns a boolean if a field has been set.

func (*RestMirrorRepositorySynchronizationStatus) HasHashes ¶

HasHashes returns a boolean if a field has been set.

func (*RestMirrorRepositorySynchronizationStatus) HasInitialSyncDate ¶

func (o *RestMirrorRepositorySynchronizationStatus) HasInitialSyncDate() bool

HasInitialSyncDate returns a boolean if a field has been set.

func (*RestMirrorRepositorySynchronizationStatus) HasLastSyncDate ¶

func (o *RestMirrorRepositorySynchronizationStatus) HasLastSyncDate() bool

HasLastSyncDate returns a boolean if a field has been set.

func (*RestMirrorRepositorySynchronizationStatus) HasLocalProjectId ¶

func (o *RestMirrorRepositorySynchronizationStatus) HasLocalProjectId() bool

HasLocalProjectId returns a boolean if a field has been set.

func (*RestMirrorRepositorySynchronizationStatus) HasLocalRepoId ¶

func (o *RestMirrorRepositorySynchronizationStatus) HasLocalRepoId() bool

HasLocalRepoId returns a boolean if a field has been set.

func (*RestMirrorRepositorySynchronizationStatus) HasUpstreamId ¶

HasUpstreamId returns a boolean if a field has been set.

func (RestMirrorRepositorySynchronizationStatus) MarshalJSON ¶

func (*RestMirrorRepositorySynchronizationStatus) SetExternalRepoId ¶

func (o *RestMirrorRepositorySynchronizationStatus) SetExternalRepoId(v string)

SetExternalRepoId gets a reference to the given string and assigns it to the ExternalRepoId field.

func (*RestMirrorRepositorySynchronizationStatus) SetFailedSyncCount ¶

func (o *RestMirrorRepositorySynchronizationStatus) SetFailedSyncCount(v int32)

SetFailedSyncCount gets a reference to the given int32 and assigns it to the FailedSyncCount field.

func (*RestMirrorRepositorySynchronizationStatus) SetHashes ¶

SetHashes gets a reference to the given RestMirrorRepositorySynchronizationStatusHashes and assigns it to the Hashes field.

func (*RestMirrorRepositorySynchronizationStatus) SetInitialSyncDate ¶

func (o *RestMirrorRepositorySynchronizationStatus) SetInitialSyncDate(v time.Time)

SetInitialSyncDate gets a reference to the given time.Time and assigns it to the InitialSyncDate field.

func (*RestMirrorRepositorySynchronizationStatus) SetLastSyncDate ¶

func (o *RestMirrorRepositorySynchronizationStatus) SetLastSyncDate(v time.Time)

SetLastSyncDate gets a reference to the given time.Time and assigns it to the LastSyncDate field.

func (*RestMirrorRepositorySynchronizationStatus) SetLocalProjectId ¶

func (o *RestMirrorRepositorySynchronizationStatus) SetLocalProjectId(v int32)

SetLocalProjectId gets a reference to the given int32 and assigns it to the LocalProjectId field.

func (*RestMirrorRepositorySynchronizationStatus) SetLocalRepoId ¶

func (o *RestMirrorRepositorySynchronizationStatus) SetLocalRepoId(v int32)

SetLocalRepoId gets a reference to the given int32 and assigns it to the LocalRepoId field.

func (*RestMirrorRepositorySynchronizationStatus) SetUpstreamId ¶

SetUpstreamId gets a reference to the given string and assigns it to the UpstreamId field.

func (RestMirrorRepositorySynchronizationStatus) ToMap ¶

func (o RestMirrorRepositorySynchronizationStatus) ToMap() (map[string]interface{}, error)

type RestMirrorRepositorySynchronizationStatusHashes ¶

type RestMirrorRepositorySynchronizationStatusHashes struct {
	Content  *string `json:"content,omitempty"`
	Metadata *string `json:"metadata,omitempty"`
}

RestMirrorRepositorySynchronizationStatusHashes struct for RestMirrorRepositorySynchronizationStatusHashes

func NewRestMirrorRepositorySynchronizationStatusHashes ¶

func NewRestMirrorRepositorySynchronizationStatusHashes() *RestMirrorRepositorySynchronizationStatusHashes

NewRestMirrorRepositorySynchronizationStatusHashes instantiates a new RestMirrorRepositorySynchronizationStatusHashes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMirrorRepositorySynchronizationStatusHashesWithDefaults ¶

func NewRestMirrorRepositorySynchronizationStatusHashesWithDefaults() *RestMirrorRepositorySynchronizationStatusHashes

NewRestMirrorRepositorySynchronizationStatusHashesWithDefaults instantiates a new RestMirrorRepositorySynchronizationStatusHashes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMirrorRepositorySynchronizationStatusHashes) GetContent ¶

GetContent returns the Content field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatusHashes) GetContentOk ¶

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatusHashes) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*RestMirrorRepositorySynchronizationStatusHashes) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorRepositorySynchronizationStatusHashes) HasContent ¶

HasContent returns a boolean if a field has been set.

func (*RestMirrorRepositorySynchronizationStatusHashes) HasMetadata ¶

HasMetadata returns a boolean if a field has been set.

func (RestMirrorRepositorySynchronizationStatusHashes) MarshalJSON ¶

func (*RestMirrorRepositorySynchronizationStatusHashes) SetContent ¶

SetContent gets a reference to the given string and assigns it to the Content field.

func (*RestMirrorRepositorySynchronizationStatusHashes) SetMetadata ¶

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

func (RestMirrorRepositorySynchronizationStatusHashes) ToMap ¶

func (o RestMirrorRepositorySynchronizationStatusHashes) ToMap() (map[string]interface{}, error)

type RestMirrorServer ¶

type RestMirrorServer struct {
	Enabled        *bool      `json:"enabled,omitempty"`
	Name           *string    `json:"name,omitempty"`
	Id             *string    `json:"id,omitempty"`
	ProductType    *string    `json:"productType,omitempty"`
	ProductVersion *string    `json:"productVersion,omitempty"`
	MirrorType     *string    `json:"mirrorType,omitempty"`
	LastSeenDate   *time.Time `json:"lastSeenDate,omitempty"`
	BaseUrl        *string    `json:"baseUrl,omitempty"`
}

RestMirrorServer struct for RestMirrorServer

func NewRestMirrorServer ¶

func NewRestMirrorServer() *RestMirrorServer

NewRestMirrorServer instantiates a new RestMirrorServer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMirrorServerWithDefaults ¶

func NewRestMirrorServerWithDefaults() *RestMirrorServer

NewRestMirrorServerWithDefaults instantiates a new RestMirrorServer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMirrorServer) GetBaseUrl ¶

func (o *RestMirrorServer) GetBaseUrl() string

GetBaseUrl returns the BaseUrl field value if set, zero value otherwise.

func (*RestMirrorServer) GetBaseUrlOk ¶

func (o *RestMirrorServer) GetBaseUrlOk() (*string, bool)

GetBaseUrlOk returns a tuple with the BaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorServer) GetEnabled ¶

func (o *RestMirrorServer) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestMirrorServer) GetEnabledOk ¶

func (o *RestMirrorServer) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorServer) GetId ¶

func (o *RestMirrorServer) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestMirrorServer) GetIdOk ¶

func (o *RestMirrorServer) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorServer) GetLastSeenDate ¶

func (o *RestMirrorServer) GetLastSeenDate() time.Time

GetLastSeenDate returns the LastSeenDate field value if set, zero value otherwise.

func (*RestMirrorServer) GetLastSeenDateOk ¶

func (o *RestMirrorServer) GetLastSeenDateOk() (*time.Time, bool)

GetLastSeenDateOk returns a tuple with the LastSeenDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorServer) GetMirrorType ¶

func (o *RestMirrorServer) GetMirrorType() string

GetMirrorType returns the MirrorType field value if set, zero value otherwise.

func (*RestMirrorServer) GetMirrorTypeOk ¶

func (o *RestMirrorServer) GetMirrorTypeOk() (*string, bool)

GetMirrorTypeOk returns a tuple with the MirrorType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorServer) GetName ¶

func (o *RestMirrorServer) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestMirrorServer) GetNameOk ¶

func (o *RestMirrorServer) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorServer) GetProductType ¶

func (o *RestMirrorServer) GetProductType() string

GetProductType returns the ProductType field value if set, zero value otherwise.

func (*RestMirrorServer) GetProductTypeOk ¶

func (o *RestMirrorServer) GetProductTypeOk() (*string, bool)

GetProductTypeOk returns a tuple with the ProductType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorServer) GetProductVersion ¶

func (o *RestMirrorServer) GetProductVersion() string

GetProductVersion returns the ProductVersion field value if set, zero value otherwise.

func (*RestMirrorServer) GetProductVersionOk ¶

func (o *RestMirrorServer) GetProductVersionOk() (*string, bool)

GetProductVersionOk returns a tuple with the ProductVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorServer) HasBaseUrl ¶

func (o *RestMirrorServer) HasBaseUrl() bool

HasBaseUrl returns a boolean if a field has been set.

func (*RestMirrorServer) HasEnabled ¶

func (o *RestMirrorServer) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*RestMirrorServer) HasId ¶

func (o *RestMirrorServer) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestMirrorServer) HasLastSeenDate ¶

func (o *RestMirrorServer) HasLastSeenDate() bool

HasLastSeenDate returns a boolean if a field has been set.

func (*RestMirrorServer) HasMirrorType ¶

func (o *RestMirrorServer) HasMirrorType() bool

HasMirrorType returns a boolean if a field has been set.

func (*RestMirrorServer) HasName ¶

func (o *RestMirrorServer) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestMirrorServer) HasProductType ¶

func (o *RestMirrorServer) HasProductType() bool

HasProductType returns a boolean if a field has been set.

func (*RestMirrorServer) HasProductVersion ¶

func (o *RestMirrorServer) HasProductVersion() bool

HasProductVersion returns a boolean if a field has been set.

func (RestMirrorServer) MarshalJSON ¶

func (o RestMirrorServer) MarshalJSON() ([]byte, error)

func (*RestMirrorServer) SetBaseUrl ¶

func (o *RestMirrorServer) SetBaseUrl(v string)

SetBaseUrl gets a reference to the given string and assigns it to the BaseUrl field.

func (*RestMirrorServer) SetEnabled ¶

func (o *RestMirrorServer) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestMirrorServer) SetId ¶

func (o *RestMirrorServer) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestMirrorServer) SetLastSeenDate ¶

func (o *RestMirrorServer) SetLastSeenDate(v time.Time)

SetLastSeenDate gets a reference to the given time.Time and assigns it to the LastSeenDate field.

func (*RestMirrorServer) SetMirrorType ¶

func (o *RestMirrorServer) SetMirrorType(v string)

SetMirrorType gets a reference to the given string and assigns it to the MirrorType field.

func (*RestMirrorServer) SetName ¶

func (o *RestMirrorServer) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestMirrorServer) SetProductType ¶

func (o *RestMirrorServer) SetProductType(v string)

SetProductType gets a reference to the given string and assigns it to the ProductType field.

func (*RestMirrorServer) SetProductVersion ¶

func (o *RestMirrorServer) SetProductVersion(v string)

SetProductVersion gets a reference to the given string and assigns it to the ProductVersion field.

func (RestMirrorServer) ToMap ¶

func (o RestMirrorServer) ToMap() (map[string]interface{}, error)

type RestMirrorUpgradeRequest ¶

type RestMirrorUpgradeRequest struct {
	AddonDescriptorUri *string `json:"addonDescriptorUri,omitempty"`
	BaseUrl            *string `json:"baseUrl,omitempty"`
	ProductType        *string `json:"productType,omitempty"`
	ProductVersion     *string `json:"productVersion,omitempty"`
}

RestMirrorUpgradeRequest struct for RestMirrorUpgradeRequest

func NewRestMirrorUpgradeRequest ¶

func NewRestMirrorUpgradeRequest() *RestMirrorUpgradeRequest

NewRestMirrorUpgradeRequest instantiates a new RestMirrorUpgradeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMirrorUpgradeRequestWithDefaults ¶

func NewRestMirrorUpgradeRequestWithDefaults() *RestMirrorUpgradeRequest

NewRestMirrorUpgradeRequestWithDefaults instantiates a new RestMirrorUpgradeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMirrorUpgradeRequest) GetAddonDescriptorUri ¶

func (o *RestMirrorUpgradeRequest) GetAddonDescriptorUri() string

GetAddonDescriptorUri returns the AddonDescriptorUri field value if set, zero value otherwise.

func (*RestMirrorUpgradeRequest) GetAddonDescriptorUriOk ¶

func (o *RestMirrorUpgradeRequest) GetAddonDescriptorUriOk() (*string, bool)

GetAddonDescriptorUriOk returns a tuple with the AddonDescriptorUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorUpgradeRequest) GetBaseUrl ¶

func (o *RestMirrorUpgradeRequest) GetBaseUrl() string

GetBaseUrl returns the BaseUrl field value if set, zero value otherwise.

func (*RestMirrorUpgradeRequest) GetBaseUrlOk ¶

func (o *RestMirrorUpgradeRequest) GetBaseUrlOk() (*string, bool)

GetBaseUrlOk returns a tuple with the BaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorUpgradeRequest) GetProductType ¶

func (o *RestMirrorUpgradeRequest) GetProductType() string

GetProductType returns the ProductType field value if set, zero value otherwise.

func (*RestMirrorUpgradeRequest) GetProductTypeOk ¶

func (o *RestMirrorUpgradeRequest) GetProductTypeOk() (*string, bool)

GetProductTypeOk returns a tuple with the ProductType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorUpgradeRequest) GetProductVersion ¶

func (o *RestMirrorUpgradeRequest) GetProductVersion() string

GetProductVersion returns the ProductVersion field value if set, zero value otherwise.

func (*RestMirrorUpgradeRequest) GetProductVersionOk ¶

func (o *RestMirrorUpgradeRequest) GetProductVersionOk() (*string, bool)

GetProductVersionOk returns a tuple with the ProductVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirrorUpgradeRequest) HasAddonDescriptorUri ¶

func (o *RestMirrorUpgradeRequest) HasAddonDescriptorUri() bool

HasAddonDescriptorUri returns a boolean if a field has been set.

func (*RestMirrorUpgradeRequest) HasBaseUrl ¶

func (o *RestMirrorUpgradeRequest) HasBaseUrl() bool

HasBaseUrl returns a boolean if a field has been set.

func (*RestMirrorUpgradeRequest) HasProductType ¶

func (o *RestMirrorUpgradeRequest) HasProductType() bool

HasProductType returns a boolean if a field has been set.

func (*RestMirrorUpgradeRequest) HasProductVersion ¶

func (o *RestMirrorUpgradeRequest) HasProductVersion() bool

HasProductVersion returns a boolean if a field has been set.

func (RestMirrorUpgradeRequest) MarshalJSON ¶

func (o RestMirrorUpgradeRequest) MarshalJSON() ([]byte, error)

func (*RestMirrorUpgradeRequest) SetAddonDescriptorUri ¶

func (o *RestMirrorUpgradeRequest) SetAddonDescriptorUri(v string)

SetAddonDescriptorUri gets a reference to the given string and assigns it to the AddonDescriptorUri field.

func (*RestMirrorUpgradeRequest) SetBaseUrl ¶

func (o *RestMirrorUpgradeRequest) SetBaseUrl(v string)

SetBaseUrl gets a reference to the given string and assigns it to the BaseUrl field.

func (*RestMirrorUpgradeRequest) SetProductType ¶

func (o *RestMirrorUpgradeRequest) SetProductType(v string)

SetProductType gets a reference to the given string and assigns it to the ProductType field.

func (*RestMirrorUpgradeRequest) SetProductVersion ¶

func (o *RestMirrorUpgradeRequest) SetProductVersion(v string)

SetProductVersion gets a reference to the given string and assigns it to the ProductVersion field.

func (RestMirrorUpgradeRequest) ToMap ¶

func (o RestMirrorUpgradeRequest) ToMap() (map[string]interface{}, error)

type RestMirroredRepository ¶

type RestMirroredRepository struct {
	Available    *bool           `json:"available,omitempty"`
	RepositoryId *string         `json:"repositoryId,omitempty"`
	Status       *string         `json:"status,omitempty"`
	LastUpdated  *time.Time      `json:"lastUpdated,omitempty"`
	MirrorName   *string         `json:"mirrorName,omitempty"`
	CloneUrls    []RestNamedLink `json:"cloneUrls,omitempty"`
	PushUrls     []RestNamedLink `json:"pushUrls,omitempty"`
}

RestMirroredRepository struct for RestMirroredRepository

func NewRestMirroredRepository ¶

func NewRestMirroredRepository() *RestMirroredRepository

NewRestMirroredRepository instantiates a new RestMirroredRepository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMirroredRepositoryWithDefaults ¶

func NewRestMirroredRepositoryWithDefaults() *RestMirroredRepository

NewRestMirroredRepositoryWithDefaults instantiates a new RestMirroredRepository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMirroredRepository) GetAvailable ¶

func (o *RestMirroredRepository) GetAvailable() bool

GetAvailable returns the Available field value if set, zero value otherwise.

func (*RestMirroredRepository) GetAvailableOk ¶

func (o *RestMirroredRepository) GetAvailableOk() (*bool, bool)

GetAvailableOk returns a tuple with the Available field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepository) GetCloneUrls ¶

func (o *RestMirroredRepository) GetCloneUrls() []RestNamedLink

GetCloneUrls returns the CloneUrls field value if set, zero value otherwise.

func (*RestMirroredRepository) GetCloneUrlsOk ¶

func (o *RestMirroredRepository) GetCloneUrlsOk() ([]RestNamedLink, bool)

GetCloneUrlsOk returns a tuple with the CloneUrls field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepository) GetLastUpdated ¶

func (o *RestMirroredRepository) GetLastUpdated() time.Time

GetLastUpdated returns the LastUpdated field value if set, zero value otherwise.

func (*RestMirroredRepository) GetLastUpdatedOk ¶

func (o *RestMirroredRepository) GetLastUpdatedOk() (*time.Time, bool)

GetLastUpdatedOk returns a tuple with the LastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepository) GetMirrorName ¶

func (o *RestMirroredRepository) GetMirrorName() string

GetMirrorName returns the MirrorName field value if set, zero value otherwise.

func (*RestMirroredRepository) GetMirrorNameOk ¶

func (o *RestMirroredRepository) GetMirrorNameOk() (*string, bool)

GetMirrorNameOk returns a tuple with the MirrorName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepository) GetPushUrls ¶

func (o *RestMirroredRepository) GetPushUrls() []RestNamedLink

GetPushUrls returns the PushUrls field value if set, zero value otherwise.

func (*RestMirroredRepository) GetPushUrlsOk ¶

func (o *RestMirroredRepository) GetPushUrlsOk() ([]RestNamedLink, bool)

GetPushUrlsOk returns a tuple with the PushUrls field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepository) GetRepositoryId ¶

func (o *RestMirroredRepository) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*RestMirroredRepository) GetRepositoryIdOk ¶

func (o *RestMirroredRepository) GetRepositoryIdOk() (*string, bool)

GetRepositoryIdOk returns a tuple with the RepositoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepository) GetStatus ¶

func (o *RestMirroredRepository) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*RestMirroredRepository) GetStatusOk ¶

func (o *RestMirroredRepository) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepository) HasAvailable ¶

func (o *RestMirroredRepository) HasAvailable() bool

HasAvailable returns a boolean if a field has been set.

func (*RestMirroredRepository) HasCloneUrls ¶

func (o *RestMirroredRepository) HasCloneUrls() bool

HasCloneUrls returns a boolean if a field has been set.

func (*RestMirroredRepository) HasLastUpdated ¶

func (o *RestMirroredRepository) HasLastUpdated() bool

HasLastUpdated returns a boolean if a field has been set.

func (*RestMirroredRepository) HasMirrorName ¶

func (o *RestMirroredRepository) HasMirrorName() bool

HasMirrorName returns a boolean if a field has been set.

func (*RestMirroredRepository) HasPushUrls ¶

func (o *RestMirroredRepository) HasPushUrls() bool

HasPushUrls returns a boolean if a field has been set.

func (*RestMirroredRepository) HasRepositoryId ¶

func (o *RestMirroredRepository) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (*RestMirroredRepository) HasStatus ¶

func (o *RestMirroredRepository) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (RestMirroredRepository) MarshalJSON ¶

func (o RestMirroredRepository) MarshalJSON() ([]byte, error)

func (*RestMirroredRepository) SetAvailable ¶

func (o *RestMirroredRepository) SetAvailable(v bool)

SetAvailable gets a reference to the given bool and assigns it to the Available field.

func (*RestMirroredRepository) SetCloneUrls ¶

func (o *RestMirroredRepository) SetCloneUrls(v []RestNamedLink)

SetCloneUrls gets a reference to the given []RestNamedLink and assigns it to the CloneUrls field.

func (*RestMirroredRepository) SetLastUpdated ¶

func (o *RestMirroredRepository) SetLastUpdated(v time.Time)

SetLastUpdated gets a reference to the given time.Time and assigns it to the LastUpdated field.

func (*RestMirroredRepository) SetMirrorName ¶

func (o *RestMirroredRepository) SetMirrorName(v string)

SetMirrorName gets a reference to the given string and assigns it to the MirrorName field.

func (*RestMirroredRepository) SetPushUrls ¶

func (o *RestMirroredRepository) SetPushUrls(v []RestNamedLink)

SetPushUrls gets a reference to the given []RestNamedLink and assigns it to the PushUrls field.

func (*RestMirroredRepository) SetRepositoryId ¶

func (o *RestMirroredRepository) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

func (*RestMirroredRepository) SetStatus ¶

func (o *RestMirroredRepository) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (RestMirroredRepository) ToMap ¶

func (o RestMirroredRepository) ToMap() (map[string]interface{}, error)

type RestMirroredRepositoryDescriptor ¶

type RestMirroredRepositoryDescriptor struct {
	MirrorServer *RestMirroredRepositoryDescriptorMirrorServer `json:"mirrorServer,omitempty"`
	Links        map[string]interface{}                        `json:"links,omitempty"`
}

RestMirroredRepositoryDescriptor struct for RestMirroredRepositoryDescriptor

func NewRestMirroredRepositoryDescriptor ¶

func NewRestMirroredRepositoryDescriptor() *RestMirroredRepositoryDescriptor

NewRestMirroredRepositoryDescriptor instantiates a new RestMirroredRepositoryDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMirroredRepositoryDescriptorWithDefaults ¶

func NewRestMirroredRepositoryDescriptorWithDefaults() *RestMirroredRepositoryDescriptor

NewRestMirroredRepositoryDescriptorWithDefaults instantiates a new RestMirroredRepositoryDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (o *RestMirroredRepositoryDescriptor) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestMirroredRepositoryDescriptor) GetLinksOk ¶

func (o *RestMirroredRepositoryDescriptor) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepositoryDescriptor) GetMirrorServer ¶

GetMirrorServer returns the MirrorServer field value if set, zero value otherwise.

func (*RestMirroredRepositoryDescriptor) GetMirrorServerOk ¶

GetMirrorServerOk returns a tuple with the MirrorServer field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestMirroredRepositoryDescriptor) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestMirroredRepositoryDescriptor) HasMirrorServer ¶

func (o *RestMirroredRepositoryDescriptor) HasMirrorServer() bool

HasMirrorServer returns a boolean if a field has been set.

func (RestMirroredRepositoryDescriptor) MarshalJSON ¶

func (o RestMirroredRepositoryDescriptor) MarshalJSON() ([]byte, error)
func (o *RestMirroredRepositoryDescriptor) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestMirroredRepositoryDescriptor) SetMirrorServer ¶

SetMirrorServer gets a reference to the given RestMirroredRepositoryDescriptorMirrorServer and assigns it to the MirrorServer field.

func (RestMirroredRepositoryDescriptor) ToMap ¶

func (o RestMirroredRepositoryDescriptor) ToMap() (map[string]interface{}, error)

type RestMirroredRepositoryDescriptorMirrorServer ¶

type RestMirroredRepositoryDescriptorMirrorServer struct {
	Enabled        *bool     `json:"enabled,omitempty"`
	Name           *string   `json:"name,omitempty"`
	Id             *string   `json:"id,omitempty"`
	ProductType    *string   `json:"productType,omitempty"`
	ProductVersion *string   `json:"productVersion,omitempty"`
	MirrorType     *string   `json:"mirrorType,omitempty"`
	LastSeenDate   time.Time `json:"lastSeenDate"`
	BaseUrl        *string   `json:"baseUrl,omitempty"`
}

RestMirroredRepositoryDescriptorMirrorServer struct for RestMirroredRepositoryDescriptorMirrorServer

func NewRestMirroredRepositoryDescriptorMirrorServer ¶

func NewRestMirroredRepositoryDescriptorMirrorServer(lastSeenDate time.Time) *RestMirroredRepositoryDescriptorMirrorServer

NewRestMirroredRepositoryDescriptorMirrorServer instantiates a new RestMirroredRepositoryDescriptorMirrorServer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMirroredRepositoryDescriptorMirrorServerWithDefaults ¶

func NewRestMirroredRepositoryDescriptorMirrorServerWithDefaults() *RestMirroredRepositoryDescriptorMirrorServer

NewRestMirroredRepositoryDescriptorMirrorServerWithDefaults instantiates a new RestMirroredRepositoryDescriptorMirrorServer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMirroredRepositoryDescriptorMirrorServer) GetBaseUrl ¶

GetBaseUrl returns the BaseUrl field value if set, zero value otherwise.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetBaseUrlOk ¶

GetBaseUrlOk returns a tuple with the BaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetEnabledOk ¶

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetLastSeenDate ¶

GetLastSeenDate returns the LastSeenDate field value

func (*RestMirroredRepositoryDescriptorMirrorServer) GetLastSeenDateOk ¶

func (o *RestMirroredRepositoryDescriptorMirrorServer) GetLastSeenDateOk() (*time.Time, bool)

GetLastSeenDateOk returns a tuple with the LastSeenDate field value and a boolean to check if the value has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetMirrorType ¶

GetMirrorType returns the MirrorType field value if set, zero value otherwise.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetMirrorTypeOk ¶

func (o *RestMirroredRepositoryDescriptorMirrorServer) GetMirrorTypeOk() (*string, bool)

GetMirrorTypeOk returns a tuple with the MirrorType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetNameOk ¶

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetProductType ¶

GetProductType returns the ProductType field value if set, zero value otherwise.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetProductTypeOk ¶

func (o *RestMirroredRepositoryDescriptorMirrorServer) GetProductTypeOk() (*string, bool)

GetProductTypeOk returns a tuple with the ProductType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetProductVersion ¶

GetProductVersion returns the ProductVersion field value if set, zero value otherwise.

func (*RestMirroredRepositoryDescriptorMirrorServer) GetProductVersionOk ¶

func (o *RestMirroredRepositoryDescriptorMirrorServer) GetProductVersionOk() (*string, bool)

GetProductVersionOk returns a tuple with the ProductVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) HasBaseUrl ¶

HasBaseUrl returns a boolean if a field has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) HasMirrorType ¶

HasMirrorType returns a boolean if a field has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) HasProductType ¶

HasProductType returns a boolean if a field has been set.

func (*RestMirroredRepositoryDescriptorMirrorServer) HasProductVersion ¶

func (o *RestMirroredRepositoryDescriptorMirrorServer) HasProductVersion() bool

HasProductVersion returns a boolean if a field has been set.

func (RestMirroredRepositoryDescriptorMirrorServer) MarshalJSON ¶

func (*RestMirroredRepositoryDescriptorMirrorServer) SetBaseUrl ¶

SetBaseUrl gets a reference to the given string and assigns it to the BaseUrl field.

func (*RestMirroredRepositoryDescriptorMirrorServer) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestMirroredRepositoryDescriptorMirrorServer) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestMirroredRepositoryDescriptorMirrorServer) SetLastSeenDate ¶

SetLastSeenDate sets field value

func (*RestMirroredRepositoryDescriptorMirrorServer) SetMirrorType ¶

SetMirrorType gets a reference to the given string and assigns it to the MirrorType field.

func (*RestMirroredRepositoryDescriptorMirrorServer) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestMirroredRepositoryDescriptorMirrorServer) SetProductType ¶

SetProductType gets a reference to the given string and assigns it to the ProductType field.

func (*RestMirroredRepositoryDescriptorMirrorServer) SetProductVersion ¶

func (o *RestMirroredRepositoryDescriptorMirrorServer) SetProductVersion(v string)

SetProductVersion gets a reference to the given string and assigns it to the ProductVersion field.

func (RestMirroredRepositoryDescriptorMirrorServer) ToMap ¶

func (o RestMirroredRepositoryDescriptorMirrorServer) ToMap() (map[string]interface{}, error)

type RestMirroringRequest ¶

type RestMirroringRequest struct {
	Id                 *int32  `json:"id,omitempty"`
	State              *string `json:"state,omitempty"`
	ProductType        *string `json:"productType,omitempty"`
	ProductVersion     *string `json:"productVersion,omitempty"`
	MirrorType         *string `json:"mirrorType,omitempty"`
	MirrorName         *string `json:"mirrorName,omitempty"`
	MirrorBaseUrl      *string `json:"mirrorBaseUrl,omitempty"`
	AddonDescriptorUri *string `json:"addonDescriptorUri,omitempty"`
	MirrorId           *string `json:"mirrorId,omitempty"`
}

RestMirroringRequest struct for RestMirroringRequest

func NewRestMirroringRequest ¶

func NewRestMirroringRequest() *RestMirroringRequest

NewRestMirroringRequest instantiates a new RestMirroringRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestMirroringRequestWithDefaults ¶

func NewRestMirroringRequestWithDefaults() *RestMirroringRequest

NewRestMirroringRequestWithDefaults instantiates a new RestMirroringRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestMirroringRequest) GetAddonDescriptorUri ¶

func (o *RestMirroringRequest) GetAddonDescriptorUri() string

GetAddonDescriptorUri returns the AddonDescriptorUri field value if set, zero value otherwise.

func (*RestMirroringRequest) GetAddonDescriptorUriOk ¶

func (o *RestMirroringRequest) GetAddonDescriptorUriOk() (*string, bool)

GetAddonDescriptorUriOk returns a tuple with the AddonDescriptorUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroringRequest) GetId ¶

func (o *RestMirroringRequest) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestMirroringRequest) GetIdOk ¶

func (o *RestMirroringRequest) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroringRequest) GetMirrorBaseUrl ¶

func (o *RestMirroringRequest) GetMirrorBaseUrl() string

GetMirrorBaseUrl returns the MirrorBaseUrl field value if set, zero value otherwise.

func (*RestMirroringRequest) GetMirrorBaseUrlOk ¶

func (o *RestMirroringRequest) GetMirrorBaseUrlOk() (*string, bool)

GetMirrorBaseUrlOk returns a tuple with the MirrorBaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroringRequest) GetMirrorId ¶

func (o *RestMirroringRequest) GetMirrorId() string

GetMirrorId returns the MirrorId field value if set, zero value otherwise.

func (*RestMirroringRequest) GetMirrorIdOk ¶

func (o *RestMirroringRequest) GetMirrorIdOk() (*string, bool)

GetMirrorIdOk returns a tuple with the MirrorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroringRequest) GetMirrorName ¶

func (o *RestMirroringRequest) GetMirrorName() string

GetMirrorName returns the MirrorName field value if set, zero value otherwise.

func (*RestMirroringRequest) GetMirrorNameOk ¶

func (o *RestMirroringRequest) GetMirrorNameOk() (*string, bool)

GetMirrorNameOk returns a tuple with the MirrorName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroringRequest) GetMirrorType ¶

func (o *RestMirroringRequest) GetMirrorType() string

GetMirrorType returns the MirrorType field value if set, zero value otherwise.

func (*RestMirroringRequest) GetMirrorTypeOk ¶

func (o *RestMirroringRequest) GetMirrorTypeOk() (*string, bool)

GetMirrorTypeOk returns a tuple with the MirrorType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroringRequest) GetProductType ¶

func (o *RestMirroringRequest) GetProductType() string

GetProductType returns the ProductType field value if set, zero value otherwise.

func (*RestMirroringRequest) GetProductTypeOk ¶

func (o *RestMirroringRequest) GetProductTypeOk() (*string, bool)

GetProductTypeOk returns a tuple with the ProductType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroringRequest) GetProductVersion ¶

func (o *RestMirroringRequest) GetProductVersion() string

GetProductVersion returns the ProductVersion field value if set, zero value otherwise.

func (*RestMirroringRequest) GetProductVersionOk ¶

func (o *RestMirroringRequest) GetProductVersionOk() (*string, bool)

GetProductVersionOk returns a tuple with the ProductVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroringRequest) GetState ¶

func (o *RestMirroringRequest) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestMirroringRequest) GetStateOk ¶

func (o *RestMirroringRequest) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestMirroringRequest) HasAddonDescriptorUri ¶

func (o *RestMirroringRequest) HasAddonDescriptorUri() bool

HasAddonDescriptorUri returns a boolean if a field has been set.

func (*RestMirroringRequest) HasId ¶

func (o *RestMirroringRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestMirroringRequest) HasMirrorBaseUrl ¶

func (o *RestMirroringRequest) HasMirrorBaseUrl() bool

HasMirrorBaseUrl returns a boolean if a field has been set.

func (*RestMirroringRequest) HasMirrorId ¶

func (o *RestMirroringRequest) HasMirrorId() bool

HasMirrorId returns a boolean if a field has been set.

func (*RestMirroringRequest) HasMirrorName ¶

func (o *RestMirroringRequest) HasMirrorName() bool

HasMirrorName returns a boolean if a field has been set.

func (*RestMirroringRequest) HasMirrorType ¶

func (o *RestMirroringRequest) HasMirrorType() bool

HasMirrorType returns a boolean if a field has been set.

func (*RestMirroringRequest) HasProductType ¶

func (o *RestMirroringRequest) HasProductType() bool

HasProductType returns a boolean if a field has been set.

func (*RestMirroringRequest) HasProductVersion ¶

func (o *RestMirroringRequest) HasProductVersion() bool

HasProductVersion returns a boolean if a field has been set.

func (*RestMirroringRequest) HasState ¶

func (o *RestMirroringRequest) HasState() bool

HasState returns a boolean if a field has been set.

func (RestMirroringRequest) MarshalJSON ¶

func (o RestMirroringRequest) MarshalJSON() ([]byte, error)

func (*RestMirroringRequest) SetAddonDescriptorUri ¶

func (o *RestMirroringRequest) SetAddonDescriptorUri(v string)

SetAddonDescriptorUri gets a reference to the given string and assigns it to the AddonDescriptorUri field.

func (*RestMirroringRequest) SetId ¶

func (o *RestMirroringRequest) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestMirroringRequest) SetMirrorBaseUrl ¶

func (o *RestMirroringRequest) SetMirrorBaseUrl(v string)

SetMirrorBaseUrl gets a reference to the given string and assigns it to the MirrorBaseUrl field.

func (*RestMirroringRequest) SetMirrorId ¶

func (o *RestMirroringRequest) SetMirrorId(v string)

SetMirrorId gets a reference to the given string and assigns it to the MirrorId field.

func (*RestMirroringRequest) SetMirrorName ¶

func (o *RestMirroringRequest) SetMirrorName(v string)

SetMirrorName gets a reference to the given string and assigns it to the MirrorName field.

func (*RestMirroringRequest) SetMirrorType ¶

func (o *RestMirroringRequest) SetMirrorType(v string)

SetMirrorType gets a reference to the given string and assigns it to the MirrorType field.

func (*RestMirroringRequest) SetProductType ¶

func (o *RestMirroringRequest) SetProductType(v string)

SetProductType gets a reference to the given string and assigns it to the ProductType field.

func (*RestMirroringRequest) SetProductVersion ¶

func (o *RestMirroringRequest) SetProductVersion(v string)

SetProductVersion gets a reference to the given string and assigns it to the ProductVersion field.

func (*RestMirroringRequest) SetState ¶

func (o *RestMirroringRequest) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (RestMirroringRequest) ToMap ¶

func (o RestMirroringRequest) ToMap() (map[string]interface{}, error)
type RestNamedLink struct {
	Name *string `json:"name,omitempty"`
	Href *string `json:"href,omitempty"`
}

RestNamedLink struct for RestNamedLink

func NewRestNamedLink() *RestNamedLink

NewRestNamedLink instantiates a new RestNamedLink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestNamedLinkWithDefaults ¶

func NewRestNamedLinkWithDefaults() *RestNamedLink

NewRestNamedLinkWithDefaults instantiates a new RestNamedLink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestNamedLink) GetHref ¶

func (o *RestNamedLink) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*RestNamedLink) GetHrefOk ¶

func (o *RestNamedLink) GetHrefOk() (*string, bool)

GetHrefOk returns a tuple with the Href field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNamedLink) GetName ¶

func (o *RestNamedLink) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestNamedLink) GetNameOk ¶

func (o *RestNamedLink) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNamedLink) HasHref ¶

func (o *RestNamedLink) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*RestNamedLink) HasName ¶

func (o *RestNamedLink) HasName() bool

HasName returns a boolean if a field has been set.

func (RestNamedLink) MarshalJSON ¶

func (o RestNamedLink) MarshalJSON() ([]byte, error)

func (*RestNamedLink) SetHref ¶

func (o *RestNamedLink) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*RestNamedLink) SetName ¶

func (o *RestNamedLink) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestNamedLink) ToMap ¶

func (o RestNamedLink) ToMap() (map[string]interface{}, error)

type RestNode ¶

type RestNode struct {
	Name *string `json:"name,omitempty"`
	Id   *string `json:"id,omitempty"`
	Type *string `json:"type,omitempty"`
}

RestNode struct for RestNode

func NewRestNode ¶

func NewRestNode() *RestNode

NewRestNode instantiates a new RestNode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestNodeWithDefaults ¶

func NewRestNodeWithDefaults() *RestNode

NewRestNodeWithDefaults instantiates a new RestNode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestNode) GetId ¶

func (o *RestNode) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestNode) GetIdOk ¶

func (o *RestNode) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNode) GetName ¶

func (o *RestNode) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestNode) GetNameOk ¶

func (o *RestNode) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNode) GetType ¶

func (o *RestNode) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestNode) GetTypeOk ¶

func (o *RestNode) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNode) HasId ¶

func (o *RestNode) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestNode) HasName ¶

func (o *RestNode) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestNode) HasType ¶

func (o *RestNode) HasType() bool

HasType returns a boolean if a field has been set.

func (RestNode) MarshalJSON ¶

func (o RestNode) MarshalJSON() ([]byte, error)

func (*RestNode) SetId ¶

func (o *RestNode) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestNode) SetName ¶

func (o *RestNode) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestNode) SetType ¶

func (o *RestNode) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestNode) ToMap ¶

func (o RestNode) ToMap() (map[string]interface{}, error)

type RestNodeConnectivityReport ¶

type RestNodeConnectivityReport struct {
	Node      *RestNodeConnectivityReportNode `json:"node,omitempty"`
	Summaries []RestNodeConnectivitySummary   `json:"summaries,omitempty"`
}

RestNodeConnectivityReport struct for RestNodeConnectivityReport

func NewRestNodeConnectivityReport ¶

func NewRestNodeConnectivityReport() *RestNodeConnectivityReport

NewRestNodeConnectivityReport instantiates a new RestNodeConnectivityReport object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestNodeConnectivityReportWithDefaults ¶

func NewRestNodeConnectivityReportWithDefaults() *RestNodeConnectivityReport

NewRestNodeConnectivityReportWithDefaults instantiates a new RestNodeConnectivityReport object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestNodeConnectivityReport) GetNode ¶

GetNode returns the Node field value if set, zero value otherwise.

func (*RestNodeConnectivityReport) GetNodeOk ¶

GetNodeOk returns a tuple with the Node field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivityReport) GetSummaries ¶

GetSummaries returns the Summaries field value if set, zero value otherwise.

func (*RestNodeConnectivityReport) GetSummariesOk ¶

GetSummariesOk returns a tuple with the Summaries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivityReport) HasNode ¶

func (o *RestNodeConnectivityReport) HasNode() bool

HasNode returns a boolean if a field has been set.

func (*RestNodeConnectivityReport) HasSummaries ¶

func (o *RestNodeConnectivityReport) HasSummaries() bool

HasSummaries returns a boolean if a field has been set.

func (RestNodeConnectivityReport) MarshalJSON ¶

func (o RestNodeConnectivityReport) MarshalJSON() ([]byte, error)

func (*RestNodeConnectivityReport) SetNode ¶

SetNode gets a reference to the given RestNodeConnectivityReportNode and assigns it to the Node field.

func (*RestNodeConnectivityReport) SetSummaries ¶

SetSummaries gets a reference to the given []RestNodeConnectivitySummary and assigns it to the Summaries field.

func (RestNodeConnectivityReport) ToMap ¶

func (o RestNodeConnectivityReport) ToMap() (map[string]interface{}, error)

type RestNodeConnectivityReportNode ¶

type RestNodeConnectivityReportNode struct {
	Name *string `json:"name,omitempty"`
	Id   *string `json:"id,omitempty"`
	Type *string `json:"type,omitempty"`
}

RestNodeConnectivityReportNode struct for RestNodeConnectivityReportNode

func NewRestNodeConnectivityReportNode ¶

func NewRestNodeConnectivityReportNode() *RestNodeConnectivityReportNode

NewRestNodeConnectivityReportNode instantiates a new RestNodeConnectivityReportNode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestNodeConnectivityReportNodeWithDefaults ¶

func NewRestNodeConnectivityReportNodeWithDefaults() *RestNodeConnectivityReportNode

NewRestNodeConnectivityReportNodeWithDefaults instantiates a new RestNodeConnectivityReportNode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestNodeConnectivityReportNode) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestNodeConnectivityReportNode) GetIdOk ¶

func (o *RestNodeConnectivityReportNode) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivityReportNode) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestNodeConnectivityReportNode) GetNameOk ¶

func (o *RestNodeConnectivityReportNode) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivityReportNode) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestNodeConnectivityReportNode) GetTypeOk ¶

func (o *RestNodeConnectivityReportNode) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivityReportNode) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestNodeConnectivityReportNode) HasName ¶

func (o *RestNodeConnectivityReportNode) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestNodeConnectivityReportNode) HasType ¶

func (o *RestNodeConnectivityReportNode) HasType() bool

HasType returns a boolean if a field has been set.

func (RestNodeConnectivityReportNode) MarshalJSON ¶

func (o RestNodeConnectivityReportNode) MarshalJSON() ([]byte, error)

func (*RestNodeConnectivityReportNode) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestNodeConnectivityReportNode) SetName ¶

func (o *RestNodeConnectivityReportNode) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestNodeConnectivityReportNode) SetType ¶

func (o *RestNodeConnectivityReportNode) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestNodeConnectivityReportNode) ToMap ¶

func (o RestNodeConnectivityReportNode) ToMap() (map[string]interface{}, error)

type RestNodeConnectivitySummary ¶

type RestNodeConnectivitySummary struct {
	Node    *RestNodeConnectivityReportNode     `json:"node,omitempty"`
	Summary *RestNodeConnectivitySummarySummary `json:"summary,omitempty"`
}

RestNodeConnectivitySummary struct for RestNodeConnectivitySummary

func NewRestNodeConnectivitySummary ¶

func NewRestNodeConnectivitySummary() *RestNodeConnectivitySummary

NewRestNodeConnectivitySummary instantiates a new RestNodeConnectivitySummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestNodeConnectivitySummaryWithDefaults ¶

func NewRestNodeConnectivitySummaryWithDefaults() *RestNodeConnectivitySummary

NewRestNodeConnectivitySummaryWithDefaults instantiates a new RestNodeConnectivitySummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestNodeConnectivitySummary) GetNode ¶

GetNode returns the Node field value if set, zero value otherwise.

func (*RestNodeConnectivitySummary) GetNodeOk ¶

GetNodeOk returns a tuple with the Node field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivitySummary) GetSummary ¶

GetSummary returns the Summary field value if set, zero value otherwise.

func (*RestNodeConnectivitySummary) GetSummaryOk ¶

GetSummaryOk returns a tuple with the Summary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivitySummary) HasNode ¶

func (o *RestNodeConnectivitySummary) HasNode() bool

HasNode returns a boolean if a field has been set.

func (*RestNodeConnectivitySummary) HasSummary ¶

func (o *RestNodeConnectivitySummary) HasSummary() bool

HasSummary returns a boolean if a field has been set.

func (RestNodeConnectivitySummary) MarshalJSON ¶

func (o RestNodeConnectivitySummary) MarshalJSON() ([]byte, error)

func (*RestNodeConnectivitySummary) SetNode ¶

SetNode gets a reference to the given RestNodeConnectivityReportNode and assigns it to the Node field.

func (*RestNodeConnectivitySummary) SetSummary ¶

SetSummary gets a reference to the given RestNodeConnectivitySummarySummary and assigns it to the Summary field.

func (RestNodeConnectivitySummary) ToMap ¶

func (o RestNodeConnectivitySummary) ToMap() (map[string]interface{}, error)

type RestNodeConnectivitySummarySummary ¶

type RestNodeConnectivitySummarySummary struct {
	RoundTripTime *int64  `json:"roundTripTime,omitempty"`
	Reachable     *bool   `json:"reachable,omitempty"`
	ErrorMessage  *string `json:"errorMessage,omitempty"`
}

RestNodeConnectivitySummarySummary struct for RestNodeConnectivitySummarySummary

func NewRestNodeConnectivitySummarySummary ¶

func NewRestNodeConnectivitySummarySummary() *RestNodeConnectivitySummarySummary

NewRestNodeConnectivitySummarySummary instantiates a new RestNodeConnectivitySummarySummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestNodeConnectivitySummarySummaryWithDefaults ¶

func NewRestNodeConnectivitySummarySummaryWithDefaults() *RestNodeConnectivitySummarySummary

NewRestNodeConnectivitySummarySummaryWithDefaults instantiates a new RestNodeConnectivitySummarySummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestNodeConnectivitySummarySummary) GetErrorMessage ¶

func (o *RestNodeConnectivitySummarySummary) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise.

func (*RestNodeConnectivitySummarySummary) GetErrorMessageOk ¶

func (o *RestNodeConnectivitySummarySummary) GetErrorMessageOk() (*string, bool)

GetErrorMessageOk returns a tuple with the ErrorMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivitySummarySummary) GetReachable ¶

func (o *RestNodeConnectivitySummarySummary) GetReachable() bool

GetReachable returns the Reachable field value if set, zero value otherwise.

func (*RestNodeConnectivitySummarySummary) GetReachableOk ¶

func (o *RestNodeConnectivitySummarySummary) GetReachableOk() (*bool, bool)

GetReachableOk returns a tuple with the Reachable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivitySummarySummary) GetRoundTripTime ¶

func (o *RestNodeConnectivitySummarySummary) GetRoundTripTime() int64

GetRoundTripTime returns the RoundTripTime field value if set, zero value otherwise.

func (*RestNodeConnectivitySummarySummary) GetRoundTripTimeOk ¶

func (o *RestNodeConnectivitySummarySummary) GetRoundTripTimeOk() (*int64, bool)

GetRoundTripTimeOk returns a tuple with the RoundTripTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestNodeConnectivitySummarySummary) HasErrorMessage ¶

func (o *RestNodeConnectivitySummarySummary) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*RestNodeConnectivitySummarySummary) HasReachable ¶

func (o *RestNodeConnectivitySummarySummary) HasReachable() bool

HasReachable returns a boolean if a field has been set.

func (*RestNodeConnectivitySummarySummary) HasRoundTripTime ¶

func (o *RestNodeConnectivitySummarySummary) HasRoundTripTime() bool

HasRoundTripTime returns a boolean if a field has been set.

func (RestNodeConnectivitySummarySummary) MarshalJSON ¶

func (o RestNodeConnectivitySummarySummary) MarshalJSON() ([]byte, error)

func (*RestNodeConnectivitySummarySummary) SetErrorMessage ¶

func (o *RestNodeConnectivitySummarySummary) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given string and assigns it to the ErrorMessage field.

func (*RestNodeConnectivitySummarySummary) SetReachable ¶

func (o *RestNodeConnectivitySummarySummary) SetReachable(v bool)

SetReachable gets a reference to the given bool and assigns it to the Reachable field.

func (*RestNodeConnectivitySummarySummary) SetRoundTripTime ¶

func (o *RestNodeConnectivitySummarySummary) SetRoundTripTime(v int64)

SetRoundTripTime gets a reference to the given int64 and assigns it to the RoundTripTime field.

func (RestNodeConnectivitySummarySummary) ToMap ¶

func (o RestNodeConnectivitySummarySummary) ToMap() (map[string]interface{}, error)

type RestPageRestChange ¶

type RestPageRestChange struct {
	Values        map[string]interface{} `json:"values,omitempty"`
	Size          *int32                 `json:"size,omitempty"`
	Limit         *int32                 `json:"limit,omitempty"`
	IsLastPage    *bool                  `json:"isLastPage,omitempty"`
	NextPageStart *int32                 `json:"nextPageStart,omitempty"`
	Start         *int32                 `json:"start,omitempty"`
}

RestPageRestChange struct for RestPageRestChange

func NewRestPageRestChange ¶

func NewRestPageRestChange() *RestPageRestChange

NewRestPageRestChange instantiates a new RestPageRestChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPageRestChangeWithDefaults ¶

func NewRestPageRestChangeWithDefaults() *RestPageRestChange

NewRestPageRestChangeWithDefaults instantiates a new RestPageRestChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPageRestChange) GetIsLastPage ¶

func (o *RestPageRestChange) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*RestPageRestChange) GetIsLastPageOk ¶

func (o *RestPageRestChange) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPageRestChange) GetLimit ¶

func (o *RestPageRestChange) GetLimit() int32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*RestPageRestChange) GetLimitOk ¶

func (o *RestPageRestChange) GetLimitOk() (*int32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPageRestChange) GetNextPageStart ¶

func (o *RestPageRestChange) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*RestPageRestChange) GetNextPageStartOk ¶

func (o *RestPageRestChange) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPageRestChange) GetSize ¶

func (o *RestPageRestChange) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*RestPageRestChange) GetSizeOk ¶

func (o *RestPageRestChange) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPageRestChange) GetStart ¶

func (o *RestPageRestChange) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*RestPageRestChange) GetStartOk ¶

func (o *RestPageRestChange) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPageRestChange) GetValues ¶

func (o *RestPageRestChange) GetValues() map[string]interface{}

GetValues returns the Values field value if set, zero value otherwise.

func (*RestPageRestChange) GetValuesOk ¶

func (o *RestPageRestChange) GetValuesOk() (map[string]interface{}, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPageRestChange) HasIsLastPage ¶

func (o *RestPageRestChange) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*RestPageRestChange) HasLimit ¶

func (o *RestPageRestChange) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*RestPageRestChange) HasNextPageStart ¶

func (o *RestPageRestChange) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*RestPageRestChange) HasSize ¶

func (o *RestPageRestChange) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*RestPageRestChange) HasStart ¶

func (o *RestPageRestChange) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*RestPageRestChange) HasValues ¶

func (o *RestPageRestChange) HasValues() bool

HasValues returns a boolean if a field has been set.

func (RestPageRestChange) MarshalJSON ¶

func (o RestPageRestChange) MarshalJSON() ([]byte, error)

func (*RestPageRestChange) SetIsLastPage ¶

func (o *RestPageRestChange) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*RestPageRestChange) SetLimit ¶

func (o *RestPageRestChange) SetLimit(v int32)

SetLimit gets a reference to the given int32 and assigns it to the Limit field.

func (*RestPageRestChange) SetNextPageStart ¶

func (o *RestPageRestChange) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*RestPageRestChange) SetSize ¶

func (o *RestPageRestChange) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*RestPageRestChange) SetStart ¶

func (o *RestPageRestChange) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*RestPageRestChange) SetValues ¶

func (o *RestPageRestChange) SetValues(v map[string]interface{})

SetValues gets a reference to the given map[string]interface{} and assigns it to the Values field.

func (RestPageRestChange) ToMap ¶

func (o RestPageRestChange) ToMap() (map[string]interface{}, error)

type RestPath ¶

type RestPath struct {
	Name       *string  `json:"name,omitempty"`
	Parent     *string  `json:"parent,omitempty"`
	Extension  *string  `json:"extension,omitempty"`
	Components []string `json:"components,omitempty"`
}

RestPath struct for RestPath

func NewRestPath ¶

func NewRestPath() *RestPath

NewRestPath instantiates a new RestPath object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPathWithDefaults ¶

func NewRestPathWithDefaults() *RestPath

NewRestPathWithDefaults instantiates a new RestPath object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPath) GetComponents ¶

func (o *RestPath) GetComponents() []string

GetComponents returns the Components field value if set, zero value otherwise.

func (*RestPath) GetComponentsOk ¶

func (o *RestPath) GetComponentsOk() ([]string, bool)

GetComponentsOk returns a tuple with the Components field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPath) GetExtension ¶

func (o *RestPath) GetExtension() string

GetExtension returns the Extension field value if set, zero value otherwise.

func (*RestPath) GetExtensionOk ¶

func (o *RestPath) GetExtensionOk() (*string, bool)

GetExtensionOk returns a tuple with the Extension field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPath) GetName ¶

func (o *RestPath) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestPath) GetNameOk ¶

func (o *RestPath) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPath) GetParent ¶

func (o *RestPath) GetParent() string

GetParent returns the Parent field value if set, zero value otherwise.

func (*RestPath) GetParentOk ¶

func (o *RestPath) GetParentOk() (*string, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPath) HasComponents ¶

func (o *RestPath) HasComponents() bool

HasComponents returns a boolean if a field has been set.

func (*RestPath) HasExtension ¶

func (o *RestPath) HasExtension() bool

HasExtension returns a boolean if a field has been set.

func (*RestPath) HasName ¶

func (o *RestPath) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestPath) HasParent ¶

func (o *RestPath) HasParent() bool

HasParent returns a boolean if a field has been set.

func (RestPath) MarshalJSON ¶

func (o RestPath) MarshalJSON() ([]byte, error)

func (*RestPath) SetComponents ¶

func (o *RestPath) SetComponents(v []string)

SetComponents gets a reference to the given []string and assigns it to the Components field.

func (*RestPath) SetExtension ¶

func (o *RestPath) SetExtension(v string)

SetExtension gets a reference to the given string and assigns it to the Extension field.

func (*RestPath) SetName ¶

func (o *RestPath) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestPath) SetParent ¶

func (o *RestPath) SetParent(v string)

SetParent gets a reference to the given string and assigns it to the Parent field.

func (RestPath) ToMap ¶

func (o RestPath) ToMap() (map[string]interface{}, error)

type RestPermitted ¶

type RestPermitted struct {
	Permitted *bool `json:"permitted,omitempty"`
}

RestPermitted struct for RestPermitted

func NewRestPermitted ¶

func NewRestPermitted() *RestPermitted

NewRestPermitted instantiates a new RestPermitted object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPermittedWithDefaults ¶

func NewRestPermittedWithDefaults() *RestPermitted

NewRestPermittedWithDefaults instantiates a new RestPermitted object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPermitted) GetPermitted ¶

func (o *RestPermitted) GetPermitted() bool

GetPermitted returns the Permitted field value if set, zero value otherwise.

func (*RestPermitted) GetPermittedOk ¶

func (o *RestPermitted) GetPermittedOk() (*bool, bool)

GetPermittedOk returns a tuple with the Permitted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPermitted) HasPermitted ¶

func (o *RestPermitted) HasPermitted() bool

HasPermitted returns a boolean if a field has been set.

func (RestPermitted) MarshalJSON ¶

func (o RestPermitted) MarshalJSON() ([]byte, error)

func (*RestPermitted) SetPermitted ¶

func (o *RestPermitted) SetPermitted(v bool)

SetPermitted gets a reference to the given bool and assigns it to the Permitted field.

func (RestPermitted) ToMap ¶

func (o RestPermitted) ToMap() (map[string]interface{}, error)

type RestPermittedGroup ¶

type RestPermittedGroup struct {
	Permission *string                  `json:"permission,omitempty"`
	Group      *RestPermittedGroupGroup `json:"group,omitempty"`
}

RestPermittedGroup struct for RestPermittedGroup

func NewRestPermittedGroup ¶

func NewRestPermittedGroup() *RestPermittedGroup

NewRestPermittedGroup instantiates a new RestPermittedGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPermittedGroupWithDefaults ¶

func NewRestPermittedGroupWithDefaults() *RestPermittedGroup

NewRestPermittedGroupWithDefaults instantiates a new RestPermittedGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPermittedGroup) GetGroup ¶

GetGroup returns the Group field value if set, zero value otherwise.

func (*RestPermittedGroup) GetGroupOk ¶

func (o *RestPermittedGroup) GetGroupOk() (*RestPermittedGroupGroup, bool)

GetGroupOk returns a tuple with the Group field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPermittedGroup) GetPermission ¶

func (o *RestPermittedGroup) GetPermission() string

GetPermission returns the Permission field value if set, zero value otherwise.

func (*RestPermittedGroup) GetPermissionOk ¶

func (o *RestPermittedGroup) GetPermissionOk() (*string, bool)

GetPermissionOk returns a tuple with the Permission field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPermittedGroup) HasGroup ¶

func (o *RestPermittedGroup) HasGroup() bool

HasGroup returns a boolean if a field has been set.

func (*RestPermittedGroup) HasPermission ¶

func (o *RestPermittedGroup) HasPermission() bool

HasPermission returns a boolean if a field has been set.

func (RestPermittedGroup) MarshalJSON ¶

func (o RestPermittedGroup) MarshalJSON() ([]byte, error)

func (*RestPermittedGroup) SetGroup ¶

SetGroup gets a reference to the given RestPermittedGroupGroup and assigns it to the Group field.

func (*RestPermittedGroup) SetPermission ¶

func (o *RestPermittedGroup) SetPermission(v string)

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (RestPermittedGroup) ToMap ¶

func (o RestPermittedGroup) ToMap() (map[string]interface{}, error)

type RestPermittedGroupGroup ¶

type RestPermittedGroupGroup struct {
	Name *string `json:"name,omitempty"`
}

RestPermittedGroupGroup struct for RestPermittedGroupGroup

func NewRestPermittedGroupGroup ¶

func NewRestPermittedGroupGroup() *RestPermittedGroupGroup

NewRestPermittedGroupGroup instantiates a new RestPermittedGroupGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPermittedGroupGroupWithDefaults ¶

func NewRestPermittedGroupGroupWithDefaults() *RestPermittedGroupGroup

NewRestPermittedGroupGroupWithDefaults instantiates a new RestPermittedGroupGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPermittedGroupGroup) GetName ¶

func (o *RestPermittedGroupGroup) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestPermittedGroupGroup) GetNameOk ¶

func (o *RestPermittedGroupGroup) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPermittedGroupGroup) HasName ¶

func (o *RestPermittedGroupGroup) HasName() bool

HasName returns a boolean if a field has been set.

func (RestPermittedGroupGroup) MarshalJSON ¶

func (o RestPermittedGroupGroup) MarshalJSON() ([]byte, error)

func (*RestPermittedGroupGroup) SetName ¶

func (o *RestPermittedGroupGroup) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestPermittedGroupGroup) ToMap ¶

func (o RestPermittedGroupGroup) ToMap() (map[string]interface{}, error)

type RestPermittedUser ¶

type RestPermittedUser struct {
	Permission *string                         `json:"permission,omitempty"`
	User       *RestPullRequestParticipantUser `json:"user,omitempty"`
}

RestPermittedUser struct for RestPermittedUser

func NewRestPermittedUser ¶

func NewRestPermittedUser() *RestPermittedUser

NewRestPermittedUser instantiates a new RestPermittedUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPermittedUserWithDefaults ¶

func NewRestPermittedUserWithDefaults() *RestPermittedUser

NewRestPermittedUserWithDefaults instantiates a new RestPermittedUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPermittedUser) GetPermission ¶

func (o *RestPermittedUser) GetPermission() string

GetPermission returns the Permission field value if set, zero value otherwise.

func (*RestPermittedUser) GetPermissionOk ¶

func (o *RestPermittedUser) GetPermissionOk() (*string, bool)

GetPermissionOk returns a tuple with the Permission field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPermittedUser) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*RestPermittedUser) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPermittedUser) HasPermission ¶

func (o *RestPermittedUser) HasPermission() bool

HasPermission returns a boolean if a field has been set.

func (*RestPermittedUser) HasUser ¶

func (o *RestPermittedUser) HasUser() bool

HasUser returns a boolean if a field has been set.

func (RestPermittedUser) MarshalJSON ¶

func (o RestPermittedUser) MarshalJSON() ([]byte, error)

func (*RestPermittedUser) SetPermission ¶

func (o *RestPermittedUser) SetPermission(v string)

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (*RestPermittedUser) SetUser ¶

SetUser gets a reference to the given RestPullRequestParticipantUser and assigns it to the User field.

func (RestPermittedUser) ToMap ¶

func (o RestPermittedUser) ToMap() (map[string]interface{}, error)

type RestPerson ¶

type RestPerson struct {
	Name         *string `json:"name,omitempty"`
	AvatarUrl    *string `json:"avatarUrl,omitempty"`
	EmailAddress *string `json:"emailAddress,omitempty"`
}

RestPerson struct for RestPerson

func NewRestPerson ¶

func NewRestPerson() *RestPerson

NewRestPerson instantiates a new RestPerson object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPersonWithDefaults ¶

func NewRestPersonWithDefaults() *RestPerson

NewRestPersonWithDefaults instantiates a new RestPerson object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPerson) GetAvatarUrl ¶

func (o *RestPerson) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestPerson) GetAvatarUrlOk ¶

func (o *RestPerson) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPerson) GetEmailAddress ¶

func (o *RestPerson) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*RestPerson) GetEmailAddressOk ¶

func (o *RestPerson) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPerson) GetName ¶

func (o *RestPerson) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestPerson) GetNameOk ¶

func (o *RestPerson) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPerson) HasAvatarUrl ¶

func (o *RestPerson) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*RestPerson) HasEmailAddress ¶

func (o *RestPerson) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*RestPerson) HasName ¶

func (o *RestPerson) HasName() bool

HasName returns a boolean if a field has been set.

func (RestPerson) MarshalJSON ¶

func (o RestPerson) MarshalJSON() ([]byte, error)

func (*RestPerson) SetAvatarUrl ¶

func (o *RestPerson) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestPerson) SetEmailAddress ¶

func (o *RestPerson) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*RestPerson) SetName ¶

func (o *RestPerson) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestPerson) ToMap ¶

func (o RestPerson) ToMap() (map[string]interface{}, error)

type RestProgress ¶

type RestProgress struct {
	Message    *string `json:"message,omitempty"`
	Percentage *int32  `json:"percentage,omitempty"`
}

RestProgress struct for RestProgress

func NewRestProgress ¶

func NewRestProgress() *RestProgress

NewRestProgress instantiates a new RestProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestProgressWithDefaults ¶

func NewRestProgressWithDefaults() *RestProgress

NewRestProgressWithDefaults instantiates a new RestProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestProgress) GetMessage ¶

func (o *RestProgress) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestProgress) GetMessageOk ¶

func (o *RestProgress) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProgress) GetPercentage ¶

func (o *RestProgress) GetPercentage() int32

GetPercentage returns the Percentage field value if set, zero value otherwise.

func (*RestProgress) GetPercentageOk ¶

func (o *RestProgress) GetPercentageOk() (*int32, bool)

GetPercentageOk returns a tuple with the Percentage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProgress) HasMessage ¶

func (o *RestProgress) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestProgress) HasPercentage ¶

func (o *RestProgress) HasPercentage() bool

HasPercentage returns a boolean if a field has been set.

func (RestProgress) MarshalJSON ¶

func (o RestProgress) MarshalJSON() ([]byte, error)

func (*RestProgress) SetMessage ¶

func (o *RestProgress) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestProgress) SetPercentage ¶

func (o *RestProgress) SetPercentage(v int32)

SetPercentage gets a reference to the given int32 and assigns it to the Percentage field.

func (RestProgress) ToMap ¶

func (o RestProgress) ToMap() (map[string]interface{}, error)

type RestProject ¶

type RestProject struct {
	Name        *string `json:"name,omitempty"`
	Key         *string `json:"key,omitempty"`
	Id          *int32  `json:"id,omitempty"`
	Type        *string `json:"type,omitempty"`
	Public      *bool   `json:"public,omitempty"`
	Description *string `json:"description,omitempty"`
	// Deprecated
	Namespace *string                `json:"namespace,omitempty"`
	Avatar    *string                `json:"avatar,omitempty"`
	AvatarUrl *string                `json:"avatarUrl,omitempty"`
	Scope     *string                `json:"scope,omitempty"`
	Links     map[string]interface{} `json:"links,omitempty"`
}

RestProject struct for RestProject

func NewRestProject ¶

func NewRestProject() *RestProject

NewRestProject instantiates a new RestProject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestProjectWithDefaults ¶

func NewRestProjectWithDefaults() *RestProject

NewRestProjectWithDefaults instantiates a new RestProject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestProject) GetAvatar ¶

func (o *RestProject) GetAvatar() string

GetAvatar returns the Avatar field value if set, zero value otherwise.

func (*RestProject) GetAvatarOk ¶

func (o *RestProject) GetAvatarOk() (*string, bool)

GetAvatarOk returns a tuple with the Avatar field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProject) GetAvatarUrl ¶

func (o *RestProject) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestProject) GetAvatarUrlOk ¶

func (o *RestProject) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProject) GetDescription ¶

func (o *RestProject) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestProject) GetDescriptionOk ¶

func (o *RestProject) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProject) GetId ¶

func (o *RestProject) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestProject) GetIdOk ¶

func (o *RestProject) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProject) GetKey ¶

func (o *RestProject) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*RestProject) GetKeyOk ¶

func (o *RestProject) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestProject) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestProject) GetLinksOk ¶

func (o *RestProject) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProject) GetName ¶

func (o *RestProject) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestProject) GetNameOk ¶

func (o *RestProject) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProject) GetNamespace ¶

func (o *RestProject) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise. Deprecated

func (*RestProject) GetNamespaceOk ¶

func (o *RestProject) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*RestProject) GetPublic ¶

func (o *RestProject) GetPublic() bool

GetPublic returns the Public field value if set, zero value otherwise.

func (*RestProject) GetPublicOk ¶

func (o *RestProject) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProject) GetScope ¶

func (o *RestProject) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestProject) GetScopeOk ¶

func (o *RestProject) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProject) GetType ¶

func (o *RestProject) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestProject) GetTypeOk ¶

func (o *RestProject) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProject) HasAvatar ¶

func (o *RestProject) HasAvatar() bool

HasAvatar returns a boolean if a field has been set.

func (*RestProject) HasAvatarUrl ¶

func (o *RestProject) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*RestProject) HasDescription ¶

func (o *RestProject) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestProject) HasId ¶

func (o *RestProject) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestProject) HasKey ¶

func (o *RestProject) HasKey() bool

HasKey returns a boolean if a field has been set.

func (o *RestProject) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestProject) HasName ¶

func (o *RestProject) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestProject) HasNamespace ¶

func (o *RestProject) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*RestProject) HasPublic ¶

func (o *RestProject) HasPublic() bool

HasPublic returns a boolean if a field has been set.

func (*RestProject) HasScope ¶

func (o *RestProject) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*RestProject) HasType ¶

func (o *RestProject) HasType() bool

HasType returns a boolean if a field has been set.

func (RestProject) MarshalJSON ¶

func (o RestProject) MarshalJSON() ([]byte, error)

func (*RestProject) SetAvatar ¶

func (o *RestProject) SetAvatar(v string)

SetAvatar gets a reference to the given string and assigns it to the Avatar field.

func (*RestProject) SetAvatarUrl ¶

func (o *RestProject) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestProject) SetDescription ¶

func (o *RestProject) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestProject) SetId ¶

func (o *RestProject) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestProject) SetKey ¶

func (o *RestProject) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (o *RestProject) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestProject) SetName ¶

func (o *RestProject) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestProject) SetNamespace ¶

func (o *RestProject) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field. Deprecated

func (*RestProject) SetPublic ¶

func (o *RestProject) SetPublic(v bool)

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (*RestProject) SetScope ¶

func (o *RestProject) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*RestProject) SetType ¶

func (o *RestProject) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestProject) ToMap ¶

func (o RestProject) ToMap() (map[string]interface{}, error)

type RestProjectSettingsRestriction ¶

type RestProjectSettingsRestriction struct {
	ComponentKey   *string                                  `json:"componentKey,omitempty"`
	ProcessedState *string                                  `json:"processedState,omitempty"`
	Project        *RestPullRequestFromRefRepositoryProject `json:"project,omitempty"`
	Namespace      *string                                  `json:"namespace,omitempty"`
	FeatureKey     *string                                  `json:"featureKey,omitempty"`
}

RestProjectSettingsRestriction struct for RestProjectSettingsRestriction

func NewRestProjectSettingsRestriction ¶

func NewRestProjectSettingsRestriction() *RestProjectSettingsRestriction

NewRestProjectSettingsRestriction instantiates a new RestProjectSettingsRestriction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestProjectSettingsRestrictionWithDefaults ¶

func NewRestProjectSettingsRestrictionWithDefaults() *RestProjectSettingsRestriction

NewRestProjectSettingsRestrictionWithDefaults instantiates a new RestProjectSettingsRestriction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestProjectSettingsRestriction) GetComponentKey ¶

func (o *RestProjectSettingsRestriction) GetComponentKey() string

GetComponentKey returns the ComponentKey field value if set, zero value otherwise.

func (*RestProjectSettingsRestriction) GetComponentKeyOk ¶

func (o *RestProjectSettingsRestriction) GetComponentKeyOk() (*string, bool)

GetComponentKeyOk returns a tuple with the ComponentKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProjectSettingsRestriction) GetFeatureKey ¶

func (o *RestProjectSettingsRestriction) GetFeatureKey() string

GetFeatureKey returns the FeatureKey field value if set, zero value otherwise.

func (*RestProjectSettingsRestriction) GetFeatureKeyOk ¶

func (o *RestProjectSettingsRestriction) GetFeatureKeyOk() (*string, bool)

GetFeatureKeyOk returns a tuple with the FeatureKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProjectSettingsRestriction) GetNamespace ¶

func (o *RestProjectSettingsRestriction) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*RestProjectSettingsRestriction) GetNamespaceOk ¶

func (o *RestProjectSettingsRestriction) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProjectSettingsRestriction) GetProcessedState ¶

func (o *RestProjectSettingsRestriction) GetProcessedState() string

GetProcessedState returns the ProcessedState field value if set, zero value otherwise.

func (*RestProjectSettingsRestriction) GetProcessedStateOk ¶

func (o *RestProjectSettingsRestriction) GetProcessedStateOk() (*string, bool)

GetProcessedStateOk returns a tuple with the ProcessedState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProjectSettingsRestriction) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*RestProjectSettingsRestriction) GetProjectOk ¶

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProjectSettingsRestriction) HasComponentKey ¶

func (o *RestProjectSettingsRestriction) HasComponentKey() bool

HasComponentKey returns a boolean if a field has been set.

func (*RestProjectSettingsRestriction) HasFeatureKey ¶

func (o *RestProjectSettingsRestriction) HasFeatureKey() bool

HasFeatureKey returns a boolean if a field has been set.

func (*RestProjectSettingsRestriction) HasNamespace ¶

func (o *RestProjectSettingsRestriction) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*RestProjectSettingsRestriction) HasProcessedState ¶

func (o *RestProjectSettingsRestriction) HasProcessedState() bool

HasProcessedState returns a boolean if a field has been set.

func (*RestProjectSettingsRestriction) HasProject ¶

func (o *RestProjectSettingsRestriction) HasProject() bool

HasProject returns a boolean if a field has been set.

func (RestProjectSettingsRestriction) MarshalJSON ¶

func (o RestProjectSettingsRestriction) MarshalJSON() ([]byte, error)

func (*RestProjectSettingsRestriction) SetComponentKey ¶

func (o *RestProjectSettingsRestriction) SetComponentKey(v string)

SetComponentKey gets a reference to the given string and assigns it to the ComponentKey field.

func (*RestProjectSettingsRestriction) SetFeatureKey ¶

func (o *RestProjectSettingsRestriction) SetFeatureKey(v string)

SetFeatureKey gets a reference to the given string and assigns it to the FeatureKey field.

func (*RestProjectSettingsRestriction) SetNamespace ¶

func (o *RestProjectSettingsRestriction) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*RestProjectSettingsRestriction) SetProcessedState ¶

func (o *RestProjectSettingsRestriction) SetProcessedState(v string)

SetProcessedState gets a reference to the given string and assigns it to the ProcessedState field.

func (*RestProjectSettingsRestriction) SetProject ¶

SetProject gets a reference to the given RestPullRequestFromRefRepositoryProject and assigns it to the Project field.

func (RestProjectSettingsRestriction) ToMap ¶

func (o RestProjectSettingsRestriction) ToMap() (map[string]interface{}, error)

type RestProjectSettingsRestrictionRequest ¶

type RestProjectSettingsRestrictionRequest struct {
	ComponentKey *string `json:"componentKey,omitempty"`
	FeatureKey   string  `json:"featureKey"`
	Namespace    string  `json:"namespace"`
}

RestProjectSettingsRestrictionRequest struct for RestProjectSettingsRestrictionRequest

func NewRestProjectSettingsRestrictionRequest ¶

func NewRestProjectSettingsRestrictionRequest(featureKey string, namespace string) *RestProjectSettingsRestrictionRequest

NewRestProjectSettingsRestrictionRequest instantiates a new RestProjectSettingsRestrictionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestProjectSettingsRestrictionRequestWithDefaults ¶

func NewRestProjectSettingsRestrictionRequestWithDefaults() *RestProjectSettingsRestrictionRequest

NewRestProjectSettingsRestrictionRequestWithDefaults instantiates a new RestProjectSettingsRestrictionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestProjectSettingsRestrictionRequest) GetComponentKey ¶

func (o *RestProjectSettingsRestrictionRequest) GetComponentKey() string

GetComponentKey returns the ComponentKey field value if set, zero value otherwise.

func (*RestProjectSettingsRestrictionRequest) GetComponentKeyOk ¶

func (o *RestProjectSettingsRestrictionRequest) GetComponentKeyOk() (*string, bool)

GetComponentKeyOk returns a tuple with the ComponentKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProjectSettingsRestrictionRequest) GetFeatureKey ¶

func (o *RestProjectSettingsRestrictionRequest) GetFeatureKey() string

GetFeatureKey returns the FeatureKey field value

func (*RestProjectSettingsRestrictionRequest) GetFeatureKeyOk ¶

func (o *RestProjectSettingsRestrictionRequest) GetFeatureKeyOk() (*string, bool)

GetFeatureKeyOk returns a tuple with the FeatureKey field value and a boolean to check if the value has been set.

func (*RestProjectSettingsRestrictionRequest) GetNamespace ¶

GetNamespace returns the Namespace field value

func (*RestProjectSettingsRestrictionRequest) GetNamespaceOk ¶

func (o *RestProjectSettingsRestrictionRequest) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value and a boolean to check if the value has been set.

func (*RestProjectSettingsRestrictionRequest) HasComponentKey ¶

func (o *RestProjectSettingsRestrictionRequest) HasComponentKey() bool

HasComponentKey returns a boolean if a field has been set.

func (RestProjectSettingsRestrictionRequest) MarshalJSON ¶

func (o RestProjectSettingsRestrictionRequest) MarshalJSON() ([]byte, error)

func (*RestProjectSettingsRestrictionRequest) SetComponentKey ¶

func (o *RestProjectSettingsRestrictionRequest) SetComponentKey(v string)

SetComponentKey gets a reference to the given string and assigns it to the ComponentKey field.

func (*RestProjectSettingsRestrictionRequest) SetFeatureKey ¶

func (o *RestProjectSettingsRestrictionRequest) SetFeatureKey(v string)

SetFeatureKey sets field value

func (*RestProjectSettingsRestrictionRequest) SetNamespace ¶

func (o *RestProjectSettingsRestrictionRequest) SetNamespace(v string)

SetNamespace sets field value

func (RestProjectSettingsRestrictionRequest) ToMap ¶

func (o RestProjectSettingsRestrictionRequest) ToMap() (map[string]interface{}, error)

type RestProperties ¶

type RestProperties struct {
	ContentHash     *string `json:"contentHash,omitempty"`
	MetadataHash    *string `json:"metadataHash,omitempty"`
	DefaultBranchId *string `json:"defaultBranchId,omitempty"`
}

RestProperties struct for RestProperties

func NewRestProperties ¶

func NewRestProperties() *RestProperties

NewRestProperties instantiates a new RestProperties object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPropertiesWithDefaults ¶

func NewRestPropertiesWithDefaults() *RestProperties

NewRestPropertiesWithDefaults instantiates a new RestProperties object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestProperties) GetContentHash ¶

func (o *RestProperties) GetContentHash() string

GetContentHash returns the ContentHash field value if set, zero value otherwise.

func (*RestProperties) GetContentHashOk ¶

func (o *RestProperties) GetContentHashOk() (*string, bool)

GetContentHashOk returns a tuple with the ContentHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProperties) GetDefaultBranchId ¶

func (o *RestProperties) GetDefaultBranchId() string

GetDefaultBranchId returns the DefaultBranchId field value if set, zero value otherwise.

func (*RestProperties) GetDefaultBranchIdOk ¶

func (o *RestProperties) GetDefaultBranchIdOk() (*string, bool)

GetDefaultBranchIdOk returns a tuple with the DefaultBranchId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProperties) GetMetadataHash ¶

func (o *RestProperties) GetMetadataHash() string

GetMetadataHash returns the MetadataHash field value if set, zero value otherwise.

func (*RestProperties) GetMetadataHashOk ¶

func (o *RestProperties) GetMetadataHashOk() (*string, bool)

GetMetadataHashOk returns a tuple with the MetadataHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestProperties) HasContentHash ¶

func (o *RestProperties) HasContentHash() bool

HasContentHash returns a boolean if a field has been set.

func (*RestProperties) HasDefaultBranchId ¶

func (o *RestProperties) HasDefaultBranchId() bool

HasDefaultBranchId returns a boolean if a field has been set.

func (*RestProperties) HasMetadataHash ¶

func (o *RestProperties) HasMetadataHash() bool

HasMetadataHash returns a boolean if a field has been set.

func (RestProperties) MarshalJSON ¶

func (o RestProperties) MarshalJSON() ([]byte, error)

func (*RestProperties) SetContentHash ¶

func (o *RestProperties) SetContentHash(v string)

SetContentHash gets a reference to the given string and assigns it to the ContentHash field.

func (*RestProperties) SetDefaultBranchId ¶

func (o *RestProperties) SetDefaultBranchId(v string)

SetDefaultBranchId gets a reference to the given string and assigns it to the DefaultBranchId field.

func (*RestProperties) SetMetadataHash ¶

func (o *RestProperties) SetMetadataHash(v string)

SetMetadataHash gets a reference to the given string and assigns it to the MetadataHash field.

func (RestProperties) ToMap ¶

func (o RestProperties) ToMap() (map[string]interface{}, error)

type RestPullRequest ¶

type RestPullRequest struct {
	Locked          *bool                        `json:"locked,omitempty"`
	Version         *int32                       `json:"version,omitempty"`
	Id              *int64                       `json:"id,omitempty"`
	State           *string                      `json:"state,omitempty"`
	Open            *bool                        `json:"open,omitempty"`
	Description     *string                      `json:"description,omitempty"`
	ClosedDate      *int64                       `json:"closedDate,omitempty"`
	FromRef         *RestPullRequestFromRef      `json:"fromRef,omitempty"`
	Participants    []RestPullRequestParticipant `json:"participants,omitempty"`
	Reviewers       []RestPullRequestParticipant `json:"reviewers,omitempty"`
	UpdatedDate     *int64                       `json:"updatedDate,omitempty"`
	HtmlDescription *string                      `json:"htmlDescription,omitempty"`
	CreatedDate     *int64                       `json:"createdDate,omitempty"`
	Closed          *bool                        `json:"closed,omitempty"`
	Title           *string                      `json:"title,omitempty"`
	ToRef           *RestPullRequestFromRef      `json:"toRef,omitempty"`
	Links           map[string]interface{}       `json:"links,omitempty"`
}

RestPullRequest struct for RestPullRequest

func NewRestPullRequest ¶

func NewRestPullRequest() *RestPullRequest

NewRestPullRequest instantiates a new RestPullRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestWithDefaults ¶

func NewRestPullRequestWithDefaults() *RestPullRequest

NewRestPullRequestWithDefaults instantiates a new RestPullRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequest) GetClosed ¶

func (o *RestPullRequest) GetClosed() bool

GetClosed returns the Closed field value if set, zero value otherwise.

func (*RestPullRequest) GetClosedDate ¶

func (o *RestPullRequest) GetClosedDate() int64

GetClosedDate returns the ClosedDate field value if set, zero value otherwise.

func (*RestPullRequest) GetClosedDateOk ¶

func (o *RestPullRequest) GetClosedDateOk() (*int64, bool)

GetClosedDateOk returns a tuple with the ClosedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetClosedOk ¶

func (o *RestPullRequest) GetClosedOk() (*bool, bool)

GetClosedOk returns a tuple with the Closed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetCreatedDate ¶

func (o *RestPullRequest) GetCreatedDate() int64

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestPullRequest) GetCreatedDateOk ¶

func (o *RestPullRequest) GetCreatedDateOk() (*int64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetDescription ¶

func (o *RestPullRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestPullRequest) GetDescriptionOk ¶

func (o *RestPullRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetFromRef ¶

func (o *RestPullRequest) GetFromRef() RestPullRequestFromRef

GetFromRef returns the FromRef field value if set, zero value otherwise.

func (*RestPullRequest) GetFromRefOk ¶

func (o *RestPullRequest) GetFromRefOk() (*RestPullRequestFromRef, bool)

GetFromRefOk returns a tuple with the FromRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetHtmlDescription ¶

func (o *RestPullRequest) GetHtmlDescription() string

GetHtmlDescription returns the HtmlDescription field value if set, zero value otherwise.

func (*RestPullRequest) GetHtmlDescriptionOk ¶

func (o *RestPullRequest) GetHtmlDescriptionOk() (*string, bool)

GetHtmlDescriptionOk returns a tuple with the HtmlDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetId ¶

func (o *RestPullRequest) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequest) GetIdOk ¶

func (o *RestPullRequest) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestPullRequest) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestPullRequest) GetLinksOk ¶

func (o *RestPullRequest) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetLocked ¶

func (o *RestPullRequest) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*RestPullRequest) GetLockedOk ¶

func (o *RestPullRequest) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetOpen ¶

func (o *RestPullRequest) GetOpen() bool

GetOpen returns the Open field value if set, zero value otherwise.

func (*RestPullRequest) GetOpenOk ¶

func (o *RestPullRequest) GetOpenOk() (*bool, bool)

GetOpenOk returns a tuple with the Open field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetParticipants ¶

func (o *RestPullRequest) GetParticipants() []RestPullRequestParticipant

GetParticipants returns the Participants field value if set, zero value otherwise.

func (*RestPullRequest) GetParticipantsOk ¶

func (o *RestPullRequest) GetParticipantsOk() ([]RestPullRequestParticipant, bool)

GetParticipantsOk returns a tuple with the Participants field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetReviewers ¶

func (o *RestPullRequest) GetReviewers() []RestPullRequestParticipant

GetReviewers returns the Reviewers field value if set, zero value otherwise.

func (*RestPullRequest) GetReviewersOk ¶

func (o *RestPullRequest) GetReviewersOk() ([]RestPullRequestParticipant, bool)

GetReviewersOk returns a tuple with the Reviewers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetState ¶

func (o *RestPullRequest) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestPullRequest) GetStateOk ¶

func (o *RestPullRequest) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetTitle ¶

func (o *RestPullRequest) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*RestPullRequest) GetTitleOk ¶

func (o *RestPullRequest) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetToRef ¶

GetToRef returns the ToRef field value if set, zero value otherwise.

func (*RestPullRequest) GetToRefOk ¶

func (o *RestPullRequest) GetToRefOk() (*RestPullRequestFromRef, bool)

GetToRefOk returns a tuple with the ToRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetUpdatedDate ¶

func (o *RestPullRequest) GetUpdatedDate() int64

GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.

func (*RestPullRequest) GetUpdatedDateOk ¶

func (o *RestPullRequest) GetUpdatedDateOk() (*int64, bool)

GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) GetVersion ¶

func (o *RestPullRequest) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestPullRequest) GetVersionOk ¶

func (o *RestPullRequest) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequest) HasClosed ¶

func (o *RestPullRequest) HasClosed() bool

HasClosed returns a boolean if a field has been set.

func (*RestPullRequest) HasClosedDate ¶

func (o *RestPullRequest) HasClosedDate() bool

HasClosedDate returns a boolean if a field has been set.

func (*RestPullRequest) HasCreatedDate ¶

func (o *RestPullRequest) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestPullRequest) HasDescription ¶

func (o *RestPullRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestPullRequest) HasFromRef ¶

func (o *RestPullRequest) HasFromRef() bool

HasFromRef returns a boolean if a field has been set.

func (*RestPullRequest) HasHtmlDescription ¶

func (o *RestPullRequest) HasHtmlDescription() bool

HasHtmlDescription returns a boolean if a field has been set.

func (*RestPullRequest) HasId ¶

func (o *RestPullRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (o *RestPullRequest) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestPullRequest) HasLocked ¶

func (o *RestPullRequest) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*RestPullRequest) HasOpen ¶

func (o *RestPullRequest) HasOpen() bool

HasOpen returns a boolean if a field has been set.

func (*RestPullRequest) HasParticipants ¶

func (o *RestPullRequest) HasParticipants() bool

HasParticipants returns a boolean if a field has been set.

func (*RestPullRequest) HasReviewers ¶

func (o *RestPullRequest) HasReviewers() bool

HasReviewers returns a boolean if a field has been set.

func (*RestPullRequest) HasState ¶

func (o *RestPullRequest) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestPullRequest) HasTitle ¶

func (o *RestPullRequest) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*RestPullRequest) HasToRef ¶

func (o *RestPullRequest) HasToRef() bool

HasToRef returns a boolean if a field has been set.

func (*RestPullRequest) HasUpdatedDate ¶

func (o *RestPullRequest) HasUpdatedDate() bool

HasUpdatedDate returns a boolean if a field has been set.

func (*RestPullRequest) HasVersion ¶

func (o *RestPullRequest) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestPullRequest) MarshalJSON ¶

func (o RestPullRequest) MarshalJSON() ([]byte, error)

func (*RestPullRequest) SetClosed ¶

func (o *RestPullRequest) SetClosed(v bool)

SetClosed gets a reference to the given bool and assigns it to the Closed field.

func (*RestPullRequest) SetClosedDate ¶

func (o *RestPullRequest) SetClosedDate(v int64)

SetClosedDate gets a reference to the given int64 and assigns it to the ClosedDate field.

func (*RestPullRequest) SetCreatedDate ¶

func (o *RestPullRequest) SetCreatedDate(v int64)

SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.

func (*RestPullRequest) SetDescription ¶

func (o *RestPullRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestPullRequest) SetFromRef ¶

func (o *RestPullRequest) SetFromRef(v RestPullRequestFromRef)

SetFromRef gets a reference to the given RestPullRequestFromRef and assigns it to the FromRef field.

func (*RestPullRequest) SetHtmlDescription ¶

func (o *RestPullRequest) SetHtmlDescription(v string)

SetHtmlDescription gets a reference to the given string and assigns it to the HtmlDescription field.

func (*RestPullRequest) SetId ¶

func (o *RestPullRequest) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (o *RestPullRequest) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestPullRequest) SetLocked ¶

func (o *RestPullRequest) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*RestPullRequest) SetOpen ¶

func (o *RestPullRequest) SetOpen(v bool)

SetOpen gets a reference to the given bool and assigns it to the Open field.

func (*RestPullRequest) SetParticipants ¶

func (o *RestPullRequest) SetParticipants(v []RestPullRequestParticipant)

SetParticipants gets a reference to the given []RestPullRequestParticipant and assigns it to the Participants field.

func (*RestPullRequest) SetReviewers ¶

func (o *RestPullRequest) SetReviewers(v []RestPullRequestParticipant)

SetReviewers gets a reference to the given []RestPullRequestParticipant and assigns it to the Reviewers field.

func (*RestPullRequest) SetState ¶

func (o *RestPullRequest) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestPullRequest) SetTitle ¶

func (o *RestPullRequest) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*RestPullRequest) SetToRef ¶

func (o *RestPullRequest) SetToRef(v RestPullRequestFromRef)

SetToRef gets a reference to the given RestPullRequestFromRef and assigns it to the ToRef field.

func (*RestPullRequest) SetUpdatedDate ¶

func (o *RestPullRequest) SetUpdatedDate(v int64)

SetUpdatedDate gets a reference to the given int64 and assigns it to the UpdatedDate field.

func (*RestPullRequest) SetVersion ¶

func (o *RestPullRequest) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestPullRequest) ToMap ¶

func (o RestPullRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestActivity ¶

type RestPullRequestActivity struct {
	Action      *string                         `json:"action,omitempty"`
	Id          *int64                          `json:"id,omitempty"`
	CreatedDate *int64                          `json:"createdDate,omitempty"`
	User        *RestPullRequestParticipantUser `json:"user,omitempty"`
}

RestPullRequestActivity struct for RestPullRequestActivity

func NewRestPullRequestActivity ¶

func NewRestPullRequestActivity() *RestPullRequestActivity

NewRestPullRequestActivity instantiates a new RestPullRequestActivity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestActivityWithDefaults ¶

func NewRestPullRequestActivityWithDefaults() *RestPullRequestActivity

NewRestPullRequestActivityWithDefaults instantiates a new RestPullRequestActivity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestActivity) GetAction ¶

func (o *RestPullRequestActivity) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*RestPullRequestActivity) GetActionOk ¶

func (o *RestPullRequestActivity) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestActivity) GetCreatedDate ¶

func (o *RestPullRequestActivity) GetCreatedDate() int64

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestPullRequestActivity) GetCreatedDateOk ¶

func (o *RestPullRequestActivity) GetCreatedDateOk() (*int64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestActivity) GetId ¶

func (o *RestPullRequestActivity) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestActivity) GetIdOk ¶

func (o *RestPullRequestActivity) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestActivity) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*RestPullRequestActivity) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestActivity) HasAction ¶

func (o *RestPullRequestActivity) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*RestPullRequestActivity) HasCreatedDate ¶

func (o *RestPullRequestActivity) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestPullRequestActivity) HasId ¶

func (o *RestPullRequestActivity) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestPullRequestActivity) HasUser ¶

func (o *RestPullRequestActivity) HasUser() bool

HasUser returns a boolean if a field has been set.

func (RestPullRequestActivity) MarshalJSON ¶

func (o RestPullRequestActivity) MarshalJSON() ([]byte, error)

func (*RestPullRequestActivity) SetAction ¶

func (o *RestPullRequestActivity) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*RestPullRequestActivity) SetCreatedDate ¶

func (o *RestPullRequestActivity) SetCreatedDate(v int64)

SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.

func (*RestPullRequestActivity) SetId ¶

func (o *RestPullRequestActivity) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestPullRequestActivity) SetUser ¶

SetUser gets a reference to the given RestPullRequestParticipantUser and assigns it to the User field.

func (RestPullRequestActivity) ToMap ¶

func (o RestPullRequestActivity) ToMap() (map[string]interface{}, error)

type RestPullRequestAssignParticipantRoleRequest ¶

type RestPullRequestAssignParticipantRoleRequest struct {
	Role *string                                          `json:"role,omitempty"`
	User *RestPullRequestAssignParticipantRoleRequestUser `json:"user,omitempty"`
}

RestPullRequestAssignParticipantRoleRequest struct for RestPullRequestAssignParticipantRoleRequest

func NewRestPullRequestAssignParticipantRoleRequest ¶

func NewRestPullRequestAssignParticipantRoleRequest() *RestPullRequestAssignParticipantRoleRequest

NewRestPullRequestAssignParticipantRoleRequest instantiates a new RestPullRequestAssignParticipantRoleRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestAssignParticipantRoleRequestWithDefaults ¶

func NewRestPullRequestAssignParticipantRoleRequestWithDefaults() *RestPullRequestAssignParticipantRoleRequest

NewRestPullRequestAssignParticipantRoleRequestWithDefaults instantiates a new RestPullRequestAssignParticipantRoleRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestAssignParticipantRoleRequest) GetRole ¶

GetRole returns the Role field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequest) GetRoleOk ¶

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequest) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequest) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequest) HasRole ¶

HasRole returns a boolean if a field has been set.

func (*RestPullRequestAssignParticipantRoleRequest) HasUser ¶

HasUser returns a boolean if a field has been set.

func (RestPullRequestAssignParticipantRoleRequest) MarshalJSON ¶

func (*RestPullRequestAssignParticipantRoleRequest) SetRole ¶

SetRole gets a reference to the given string and assigns it to the Role field.

func (*RestPullRequestAssignParticipantRoleRequest) SetUser ¶

SetUser gets a reference to the given RestPullRequestAssignParticipantRoleRequestUser and assigns it to the User field.

func (RestPullRequestAssignParticipantRoleRequest) ToMap ¶

func (o RestPullRequestAssignParticipantRoleRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestAssignParticipantRoleRequestUser ¶

type RestPullRequestAssignParticipantRoleRequestUser struct {
	Active       *bool                  `json:"active,omitempty"`
	AvatarUrl    *string                `json:"avatarUrl,omitempty"`
	DisplayName  *string                `json:"displayName,omitempty"`
	EmailAddress *string                `json:"emailAddress,omitempty"`
	Id           *int32                 `json:"id,omitempty"`
	Links        map[string]interface{} `json:"links,omitempty"`
	Name         *string                `json:"name,omitempty"`
	Slug         *string                `json:"slug,omitempty"`
	Type         *string                `json:"type,omitempty"`
}

RestPullRequestAssignParticipantRoleRequestUser struct for RestPullRequestAssignParticipantRoleRequestUser

func NewRestPullRequestAssignParticipantRoleRequestUser ¶

func NewRestPullRequestAssignParticipantRoleRequestUser() *RestPullRequestAssignParticipantRoleRequestUser

NewRestPullRequestAssignParticipantRoleRequestUser instantiates a new RestPullRequestAssignParticipantRoleRequestUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestAssignParticipantRoleRequestUserWithDefaults ¶

func NewRestPullRequestAssignParticipantRoleRequestUserWithDefaults() *RestPullRequestAssignParticipantRoleRequestUser

NewRestPullRequestAssignParticipantRoleRequestUserWithDefaults instantiates a new RestPullRequestAssignParticipantRoleRequestUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestAssignParticipantRoleRequestUser) GetActive ¶

GetActive returns the Active field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetActiveOk ¶

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetAvatarUrl ¶

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetAvatarUrlOk ¶

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetEmailAddress ¶

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetEmailAddressOk ¶

func (o *RestPullRequestAssignParticipantRoleRequestUser) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestPullRequestAssignParticipantRoleRequestUser) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetLinksOk ¶

func (o *RestPullRequestAssignParticipantRoleRequestUser) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetNameOk ¶

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetSlug ¶

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetSlugOk ¶

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestAssignParticipantRoleRequestUser) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) HasActive ¶

HasActive returns a boolean if a field has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) HasAvatarUrl ¶

HasAvatarUrl returns a boolean if a field has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) HasEmailAddress ¶

HasEmailAddress returns a boolean if a field has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) HasId ¶

HasId returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) HasSlug ¶

HasSlug returns a boolean if a field has been set.

func (*RestPullRequestAssignParticipantRoleRequestUser) HasType ¶

HasType returns a boolean if a field has been set.

func (RestPullRequestAssignParticipantRoleRequestUser) MarshalJSON ¶

func (*RestPullRequestAssignParticipantRoleRequestUser) SetActive ¶

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*RestPullRequestAssignParticipantRoleRequestUser) SetAvatarUrl ¶

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestPullRequestAssignParticipantRoleRequestUser) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*RestPullRequestAssignParticipantRoleRequestUser) SetEmailAddress ¶

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*RestPullRequestAssignParticipantRoleRequestUser) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *RestPullRequestAssignParticipantRoleRequestUser) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestPullRequestAssignParticipantRoleRequestUser) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestPullRequestAssignParticipantRoleRequestUser) SetSlug ¶

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestPullRequestAssignParticipantRoleRequestUser) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestAssignParticipantRoleRequestUser) ToMap ¶

func (o RestPullRequestAssignParticipantRoleRequestUser) ToMap() (map[string]interface{}, error)

type RestPullRequestAssignStatusRequest ¶

type RestPullRequestAssignStatusRequest struct {
	Status *string `json:"status,omitempty"`
}

RestPullRequestAssignStatusRequest struct for RestPullRequestAssignStatusRequest

func NewRestPullRequestAssignStatusRequest ¶

func NewRestPullRequestAssignStatusRequest() *RestPullRequestAssignStatusRequest

NewRestPullRequestAssignStatusRequest instantiates a new RestPullRequestAssignStatusRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestAssignStatusRequestWithDefaults ¶

func NewRestPullRequestAssignStatusRequestWithDefaults() *RestPullRequestAssignStatusRequest

NewRestPullRequestAssignStatusRequestWithDefaults instantiates a new RestPullRequestAssignStatusRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestAssignStatusRequest) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*RestPullRequestAssignStatusRequest) GetStatusOk ¶

func (o *RestPullRequestAssignStatusRequest) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAssignStatusRequest) HasStatus ¶

HasStatus returns a boolean if a field has been set.

func (RestPullRequestAssignStatusRequest) MarshalJSON ¶

func (o RestPullRequestAssignStatusRequest) MarshalJSON() ([]byte, error)

func (*RestPullRequestAssignStatusRequest) SetStatus ¶

SetStatus gets a reference to the given string and assigns it to the Status field.

func (RestPullRequestAssignStatusRequest) ToMap ¶

func (o RestPullRequestAssignStatusRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestAutoMergeRequest ¶

type RestPullRequestAutoMergeRequest struct {
	AutoSubject *string `json:"autoSubject,omitempty"`
	Message     *string `json:"message,omitempty"`
	StrategyId  *string `json:"strategyId,omitempty"`
	Version     *int32  `json:"version,omitempty"`
}

RestPullRequestAutoMergeRequest struct for RestPullRequestAutoMergeRequest

func NewRestPullRequestAutoMergeRequest ¶

func NewRestPullRequestAutoMergeRequest() *RestPullRequestAutoMergeRequest

NewRestPullRequestAutoMergeRequest instantiates a new RestPullRequestAutoMergeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestAutoMergeRequestWithDefaults ¶

func NewRestPullRequestAutoMergeRequestWithDefaults() *RestPullRequestAutoMergeRequest

NewRestPullRequestAutoMergeRequestWithDefaults instantiates a new RestPullRequestAutoMergeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestAutoMergeRequest) GetAutoSubject ¶

func (o *RestPullRequestAutoMergeRequest) GetAutoSubject() string

GetAutoSubject returns the AutoSubject field value if set, zero value otherwise.

func (*RestPullRequestAutoMergeRequest) GetAutoSubjectOk ¶

func (o *RestPullRequestAutoMergeRequest) GetAutoSubjectOk() (*string, bool)

GetAutoSubjectOk returns a tuple with the AutoSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAutoMergeRequest) GetMessage ¶

func (o *RestPullRequestAutoMergeRequest) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestPullRequestAutoMergeRequest) GetMessageOk ¶

func (o *RestPullRequestAutoMergeRequest) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAutoMergeRequest) GetStrategyId ¶

func (o *RestPullRequestAutoMergeRequest) GetStrategyId() string

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*RestPullRequestAutoMergeRequest) GetStrategyIdOk ¶

func (o *RestPullRequestAutoMergeRequest) GetStrategyIdOk() (*string, bool)

GetStrategyIdOk returns a tuple with the StrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAutoMergeRequest) GetVersion ¶

func (o *RestPullRequestAutoMergeRequest) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestPullRequestAutoMergeRequest) GetVersionOk ¶

func (o *RestPullRequestAutoMergeRequest) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestAutoMergeRequest) HasAutoSubject ¶

func (o *RestPullRequestAutoMergeRequest) HasAutoSubject() bool

HasAutoSubject returns a boolean if a field has been set.

func (*RestPullRequestAutoMergeRequest) HasMessage ¶

func (o *RestPullRequestAutoMergeRequest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestPullRequestAutoMergeRequest) HasStrategyId ¶

func (o *RestPullRequestAutoMergeRequest) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*RestPullRequestAutoMergeRequest) HasVersion ¶

func (o *RestPullRequestAutoMergeRequest) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestPullRequestAutoMergeRequest) MarshalJSON ¶

func (o RestPullRequestAutoMergeRequest) MarshalJSON() ([]byte, error)

func (*RestPullRequestAutoMergeRequest) SetAutoSubject ¶

func (o *RestPullRequestAutoMergeRequest) SetAutoSubject(v string)

SetAutoSubject gets a reference to the given string and assigns it to the AutoSubject field.

func (*RestPullRequestAutoMergeRequest) SetMessage ¶

func (o *RestPullRequestAutoMergeRequest) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestPullRequestAutoMergeRequest) SetStrategyId ¶

func (o *RestPullRequestAutoMergeRequest) SetStrategyId(v string)

SetStrategyId gets a reference to the given string and assigns it to the StrategyId field.

func (*RestPullRequestAutoMergeRequest) SetVersion ¶

func (o *RestPullRequestAutoMergeRequest) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestPullRequestAutoMergeRequest) ToMap ¶

func (o RestPullRequestAutoMergeRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestCommitMessageTemplate ¶

type RestPullRequestCommitMessageTemplate struct {
	Title *string `json:"title,omitempty"`
	Body  *string `json:"body,omitempty"`
}

RestPullRequestCommitMessageTemplate struct for RestPullRequestCommitMessageTemplate

func NewRestPullRequestCommitMessageTemplate ¶

func NewRestPullRequestCommitMessageTemplate() *RestPullRequestCommitMessageTemplate

NewRestPullRequestCommitMessageTemplate instantiates a new RestPullRequestCommitMessageTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestCommitMessageTemplateWithDefaults ¶

func NewRestPullRequestCommitMessageTemplateWithDefaults() *RestPullRequestCommitMessageTemplate

NewRestPullRequestCommitMessageTemplateWithDefaults instantiates a new RestPullRequestCommitMessageTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestCommitMessageTemplate) GetBody ¶

GetBody returns the Body field value if set, zero value otherwise.

func (*RestPullRequestCommitMessageTemplate) GetBodyOk ¶

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestCommitMessageTemplate) GetTitle ¶

GetTitle returns the Title field value if set, zero value otherwise.

func (*RestPullRequestCommitMessageTemplate) GetTitleOk ¶

func (o *RestPullRequestCommitMessageTemplate) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestCommitMessageTemplate) HasBody ¶

HasBody returns a boolean if a field has been set.

func (*RestPullRequestCommitMessageTemplate) HasTitle ¶

HasTitle returns a boolean if a field has been set.

func (RestPullRequestCommitMessageTemplate) MarshalJSON ¶

func (o RestPullRequestCommitMessageTemplate) MarshalJSON() ([]byte, error)

func (*RestPullRequestCommitMessageTemplate) SetBody ¶

SetBody gets a reference to the given string and assigns it to the Body field.

func (*RestPullRequestCommitMessageTemplate) SetTitle ¶

SetTitle gets a reference to the given string and assigns it to the Title field.

func (RestPullRequestCommitMessageTemplate) ToMap ¶

func (o RestPullRequestCommitMessageTemplate) ToMap() (map[string]interface{}, error)

type RestPullRequestCondition ¶

type RestPullRequestCondition struct {
	Id                *int32                                `json:"id,omitempty"`
	RequiredApprovals *int32                                `json:"requiredApprovals,omitempty"`
	SourceRefMatcher  *RestRequiredBuildConditionRefMatcher `json:"sourceRefMatcher,omitempty"`
	TargetRefMatcher  *RestRequiredBuildConditionRefMatcher `json:"targetRefMatcher,omitempty"`
	Reviewers         []RestApplicationUser                 `json:"reviewers,omitempty"`
	Scope             *RestPullRequestConditionScope        `json:"scope,omitempty"`
}

RestPullRequestCondition struct for RestPullRequestCondition

func NewRestPullRequestCondition ¶

func NewRestPullRequestCondition() *RestPullRequestCondition

NewRestPullRequestCondition instantiates a new RestPullRequestCondition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestConditionWithDefaults ¶

func NewRestPullRequestConditionWithDefaults() *RestPullRequestCondition

NewRestPullRequestConditionWithDefaults instantiates a new RestPullRequestCondition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestCondition) GetId ¶

func (o *RestPullRequestCondition) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestCondition) GetIdOk ¶

func (o *RestPullRequestCondition) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestCondition) GetRequiredApprovals ¶

func (o *RestPullRequestCondition) GetRequiredApprovals() int32

GetRequiredApprovals returns the RequiredApprovals field value if set, zero value otherwise.

func (*RestPullRequestCondition) GetRequiredApprovalsOk ¶

func (o *RestPullRequestCondition) GetRequiredApprovalsOk() (*int32, bool)

GetRequiredApprovalsOk returns a tuple with the RequiredApprovals field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestCondition) GetReviewers ¶

func (o *RestPullRequestCondition) GetReviewers() []RestApplicationUser

GetReviewers returns the Reviewers field value if set, zero value otherwise.

func (*RestPullRequestCondition) GetReviewersOk ¶

func (o *RestPullRequestCondition) GetReviewersOk() ([]RestApplicationUser, bool)

GetReviewersOk returns a tuple with the Reviewers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestCondition) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestPullRequestCondition) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestCondition) GetSourceRefMatcher ¶

GetSourceRefMatcher returns the SourceRefMatcher field value if set, zero value otherwise.

func (*RestPullRequestCondition) GetSourceRefMatcherOk ¶

GetSourceRefMatcherOk returns a tuple with the SourceRefMatcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestCondition) GetTargetRefMatcher ¶

GetTargetRefMatcher returns the TargetRefMatcher field value if set, zero value otherwise.

func (*RestPullRequestCondition) GetTargetRefMatcherOk ¶

GetTargetRefMatcherOk returns a tuple with the TargetRefMatcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestCondition) HasId ¶

func (o *RestPullRequestCondition) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestPullRequestCondition) HasRequiredApprovals ¶

func (o *RestPullRequestCondition) HasRequiredApprovals() bool

HasRequiredApprovals returns a boolean if a field has been set.

func (*RestPullRequestCondition) HasReviewers ¶

func (o *RestPullRequestCondition) HasReviewers() bool

HasReviewers returns a boolean if a field has been set.

func (*RestPullRequestCondition) HasScope ¶

func (o *RestPullRequestCondition) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*RestPullRequestCondition) HasSourceRefMatcher ¶

func (o *RestPullRequestCondition) HasSourceRefMatcher() bool

HasSourceRefMatcher returns a boolean if a field has been set.

func (*RestPullRequestCondition) HasTargetRefMatcher ¶

func (o *RestPullRequestCondition) HasTargetRefMatcher() bool

HasTargetRefMatcher returns a boolean if a field has been set.

func (RestPullRequestCondition) MarshalJSON ¶

func (o RestPullRequestCondition) MarshalJSON() ([]byte, error)

func (*RestPullRequestCondition) SetId ¶

func (o *RestPullRequestCondition) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestPullRequestCondition) SetRequiredApprovals ¶

func (o *RestPullRequestCondition) SetRequiredApprovals(v int32)

SetRequiredApprovals gets a reference to the given int32 and assigns it to the RequiredApprovals field.

func (*RestPullRequestCondition) SetReviewers ¶

func (o *RestPullRequestCondition) SetReviewers(v []RestApplicationUser)

SetReviewers gets a reference to the given []RestApplicationUser and assigns it to the Reviewers field.

func (*RestPullRequestCondition) SetScope ¶

SetScope gets a reference to the given RestPullRequestConditionScope and assigns it to the Scope field.

func (*RestPullRequestCondition) SetSourceRefMatcher ¶

SetSourceRefMatcher gets a reference to the given RestRequiredBuildConditionRefMatcher and assigns it to the SourceRefMatcher field.

func (*RestPullRequestCondition) SetTargetRefMatcher ¶

SetTargetRefMatcher gets a reference to the given RestRequiredBuildConditionRefMatcher and assigns it to the TargetRefMatcher field.

func (RestPullRequestCondition) ToMap ¶

func (o RestPullRequestCondition) ToMap() (map[string]interface{}, error)

type RestPullRequestConditionScope ¶

type RestPullRequestConditionScope struct {
	Type       *string `json:"type,omitempty"`
	ResourceId *int32  `json:"resourceId,omitempty"`
}

RestPullRequestConditionScope struct for RestPullRequestConditionScope

func NewRestPullRequestConditionScope ¶

func NewRestPullRequestConditionScope() *RestPullRequestConditionScope

NewRestPullRequestConditionScope instantiates a new RestPullRequestConditionScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestConditionScopeWithDefaults ¶

func NewRestPullRequestConditionScopeWithDefaults() *RestPullRequestConditionScope

NewRestPullRequestConditionScopeWithDefaults instantiates a new RestPullRequestConditionScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestConditionScope) GetResourceId ¶

func (o *RestPullRequestConditionScope) GetResourceId() int32

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*RestPullRequestConditionScope) GetResourceIdOk ¶

func (o *RestPullRequestConditionScope) GetResourceIdOk() (*int32, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestConditionScope) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestConditionScope) GetTypeOk ¶

func (o *RestPullRequestConditionScope) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestConditionScope) HasResourceId ¶

func (o *RestPullRequestConditionScope) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (*RestPullRequestConditionScope) HasType ¶

func (o *RestPullRequestConditionScope) HasType() bool

HasType returns a boolean if a field has been set.

func (RestPullRequestConditionScope) MarshalJSON ¶

func (o RestPullRequestConditionScope) MarshalJSON() ([]byte, error)

func (*RestPullRequestConditionScope) SetResourceId ¶

func (o *RestPullRequestConditionScope) SetResourceId(v int32)

SetResourceId gets a reference to the given int32 and assigns it to the ResourceId field.

func (*RestPullRequestConditionScope) SetType ¶

func (o *RestPullRequestConditionScope) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestConditionScope) ToMap ¶

func (o RestPullRequestConditionScope) ToMap() (map[string]interface{}, error)

type RestPullRequestDeclineRequest ¶

type RestPullRequestDeclineRequest struct {
	Comment *string `json:"comment,omitempty"`
	Version *int32  `json:"version,omitempty"`
}

RestPullRequestDeclineRequest struct for RestPullRequestDeclineRequest

func NewRestPullRequestDeclineRequest ¶

func NewRestPullRequestDeclineRequest() *RestPullRequestDeclineRequest

NewRestPullRequestDeclineRequest instantiates a new RestPullRequestDeclineRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestDeclineRequestWithDefaults ¶

func NewRestPullRequestDeclineRequestWithDefaults() *RestPullRequestDeclineRequest

NewRestPullRequestDeclineRequestWithDefaults instantiates a new RestPullRequestDeclineRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestDeclineRequest) GetComment ¶

func (o *RestPullRequestDeclineRequest) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*RestPullRequestDeclineRequest) GetCommentOk ¶

func (o *RestPullRequestDeclineRequest) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestDeclineRequest) GetVersion ¶

func (o *RestPullRequestDeclineRequest) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestPullRequestDeclineRequest) GetVersionOk ¶

func (o *RestPullRequestDeclineRequest) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestDeclineRequest) HasComment ¶

func (o *RestPullRequestDeclineRequest) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*RestPullRequestDeclineRequest) HasVersion ¶

func (o *RestPullRequestDeclineRequest) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestPullRequestDeclineRequest) MarshalJSON ¶

func (o RestPullRequestDeclineRequest) MarshalJSON() ([]byte, error)

func (*RestPullRequestDeclineRequest) SetComment ¶

func (o *RestPullRequestDeclineRequest) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*RestPullRequestDeclineRequest) SetVersion ¶

func (o *RestPullRequestDeclineRequest) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestPullRequestDeclineRequest) ToMap ¶

func (o RestPullRequestDeclineRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestDeleteRequest ¶

type RestPullRequestDeleteRequest struct {
	Version *int32 `json:"version,omitempty"`
}

RestPullRequestDeleteRequest struct for RestPullRequestDeleteRequest

func NewRestPullRequestDeleteRequest ¶

func NewRestPullRequestDeleteRequest() *RestPullRequestDeleteRequest

NewRestPullRequestDeleteRequest instantiates a new RestPullRequestDeleteRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestDeleteRequestWithDefaults ¶

func NewRestPullRequestDeleteRequestWithDefaults() *RestPullRequestDeleteRequest

NewRestPullRequestDeleteRequestWithDefaults instantiates a new RestPullRequestDeleteRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestDeleteRequest) GetVersion ¶

func (o *RestPullRequestDeleteRequest) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestPullRequestDeleteRequest) GetVersionOk ¶

func (o *RestPullRequestDeleteRequest) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestDeleteRequest) HasVersion ¶

func (o *RestPullRequestDeleteRequest) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestPullRequestDeleteRequest) MarshalJSON ¶

func (o RestPullRequestDeleteRequest) MarshalJSON() ([]byte, error)

func (*RestPullRequestDeleteRequest) SetVersion ¶

func (o *RestPullRequestDeleteRequest) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestPullRequestDeleteRequest) ToMap ¶

func (o RestPullRequestDeleteRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestFinishReviewRequest ¶

type RestPullRequestFinishReviewRequest struct {
	CommentText       *string `json:"commentText,omitempty"`
	ParticipantStatus *string `json:"participantStatus,omitempty"`
}

RestPullRequestFinishReviewRequest struct for RestPullRequestFinishReviewRequest

func NewRestPullRequestFinishReviewRequest ¶

func NewRestPullRequestFinishReviewRequest() *RestPullRequestFinishReviewRequest

NewRestPullRequestFinishReviewRequest instantiates a new RestPullRequestFinishReviewRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestFinishReviewRequestWithDefaults ¶

func NewRestPullRequestFinishReviewRequestWithDefaults() *RestPullRequestFinishReviewRequest

NewRestPullRequestFinishReviewRequestWithDefaults instantiates a new RestPullRequestFinishReviewRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestFinishReviewRequest) GetCommentText ¶

func (o *RestPullRequestFinishReviewRequest) GetCommentText() string

GetCommentText returns the CommentText field value if set, zero value otherwise.

func (*RestPullRequestFinishReviewRequest) GetCommentTextOk ¶

func (o *RestPullRequestFinishReviewRequest) GetCommentTextOk() (*string, bool)

GetCommentTextOk returns a tuple with the CommentText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFinishReviewRequest) GetParticipantStatus ¶

func (o *RestPullRequestFinishReviewRequest) GetParticipantStatus() string

GetParticipantStatus returns the ParticipantStatus field value if set, zero value otherwise.

func (*RestPullRequestFinishReviewRequest) GetParticipantStatusOk ¶

func (o *RestPullRequestFinishReviewRequest) GetParticipantStatusOk() (*string, bool)

GetParticipantStatusOk returns a tuple with the ParticipantStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFinishReviewRequest) HasCommentText ¶

func (o *RestPullRequestFinishReviewRequest) HasCommentText() bool

HasCommentText returns a boolean if a field has been set.

func (*RestPullRequestFinishReviewRequest) HasParticipantStatus ¶

func (o *RestPullRequestFinishReviewRequest) HasParticipantStatus() bool

HasParticipantStatus returns a boolean if a field has been set.

func (RestPullRequestFinishReviewRequest) MarshalJSON ¶

func (o RestPullRequestFinishReviewRequest) MarshalJSON() ([]byte, error)

func (*RestPullRequestFinishReviewRequest) SetCommentText ¶

func (o *RestPullRequestFinishReviewRequest) SetCommentText(v string)

SetCommentText gets a reference to the given string and assigns it to the CommentText field.

func (*RestPullRequestFinishReviewRequest) SetParticipantStatus ¶

func (o *RestPullRequestFinishReviewRequest) SetParticipantStatus(v string)

SetParticipantStatus gets a reference to the given string and assigns it to the ParticipantStatus field.

func (RestPullRequestFinishReviewRequest) ToMap ¶

func (o RestPullRequestFinishReviewRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestFromRef ¶

type RestPullRequestFromRef struct {
	Id           *string                           `json:"id,omitempty"`
	Type         *string                           `json:"type,omitempty"`
	Repository   *RestPullRequestFromRefRepository `json:"repository,omitempty"`
	DisplayId    *string                           `json:"displayId,omitempty"`
	LatestCommit *string                           `json:"latestCommit,omitempty"`
}

RestPullRequestFromRef struct for RestPullRequestFromRef

func NewRestPullRequestFromRef ¶

func NewRestPullRequestFromRef() *RestPullRequestFromRef

NewRestPullRequestFromRef instantiates a new RestPullRequestFromRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestFromRefWithDefaults ¶

func NewRestPullRequestFromRefWithDefaults() *RestPullRequestFromRef

NewRestPullRequestFromRefWithDefaults instantiates a new RestPullRequestFromRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestFromRef) GetDisplayId ¶

func (o *RestPullRequestFromRef) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestPullRequestFromRef) GetDisplayIdOk ¶

func (o *RestPullRequestFromRef) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRef) GetId ¶

func (o *RestPullRequestFromRef) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestFromRef) GetIdOk ¶

func (o *RestPullRequestFromRef) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRef) GetLatestCommit ¶

func (o *RestPullRequestFromRef) GetLatestCommit() string

GetLatestCommit returns the LatestCommit field value if set, zero value otherwise.

func (*RestPullRequestFromRef) GetLatestCommitOk ¶

func (o *RestPullRequestFromRef) GetLatestCommitOk() (*string, bool)

GetLatestCommitOk returns a tuple with the LatestCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRef) GetRepository ¶

GetRepository returns the Repository field value if set, zero value otherwise.

func (*RestPullRequestFromRef) GetRepositoryOk ¶

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRef) GetType ¶

func (o *RestPullRequestFromRef) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestFromRef) GetTypeOk ¶

func (o *RestPullRequestFromRef) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRef) HasDisplayId ¶

func (o *RestPullRequestFromRef) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestPullRequestFromRef) HasId ¶

func (o *RestPullRequestFromRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestPullRequestFromRef) HasLatestCommit ¶

func (o *RestPullRequestFromRef) HasLatestCommit() bool

HasLatestCommit returns a boolean if a field has been set.

func (*RestPullRequestFromRef) HasRepository ¶

func (o *RestPullRequestFromRef) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*RestPullRequestFromRef) HasType ¶

func (o *RestPullRequestFromRef) HasType() bool

HasType returns a boolean if a field has been set.

func (RestPullRequestFromRef) MarshalJSON ¶

func (o RestPullRequestFromRef) MarshalJSON() ([]byte, error)

func (*RestPullRequestFromRef) SetDisplayId ¶

func (o *RestPullRequestFromRef) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestPullRequestFromRef) SetId ¶

func (o *RestPullRequestFromRef) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestPullRequestFromRef) SetLatestCommit ¶

func (o *RestPullRequestFromRef) SetLatestCommit(v string)

SetLatestCommit gets a reference to the given string and assigns it to the LatestCommit field.

func (*RestPullRequestFromRef) SetRepository ¶

SetRepository gets a reference to the given RestPullRequestFromRefRepository and assigns it to the Repository field.

func (*RestPullRequestFromRef) SetType ¶

func (o *RestPullRequestFromRef) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestFromRef) ToMap ¶

func (o RestPullRequestFromRef) ToMap() (map[string]interface{}, error)

type RestPullRequestFromRefRepository ¶

type RestPullRequestFromRefRepository struct {
	Name          *string                                  `json:"name,omitempty"`
	Id            *int32                                   `json:"id,omitempty"`
	State         *string                                  `json:"state,omitempty"`
	Public        *bool                                    `json:"public,omitempty"`
	Project       *RestPullRequestFromRefRepositoryProject `json:"project,omitempty"`
	Description   *string                                  `json:"description,omitempty"`
	DefaultBranch *string                                  `json:"defaultBranch,omitempty"`
	RelatedLinks  map[string]interface{}                   `json:"relatedLinks,omitempty"`
	Partition     *int32                                   `json:"partition,omitempty"`
	Origin        *RestPullRequestFromRefRepositoryOrigin  `json:"origin,omitempty"`
	HierarchyId   *string                                  `json:"hierarchyId,omitempty"`
	StatusMessage *string                                  `json:"statusMessage,omitempty"`
	Archived      *bool                                    `json:"archived,omitempty"`
	Forkable      *bool                                    `json:"forkable,omitempty"`
	ScmId         *string                                  `json:"scmId,omitempty"`
	Slug          *string                                  `json:"slug,omitempty"`
	Scope         *string                                  `json:"scope,omitempty"`
	Links         map[string]interface{}                   `json:"links,omitempty"`
}

RestPullRequestFromRefRepository struct for RestPullRequestFromRefRepository

func NewRestPullRequestFromRefRepository ¶

func NewRestPullRequestFromRefRepository() *RestPullRequestFromRefRepository

NewRestPullRequestFromRefRepository instantiates a new RestPullRequestFromRefRepository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestFromRefRepositoryWithDefaults ¶

func NewRestPullRequestFromRefRepositoryWithDefaults() *RestPullRequestFromRefRepository

NewRestPullRequestFromRefRepositoryWithDefaults instantiates a new RestPullRequestFromRefRepository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestFromRefRepository) GetArchived ¶

func (o *RestPullRequestFromRefRepository) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetArchivedOk ¶

func (o *RestPullRequestFromRefRepository) GetArchivedOk() (*bool, bool)

GetArchivedOk returns a tuple with the Archived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetDefaultBranch ¶

func (o *RestPullRequestFromRefRepository) GetDefaultBranch() string

GetDefaultBranch returns the DefaultBranch field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetDefaultBranchOk ¶

func (o *RestPullRequestFromRefRepository) GetDefaultBranchOk() (*string, bool)

GetDefaultBranchOk returns a tuple with the DefaultBranch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetDescription ¶

func (o *RestPullRequestFromRefRepository) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetDescriptionOk ¶

func (o *RestPullRequestFromRefRepository) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetForkable ¶

func (o *RestPullRequestFromRefRepository) GetForkable() bool

GetForkable returns the Forkable field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetForkableOk ¶

func (o *RestPullRequestFromRefRepository) GetForkableOk() (*bool, bool)

GetForkableOk returns a tuple with the Forkable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetHierarchyId ¶

func (o *RestPullRequestFromRefRepository) GetHierarchyId() string

GetHierarchyId returns the HierarchyId field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetHierarchyIdOk ¶

func (o *RestPullRequestFromRefRepository) GetHierarchyIdOk() (*string, bool)

GetHierarchyIdOk returns a tuple with the HierarchyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetIdOk ¶

func (o *RestPullRequestFromRefRepository) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestPullRequestFromRefRepository) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetLinksOk ¶

func (o *RestPullRequestFromRefRepository) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetNameOk ¶

func (o *RestPullRequestFromRefRepository) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetOrigin ¶

GetOrigin returns the Origin field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetOriginOk ¶

GetOriginOk returns a tuple with the Origin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetPartition ¶

func (o *RestPullRequestFromRefRepository) GetPartition() int32

GetPartition returns the Partition field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetPartitionOk ¶

func (o *RestPullRequestFromRefRepository) GetPartitionOk() (*int32, bool)

GetPartitionOk returns a tuple with the Partition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetProjectOk ¶

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetPublic ¶

func (o *RestPullRequestFromRefRepository) GetPublic() bool

GetPublic returns the Public field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetPublicOk ¶

func (o *RestPullRequestFromRefRepository) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestPullRequestFromRefRepository) GetRelatedLinks() map[string]interface{}

GetRelatedLinks returns the RelatedLinks field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetRelatedLinksOk ¶

func (o *RestPullRequestFromRefRepository) GetRelatedLinksOk() (map[string]interface{}, bool)

GetRelatedLinksOk returns a tuple with the RelatedLinks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetScmId ¶

GetScmId returns the ScmId field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetScmIdOk ¶

func (o *RestPullRequestFromRefRepository) GetScmIdOk() (*string, bool)

GetScmIdOk returns a tuple with the ScmId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetScopeOk ¶

func (o *RestPullRequestFromRefRepository) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetSlug ¶

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetSlugOk ¶

func (o *RestPullRequestFromRefRepository) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetState ¶

GetState returns the State field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetStateOk ¶

func (o *RestPullRequestFromRefRepository) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) GetStatusMessage ¶

func (o *RestPullRequestFromRefRepository) GetStatusMessage() string

GetStatusMessage returns the StatusMessage field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepository) GetStatusMessageOk ¶

func (o *RestPullRequestFromRefRepository) GetStatusMessageOk() (*string, bool)

GetStatusMessageOk returns a tuple with the StatusMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepository) HasArchived ¶

func (o *RestPullRequestFromRefRepository) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasDefaultBranch ¶

func (o *RestPullRequestFromRefRepository) HasDefaultBranch() bool

HasDefaultBranch returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasDescription ¶

func (o *RestPullRequestFromRefRepository) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasForkable ¶

func (o *RestPullRequestFromRefRepository) HasForkable() bool

HasForkable returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasHierarchyId ¶

func (o *RestPullRequestFromRefRepository) HasHierarchyId() bool

HasHierarchyId returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasId ¶

HasId returns a boolean if a field has been set.

func (o *RestPullRequestFromRefRepository) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasOrigin ¶

func (o *RestPullRequestFromRefRepository) HasOrigin() bool

HasOrigin returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasPartition ¶

func (o *RestPullRequestFromRefRepository) HasPartition() bool

HasPartition returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasProject ¶

func (o *RestPullRequestFromRefRepository) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasPublic ¶

func (o *RestPullRequestFromRefRepository) HasPublic() bool

HasPublic returns a boolean if a field has been set.

func (o *RestPullRequestFromRefRepository) HasRelatedLinks() bool

HasRelatedLinks returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasScmId ¶

func (o *RestPullRequestFromRefRepository) HasScmId() bool

HasScmId returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasScope ¶

func (o *RestPullRequestFromRefRepository) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasSlug ¶

HasSlug returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasState ¶

func (o *RestPullRequestFromRefRepository) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepository) HasStatusMessage ¶

func (o *RestPullRequestFromRefRepository) HasStatusMessage() bool

HasStatusMessage returns a boolean if a field has been set.

func (RestPullRequestFromRefRepository) MarshalJSON ¶

func (o RestPullRequestFromRefRepository) MarshalJSON() ([]byte, error)

func (*RestPullRequestFromRefRepository) SetArchived ¶

func (o *RestPullRequestFromRefRepository) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*RestPullRequestFromRefRepository) SetDefaultBranch ¶

func (o *RestPullRequestFromRefRepository) SetDefaultBranch(v string)

SetDefaultBranch gets a reference to the given string and assigns it to the DefaultBranch field.

func (*RestPullRequestFromRefRepository) SetDescription ¶

func (o *RestPullRequestFromRefRepository) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestPullRequestFromRefRepository) SetForkable ¶

func (o *RestPullRequestFromRefRepository) SetForkable(v bool)

SetForkable gets a reference to the given bool and assigns it to the Forkable field.

func (*RestPullRequestFromRefRepository) SetHierarchyId ¶

func (o *RestPullRequestFromRefRepository) SetHierarchyId(v string)

SetHierarchyId gets a reference to the given string and assigns it to the HierarchyId field.

func (*RestPullRequestFromRefRepository) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *RestPullRequestFromRefRepository) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestPullRequestFromRefRepository) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestPullRequestFromRefRepository) SetOrigin ¶

SetOrigin gets a reference to the given RestPullRequestFromRefRepositoryOrigin and assigns it to the Origin field.

func (*RestPullRequestFromRefRepository) SetPartition ¶

func (o *RestPullRequestFromRefRepository) SetPartition(v int32)

SetPartition gets a reference to the given int32 and assigns it to the Partition field.

func (*RestPullRequestFromRefRepository) SetProject ¶

SetProject gets a reference to the given RestPullRequestFromRefRepositoryProject and assigns it to the Project field.

func (*RestPullRequestFromRefRepository) SetPublic ¶

func (o *RestPullRequestFromRefRepository) SetPublic(v bool)

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (o *RestPullRequestFromRefRepository) SetRelatedLinks(v map[string]interface{})

SetRelatedLinks gets a reference to the given map[string]interface{} and assigns it to the RelatedLinks field.

func (*RestPullRequestFromRefRepository) SetScmId ¶

SetScmId gets a reference to the given string and assigns it to the ScmId field.

func (*RestPullRequestFromRefRepository) SetScope ¶

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*RestPullRequestFromRefRepository) SetSlug ¶

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestPullRequestFromRefRepository) SetState ¶

SetState gets a reference to the given string and assigns it to the State field.

func (*RestPullRequestFromRefRepository) SetStatusMessage ¶

func (o *RestPullRequestFromRefRepository) SetStatusMessage(v string)

SetStatusMessage gets a reference to the given string and assigns it to the StatusMessage field.

func (RestPullRequestFromRefRepository) ToMap ¶

func (o RestPullRequestFromRefRepository) ToMap() (map[string]interface{}, error)

type RestPullRequestFromRefRepositoryOrigin ¶

type RestPullRequestFromRefRepositoryOrigin struct {
	Name          *string                                  `json:"name,omitempty"`
	Id            *int32                                   `json:"id,omitempty"`
	State         *string                                  `json:"state,omitempty"`
	Public        *bool                                    `json:"public,omitempty"`
	Project       *RestPullRequestFromRefRepositoryProject `json:"project,omitempty"`
	Description   *string                                  `json:"description,omitempty"`
	DefaultBranch *string                                  `json:"defaultBranch,omitempty"`
	RelatedLinks  map[string]interface{}                   `json:"relatedLinks,omitempty"`
	Partition     *int32                                   `json:"partition,omitempty"`
	HierarchyId   *string                                  `json:"hierarchyId,omitempty"`
	StatusMessage *string                                  `json:"statusMessage,omitempty"`
	Archived      *bool                                    `json:"archived,omitempty"`
	Forkable      *bool                                    `json:"forkable,omitempty"`
	ScmId         *string                                  `json:"scmId,omitempty"`
	Slug          *string                                  `json:"slug,omitempty"`
	Scope         *string                                  `json:"scope,omitempty"`
	Links         map[string]interface{}                   `json:"links,omitempty"`
}

RestPullRequestFromRefRepositoryOrigin struct for RestPullRequestFromRefRepositoryOrigin

func NewRestPullRequestFromRefRepositoryOrigin ¶

func NewRestPullRequestFromRefRepositoryOrigin() *RestPullRequestFromRefRepositoryOrigin

NewRestPullRequestFromRefRepositoryOrigin instantiates a new RestPullRequestFromRefRepositoryOrigin object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestFromRefRepositoryOriginWithDefaults ¶

func NewRestPullRequestFromRefRepositoryOriginWithDefaults() *RestPullRequestFromRefRepositoryOrigin

NewRestPullRequestFromRefRepositoryOriginWithDefaults instantiates a new RestPullRequestFromRefRepositoryOrigin object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestFromRefRepositoryOrigin) GetArchived ¶

GetArchived returns the Archived field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetArchivedOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetArchivedOk() (*bool, bool)

GetArchivedOk returns a tuple with the Archived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetDefaultBranch ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetDefaultBranch() string

GetDefaultBranch returns the DefaultBranch field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetDefaultBranchOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetDefaultBranchOk() (*string, bool)

GetDefaultBranchOk returns a tuple with the DefaultBranch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetDescription ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetDescriptionOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetForkable ¶

GetForkable returns the Forkable field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetForkableOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetForkableOk() (*bool, bool)

GetForkableOk returns a tuple with the Forkable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetHierarchyId ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetHierarchyId() string

GetHierarchyId returns the HierarchyId field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetHierarchyIdOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetHierarchyIdOk() (*string, bool)

GetHierarchyIdOk returns a tuple with the HierarchyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestPullRequestFromRefRepositoryOrigin) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetLinksOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetNameOk ¶

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetPartition ¶

GetPartition returns the Partition field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetPartitionOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetPartitionOk() (*int32, bool)

GetPartitionOk returns a tuple with the Partition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetProjectOk ¶

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetPublic ¶

GetPublic returns the Public field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetPublicOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestPullRequestFromRefRepositoryOrigin) GetRelatedLinks() map[string]interface{}

GetRelatedLinks returns the RelatedLinks field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetRelatedLinksOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetRelatedLinksOk() (map[string]interface{}, bool)

GetRelatedLinksOk returns a tuple with the RelatedLinks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetScmId ¶

GetScmId returns the ScmId field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetScmIdOk ¶

GetScmIdOk returns a tuple with the ScmId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetSlug ¶

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetSlugOk ¶

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetState ¶

GetState returns the State field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetStateOk ¶

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) GetStatusMessage ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetStatusMessage() string

GetStatusMessage returns the StatusMessage field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryOrigin) GetStatusMessageOk ¶

func (o *RestPullRequestFromRefRepositoryOrigin) GetStatusMessageOk() (*string, bool)

GetStatusMessageOk returns a tuple with the StatusMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasArchived ¶

HasArchived returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasDefaultBranch ¶

func (o *RestPullRequestFromRefRepositoryOrigin) HasDefaultBranch() bool

HasDefaultBranch returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasDescription ¶

func (o *RestPullRequestFromRefRepositoryOrigin) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasForkable ¶

HasForkable returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasHierarchyId ¶

func (o *RestPullRequestFromRefRepositoryOrigin) HasHierarchyId() bool

HasHierarchyId returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasId ¶

HasId returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasPartition ¶

func (o *RestPullRequestFromRefRepositoryOrigin) HasPartition() bool

HasPartition returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasProject ¶

HasProject returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasPublic ¶

HasPublic returns a boolean if a field has been set.

func (o *RestPullRequestFromRefRepositoryOrigin) HasRelatedLinks() bool

HasRelatedLinks returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasScmId ¶

HasScmId returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasScope ¶

HasScope returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasSlug ¶

HasSlug returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasState ¶

HasState returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryOrigin) HasStatusMessage ¶

func (o *RestPullRequestFromRefRepositoryOrigin) HasStatusMessage() bool

HasStatusMessage returns a boolean if a field has been set.

func (RestPullRequestFromRefRepositoryOrigin) MarshalJSON ¶

func (o RestPullRequestFromRefRepositoryOrigin) MarshalJSON() ([]byte, error)

func (*RestPullRequestFromRefRepositoryOrigin) SetArchived ¶

func (o *RestPullRequestFromRefRepositoryOrigin) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*RestPullRequestFromRefRepositoryOrigin) SetDefaultBranch ¶

func (o *RestPullRequestFromRefRepositoryOrigin) SetDefaultBranch(v string)

SetDefaultBranch gets a reference to the given string and assigns it to the DefaultBranch field.

func (*RestPullRequestFromRefRepositoryOrigin) SetDescription ¶

func (o *RestPullRequestFromRefRepositoryOrigin) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestPullRequestFromRefRepositoryOrigin) SetForkable ¶

func (o *RestPullRequestFromRefRepositoryOrigin) SetForkable(v bool)

SetForkable gets a reference to the given bool and assigns it to the Forkable field.

func (*RestPullRequestFromRefRepositoryOrigin) SetHierarchyId ¶

func (o *RestPullRequestFromRefRepositoryOrigin) SetHierarchyId(v string)

SetHierarchyId gets a reference to the given string and assigns it to the HierarchyId field.

func (*RestPullRequestFromRefRepositoryOrigin) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *RestPullRequestFromRefRepositoryOrigin) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestPullRequestFromRefRepositoryOrigin) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestPullRequestFromRefRepositoryOrigin) SetPartition ¶

func (o *RestPullRequestFromRefRepositoryOrigin) SetPartition(v int32)

SetPartition gets a reference to the given int32 and assigns it to the Partition field.

func (*RestPullRequestFromRefRepositoryOrigin) SetProject ¶

SetProject gets a reference to the given RestPullRequestFromRefRepositoryProject and assigns it to the Project field.

func (*RestPullRequestFromRefRepositoryOrigin) SetPublic ¶

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (o *RestPullRequestFromRefRepositoryOrigin) SetRelatedLinks(v map[string]interface{})

SetRelatedLinks gets a reference to the given map[string]interface{} and assigns it to the RelatedLinks field.

func (*RestPullRequestFromRefRepositoryOrigin) SetScmId ¶

SetScmId gets a reference to the given string and assigns it to the ScmId field.

func (*RestPullRequestFromRefRepositoryOrigin) SetScope ¶

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*RestPullRequestFromRefRepositoryOrigin) SetSlug ¶

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestPullRequestFromRefRepositoryOrigin) SetState ¶

SetState gets a reference to the given string and assigns it to the State field.

func (*RestPullRequestFromRefRepositoryOrigin) SetStatusMessage ¶

func (o *RestPullRequestFromRefRepositoryOrigin) SetStatusMessage(v string)

SetStatusMessage gets a reference to the given string and assigns it to the StatusMessage field.

func (RestPullRequestFromRefRepositoryOrigin) ToMap ¶

func (o RestPullRequestFromRefRepositoryOrigin) ToMap() (map[string]interface{}, error)

type RestPullRequestFromRefRepositoryProject ¶

type RestPullRequestFromRefRepositoryProject struct {
	Name        *string `json:"name,omitempty"`
	Key         string  `json:"key"`
	Id          *int32  `json:"id,omitempty"`
	Type        *string `json:"type,omitempty"`
	Public      *bool   `json:"public,omitempty"`
	Description *string `json:"description,omitempty"`
	// Deprecated
	Namespace *string                `json:"namespace,omitempty"`
	Avatar    *string                `json:"avatar,omitempty"`
	AvatarUrl *string                `json:"avatarUrl,omitempty"`
	Scope     *string                `json:"scope,omitempty"`
	Links     map[string]interface{} `json:"links,omitempty"`
}

RestPullRequestFromRefRepositoryProject struct for RestPullRequestFromRefRepositoryProject

func NewRestPullRequestFromRefRepositoryProject ¶

func NewRestPullRequestFromRefRepositoryProject(key string) *RestPullRequestFromRefRepositoryProject

NewRestPullRequestFromRefRepositoryProject instantiates a new RestPullRequestFromRefRepositoryProject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestFromRefRepositoryProjectWithDefaults ¶

func NewRestPullRequestFromRefRepositoryProjectWithDefaults() *RestPullRequestFromRefRepositoryProject

NewRestPullRequestFromRefRepositoryProjectWithDefaults instantiates a new RestPullRequestFromRefRepositoryProject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestFromRefRepositoryProject) GetAvatar ¶

GetAvatar returns the Avatar field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryProject) GetAvatarOk ¶

GetAvatarOk returns a tuple with the Avatar field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryProject) GetAvatarUrl ¶

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryProject) GetAvatarUrlOk ¶

func (o *RestPullRequestFromRefRepositoryProject) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryProject) GetDescription ¶

func (o *RestPullRequestFromRefRepositoryProject) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryProject) GetDescriptionOk ¶

func (o *RestPullRequestFromRefRepositoryProject) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryProject) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryProject) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryProject) GetKey ¶

GetKey returns the Key field value

func (*RestPullRequestFromRefRepositoryProject) GetKeyOk ¶

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (o *RestPullRequestFromRefRepositoryProject) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryProject) GetLinksOk ¶

func (o *RestPullRequestFromRefRepositoryProject) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryProject) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryProject) GetNameOk ¶

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryProject) GetNamespace ¶

GetNamespace returns the Namespace field value if set, zero value otherwise. Deprecated

func (*RestPullRequestFromRefRepositoryProject) GetNamespaceOk ¶

func (o *RestPullRequestFromRefRepositoryProject) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*RestPullRequestFromRefRepositoryProject) GetPublic ¶

GetPublic returns the Public field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryProject) GetPublicOk ¶

func (o *RestPullRequestFromRefRepositoryProject) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryProject) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryProject) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryProject) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestFromRefRepositoryProject) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestFromRefRepositoryProject) HasAvatar ¶

HasAvatar returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryProject) HasAvatarUrl ¶

HasAvatarUrl returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryProject) HasDescription ¶

func (o *RestPullRequestFromRefRepositoryProject) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryProject) HasId ¶

HasId returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryProject) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryProject) HasNamespace ¶

HasNamespace returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryProject) HasPublic ¶

HasPublic returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryProject) HasScope ¶

HasScope returns a boolean if a field has been set.

func (*RestPullRequestFromRefRepositoryProject) HasType ¶

HasType returns a boolean if a field has been set.

func (RestPullRequestFromRefRepositoryProject) MarshalJSON ¶

func (o RestPullRequestFromRefRepositoryProject) MarshalJSON() ([]byte, error)

func (*RestPullRequestFromRefRepositoryProject) SetAvatar ¶

SetAvatar gets a reference to the given string and assigns it to the Avatar field.

func (*RestPullRequestFromRefRepositoryProject) SetAvatarUrl ¶

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestPullRequestFromRefRepositoryProject) SetDescription ¶

func (o *RestPullRequestFromRefRepositoryProject) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestPullRequestFromRefRepositoryProject) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestPullRequestFromRefRepositoryProject) SetKey ¶

SetKey sets field value

func (o *RestPullRequestFromRefRepositoryProject) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestPullRequestFromRefRepositoryProject) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestPullRequestFromRefRepositoryProject) SetNamespace ¶

SetNamespace gets a reference to the given string and assigns it to the Namespace field. Deprecated

func (*RestPullRequestFromRefRepositoryProject) SetPublic ¶

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (*RestPullRequestFromRefRepositoryProject) SetScope ¶

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*RestPullRequestFromRefRepositoryProject) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestFromRefRepositoryProject) ToMap ¶

func (o RestPullRequestFromRefRepositoryProject) ToMap() (map[string]interface{}, error)

type RestPullRequestMergeConfig ¶

type RestPullRequestMergeConfig struct {
	Type                  *string                                          `json:"type,omitempty"`
	CommitMessageTemplate *RestPullRequestMergeConfigCommitMessageTemplate `json:"commitMessageTemplate,omitempty"`
	CommitSummaries       *int32                                           `json:"commitSummaries,omitempty"`
	DefaultStrategy       *RestPullRequestMergeConfigDefaultStrategy       `json:"defaultStrategy,omitempty"`
	Strategies            []RestPullRequestMergeStrategy                   `json:"strategies,omitempty"`
}

RestPullRequestMergeConfig struct for RestPullRequestMergeConfig

func NewRestPullRequestMergeConfig ¶

func NewRestPullRequestMergeConfig() *RestPullRequestMergeConfig

NewRestPullRequestMergeConfig instantiates a new RestPullRequestMergeConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestMergeConfigWithDefaults ¶

func NewRestPullRequestMergeConfigWithDefaults() *RestPullRequestMergeConfig

NewRestPullRequestMergeConfigWithDefaults instantiates a new RestPullRequestMergeConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestMergeConfig) GetCommitMessageTemplate ¶

GetCommitMessageTemplate returns the CommitMessageTemplate field value if set, zero value otherwise.

func (*RestPullRequestMergeConfig) GetCommitMessageTemplateOk ¶

GetCommitMessageTemplateOk returns a tuple with the CommitMessageTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfig) GetCommitSummaries ¶

func (o *RestPullRequestMergeConfig) GetCommitSummaries() int32

GetCommitSummaries returns the CommitSummaries field value if set, zero value otherwise.

func (*RestPullRequestMergeConfig) GetCommitSummariesOk ¶

func (o *RestPullRequestMergeConfig) GetCommitSummariesOk() (*int32, bool)

GetCommitSummariesOk returns a tuple with the CommitSummaries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfig) GetDefaultStrategy ¶

GetDefaultStrategy returns the DefaultStrategy field value if set, zero value otherwise.

func (*RestPullRequestMergeConfig) GetDefaultStrategyOk ¶

GetDefaultStrategyOk returns a tuple with the DefaultStrategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfig) GetStrategies ¶

GetStrategies returns the Strategies field value if set, zero value otherwise.

func (*RestPullRequestMergeConfig) GetStrategiesOk ¶

GetStrategiesOk returns a tuple with the Strategies field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfig) GetType ¶

func (o *RestPullRequestMergeConfig) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestMergeConfig) GetTypeOk ¶

func (o *RestPullRequestMergeConfig) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfig) HasCommitMessageTemplate ¶

func (o *RestPullRequestMergeConfig) HasCommitMessageTemplate() bool

HasCommitMessageTemplate returns a boolean if a field has been set.

func (*RestPullRequestMergeConfig) HasCommitSummaries ¶

func (o *RestPullRequestMergeConfig) HasCommitSummaries() bool

HasCommitSummaries returns a boolean if a field has been set.

func (*RestPullRequestMergeConfig) HasDefaultStrategy ¶

func (o *RestPullRequestMergeConfig) HasDefaultStrategy() bool

HasDefaultStrategy returns a boolean if a field has been set.

func (*RestPullRequestMergeConfig) HasStrategies ¶

func (o *RestPullRequestMergeConfig) HasStrategies() bool

HasStrategies returns a boolean if a field has been set.

func (*RestPullRequestMergeConfig) HasType ¶

func (o *RestPullRequestMergeConfig) HasType() bool

HasType returns a boolean if a field has been set.

func (RestPullRequestMergeConfig) MarshalJSON ¶

func (o RestPullRequestMergeConfig) MarshalJSON() ([]byte, error)

func (*RestPullRequestMergeConfig) SetCommitMessageTemplate ¶

SetCommitMessageTemplate gets a reference to the given RestPullRequestMergeConfigCommitMessageTemplate and assigns it to the CommitMessageTemplate field.

func (*RestPullRequestMergeConfig) SetCommitSummaries ¶

func (o *RestPullRequestMergeConfig) SetCommitSummaries(v int32)

SetCommitSummaries gets a reference to the given int32 and assigns it to the CommitSummaries field.

func (*RestPullRequestMergeConfig) SetDefaultStrategy ¶

SetDefaultStrategy gets a reference to the given RestPullRequestMergeConfigDefaultStrategy and assigns it to the DefaultStrategy field.

func (*RestPullRequestMergeConfig) SetStrategies ¶

SetStrategies gets a reference to the given []RestPullRequestMergeStrategy and assigns it to the Strategies field.

func (*RestPullRequestMergeConfig) SetType ¶

func (o *RestPullRequestMergeConfig) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestMergeConfig) ToMap ¶

func (o RestPullRequestMergeConfig) ToMap() (map[string]interface{}, error)

type RestPullRequestMergeConfigCommitMessageTemplate ¶

type RestPullRequestMergeConfigCommitMessageTemplate struct {
	Title *string `json:"title,omitempty"`
	Body  *string `json:"body,omitempty"`
}

RestPullRequestMergeConfigCommitMessageTemplate struct for RestPullRequestMergeConfigCommitMessageTemplate

func NewRestPullRequestMergeConfigCommitMessageTemplate ¶

func NewRestPullRequestMergeConfigCommitMessageTemplate() *RestPullRequestMergeConfigCommitMessageTemplate

NewRestPullRequestMergeConfigCommitMessageTemplate instantiates a new RestPullRequestMergeConfigCommitMessageTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestMergeConfigCommitMessageTemplateWithDefaults ¶

func NewRestPullRequestMergeConfigCommitMessageTemplateWithDefaults() *RestPullRequestMergeConfigCommitMessageTemplate

NewRestPullRequestMergeConfigCommitMessageTemplateWithDefaults instantiates a new RestPullRequestMergeConfigCommitMessageTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestMergeConfigCommitMessageTemplate) GetBody ¶

GetBody returns the Body field value if set, zero value otherwise.

func (*RestPullRequestMergeConfigCommitMessageTemplate) GetBodyOk ¶

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfigCommitMessageTemplate) GetTitle ¶

GetTitle returns the Title field value if set, zero value otherwise.

func (*RestPullRequestMergeConfigCommitMessageTemplate) GetTitleOk ¶

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfigCommitMessageTemplate) HasBody ¶

HasBody returns a boolean if a field has been set.

func (*RestPullRequestMergeConfigCommitMessageTemplate) HasTitle ¶

HasTitle returns a boolean if a field has been set.

func (RestPullRequestMergeConfigCommitMessageTemplate) MarshalJSON ¶

func (*RestPullRequestMergeConfigCommitMessageTemplate) SetBody ¶

SetBody gets a reference to the given string and assigns it to the Body field.

func (*RestPullRequestMergeConfigCommitMessageTemplate) SetTitle ¶

SetTitle gets a reference to the given string and assigns it to the Title field.

func (RestPullRequestMergeConfigCommitMessageTemplate) ToMap ¶

func (o RestPullRequestMergeConfigCommitMessageTemplate) ToMap() (map[string]interface{}, error)

type RestPullRequestMergeConfigDefaultStrategy ¶

type RestPullRequestMergeConfigDefaultStrategy struct {
	Enabled     *bool                  `json:"enabled,omitempty"`
	Name        *string                `json:"name,omitempty"`
	Id          *string                `json:"id,omitempty"`
	Description *string                `json:"description,omitempty"`
	Flag        *string                `json:"flag,omitempty"`
	Links       map[string]interface{} `json:"links,omitempty"`
}

RestPullRequestMergeConfigDefaultStrategy struct for RestPullRequestMergeConfigDefaultStrategy

func NewRestPullRequestMergeConfigDefaultStrategy ¶

func NewRestPullRequestMergeConfigDefaultStrategy() *RestPullRequestMergeConfigDefaultStrategy

NewRestPullRequestMergeConfigDefaultStrategy instantiates a new RestPullRequestMergeConfigDefaultStrategy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestMergeConfigDefaultStrategyWithDefaults ¶

func NewRestPullRequestMergeConfigDefaultStrategyWithDefaults() *RestPullRequestMergeConfigDefaultStrategy

NewRestPullRequestMergeConfigDefaultStrategyWithDefaults instantiates a new RestPullRequestMergeConfigDefaultStrategy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestMergeConfigDefaultStrategy) GetDescription ¶

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestPullRequestMergeConfigDefaultStrategy) GetDescriptionOk ¶

func (o *RestPullRequestMergeConfigDefaultStrategy) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfigDefaultStrategy) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestPullRequestMergeConfigDefaultStrategy) GetEnabledOk ¶

func (o *RestPullRequestMergeConfigDefaultStrategy) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfigDefaultStrategy) GetFlag ¶

GetFlag returns the Flag field value if set, zero value otherwise.

func (*RestPullRequestMergeConfigDefaultStrategy) GetFlagOk ¶

GetFlagOk returns a tuple with the Flag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfigDefaultStrategy) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestMergeConfigDefaultStrategy) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestPullRequestMergeConfigDefaultStrategy) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestPullRequestMergeConfigDefaultStrategy) GetLinksOk ¶

func (o *RestPullRequestMergeConfigDefaultStrategy) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfigDefaultStrategy) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestPullRequestMergeConfigDefaultStrategy) GetNameOk ¶

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeConfigDefaultStrategy) HasDescription ¶

func (o *RestPullRequestMergeConfigDefaultStrategy) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestPullRequestMergeConfigDefaultStrategy) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*RestPullRequestMergeConfigDefaultStrategy) HasFlag ¶

HasFlag returns a boolean if a field has been set.

func (*RestPullRequestMergeConfigDefaultStrategy) HasId ¶

HasId returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (*RestPullRequestMergeConfigDefaultStrategy) HasName ¶

HasName returns a boolean if a field has been set.

func (RestPullRequestMergeConfigDefaultStrategy) MarshalJSON ¶

func (*RestPullRequestMergeConfigDefaultStrategy) SetDescription ¶

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestPullRequestMergeConfigDefaultStrategy) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestPullRequestMergeConfigDefaultStrategy) SetFlag ¶

SetFlag gets a reference to the given string and assigns it to the Flag field.

func (*RestPullRequestMergeConfigDefaultStrategy) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (o *RestPullRequestMergeConfigDefaultStrategy) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestPullRequestMergeConfigDefaultStrategy) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (RestPullRequestMergeConfigDefaultStrategy) ToMap ¶

func (o RestPullRequestMergeConfigDefaultStrategy) ToMap() (map[string]interface{}, error)

type RestPullRequestMergeRequest ¶

type RestPullRequestMergeRequest struct {
	AutoSubject *string `json:"autoSubject,omitempty"`
	Message     *string `json:"message,omitempty"`
	StrategyId  *string `json:"strategyId,omitempty"`
	Version     *int32  `json:"version,omitempty"`
}

RestPullRequestMergeRequest struct for RestPullRequestMergeRequest

func NewRestPullRequestMergeRequest ¶

func NewRestPullRequestMergeRequest() *RestPullRequestMergeRequest

NewRestPullRequestMergeRequest instantiates a new RestPullRequestMergeRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestMergeRequestWithDefaults ¶

func NewRestPullRequestMergeRequestWithDefaults() *RestPullRequestMergeRequest

NewRestPullRequestMergeRequestWithDefaults instantiates a new RestPullRequestMergeRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestMergeRequest) GetAutoSubject ¶

func (o *RestPullRequestMergeRequest) GetAutoSubject() string

GetAutoSubject returns the AutoSubject field value if set, zero value otherwise.

func (*RestPullRequestMergeRequest) GetAutoSubjectOk ¶

func (o *RestPullRequestMergeRequest) GetAutoSubjectOk() (*string, bool)

GetAutoSubjectOk returns a tuple with the AutoSubject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeRequest) GetMessage ¶

func (o *RestPullRequestMergeRequest) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RestPullRequestMergeRequest) GetMessageOk ¶

func (o *RestPullRequestMergeRequest) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeRequest) GetStrategyId ¶

func (o *RestPullRequestMergeRequest) GetStrategyId() string

GetStrategyId returns the StrategyId field value if set, zero value otherwise.

func (*RestPullRequestMergeRequest) GetStrategyIdOk ¶

func (o *RestPullRequestMergeRequest) GetStrategyIdOk() (*string, bool)

GetStrategyIdOk returns a tuple with the StrategyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeRequest) GetVersion ¶

func (o *RestPullRequestMergeRequest) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestPullRequestMergeRequest) GetVersionOk ¶

func (o *RestPullRequestMergeRequest) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeRequest) HasAutoSubject ¶

func (o *RestPullRequestMergeRequest) HasAutoSubject() bool

HasAutoSubject returns a boolean if a field has been set.

func (*RestPullRequestMergeRequest) HasMessage ¶

func (o *RestPullRequestMergeRequest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RestPullRequestMergeRequest) HasStrategyId ¶

func (o *RestPullRequestMergeRequest) HasStrategyId() bool

HasStrategyId returns a boolean if a field has been set.

func (*RestPullRequestMergeRequest) HasVersion ¶

func (o *RestPullRequestMergeRequest) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestPullRequestMergeRequest) MarshalJSON ¶

func (o RestPullRequestMergeRequest) MarshalJSON() ([]byte, error)

func (*RestPullRequestMergeRequest) SetAutoSubject ¶

func (o *RestPullRequestMergeRequest) SetAutoSubject(v string)

SetAutoSubject gets a reference to the given string and assigns it to the AutoSubject field.

func (*RestPullRequestMergeRequest) SetMessage ¶

func (o *RestPullRequestMergeRequest) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RestPullRequestMergeRequest) SetStrategyId ¶

func (o *RestPullRequestMergeRequest) SetStrategyId(v string)

SetStrategyId gets a reference to the given string and assigns it to the StrategyId field.

func (*RestPullRequestMergeRequest) SetVersion ¶

func (o *RestPullRequestMergeRequest) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestPullRequestMergeRequest) ToMap ¶

func (o RestPullRequestMergeRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestMergeStrategy ¶

type RestPullRequestMergeStrategy struct {
	Enabled     *bool                  `json:"enabled,omitempty"`
	Name        *string                `json:"name,omitempty"`
	Id          *string                `json:"id,omitempty"`
	Description *string                `json:"description,omitempty"`
	Flag        *string                `json:"flag,omitempty"`
	Links       map[string]interface{} `json:"links,omitempty"`
}

RestPullRequestMergeStrategy struct for RestPullRequestMergeStrategy

func NewRestPullRequestMergeStrategy ¶

func NewRestPullRequestMergeStrategy() *RestPullRequestMergeStrategy

NewRestPullRequestMergeStrategy instantiates a new RestPullRequestMergeStrategy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestMergeStrategyWithDefaults ¶

func NewRestPullRequestMergeStrategyWithDefaults() *RestPullRequestMergeStrategy

NewRestPullRequestMergeStrategyWithDefaults instantiates a new RestPullRequestMergeStrategy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestMergeStrategy) GetDescription ¶

func (o *RestPullRequestMergeStrategy) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestPullRequestMergeStrategy) GetDescriptionOk ¶

func (o *RestPullRequestMergeStrategy) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeStrategy) GetEnabled ¶

func (o *RestPullRequestMergeStrategy) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestPullRequestMergeStrategy) GetEnabledOk ¶

func (o *RestPullRequestMergeStrategy) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeStrategy) GetFlag ¶

func (o *RestPullRequestMergeStrategy) GetFlag() string

GetFlag returns the Flag field value if set, zero value otherwise.

func (*RestPullRequestMergeStrategy) GetFlagOk ¶

func (o *RestPullRequestMergeStrategy) GetFlagOk() (*string, bool)

GetFlagOk returns a tuple with the Flag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeStrategy) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestMergeStrategy) GetIdOk ¶

func (o *RestPullRequestMergeStrategy) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestPullRequestMergeStrategy) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestPullRequestMergeStrategy) GetLinksOk ¶

func (o *RestPullRequestMergeStrategy) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeStrategy) GetName ¶

func (o *RestPullRequestMergeStrategy) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestPullRequestMergeStrategy) GetNameOk ¶

func (o *RestPullRequestMergeStrategy) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeStrategy) HasDescription ¶

func (o *RestPullRequestMergeStrategy) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestPullRequestMergeStrategy) HasEnabled ¶

func (o *RestPullRequestMergeStrategy) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*RestPullRequestMergeStrategy) HasFlag ¶

func (o *RestPullRequestMergeStrategy) HasFlag() bool

HasFlag returns a boolean if a field has been set.

func (*RestPullRequestMergeStrategy) HasId ¶

HasId returns a boolean if a field has been set.

func (o *RestPullRequestMergeStrategy) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestPullRequestMergeStrategy) HasName ¶

func (o *RestPullRequestMergeStrategy) HasName() bool

HasName returns a boolean if a field has been set.

func (RestPullRequestMergeStrategy) MarshalJSON ¶

func (o RestPullRequestMergeStrategy) MarshalJSON() ([]byte, error)

func (*RestPullRequestMergeStrategy) SetDescription ¶

func (o *RestPullRequestMergeStrategy) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestPullRequestMergeStrategy) SetEnabled ¶

func (o *RestPullRequestMergeStrategy) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestPullRequestMergeStrategy) SetFlag ¶

func (o *RestPullRequestMergeStrategy) SetFlag(v string)

SetFlag gets a reference to the given string and assigns it to the Flag field.

func (*RestPullRequestMergeStrategy) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (o *RestPullRequestMergeStrategy) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestPullRequestMergeStrategy) SetName ¶

func (o *RestPullRequestMergeStrategy) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestPullRequestMergeStrategy) ToMap ¶

func (o RestPullRequestMergeStrategy) ToMap() (map[string]interface{}, error)

type RestPullRequestMergeability ¶

type RestPullRequestMergeability struct {
	Outcome    *string                  `json:"outcome,omitempty"`
	Vetoes     []RestRepositoryHookVeto `json:"vetoes,omitempty"`
	Conflicted *bool                    `json:"conflicted,omitempty"`
}

RestPullRequestMergeability struct for RestPullRequestMergeability

func NewRestPullRequestMergeability ¶

func NewRestPullRequestMergeability() *RestPullRequestMergeability

NewRestPullRequestMergeability instantiates a new RestPullRequestMergeability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestMergeabilityWithDefaults ¶

func NewRestPullRequestMergeabilityWithDefaults() *RestPullRequestMergeability

NewRestPullRequestMergeabilityWithDefaults instantiates a new RestPullRequestMergeability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestMergeability) GetConflicted ¶

func (o *RestPullRequestMergeability) GetConflicted() bool

GetConflicted returns the Conflicted field value if set, zero value otherwise.

func (*RestPullRequestMergeability) GetConflictedOk ¶

func (o *RestPullRequestMergeability) GetConflictedOk() (*bool, bool)

GetConflictedOk returns a tuple with the Conflicted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeability) GetOutcome ¶

func (o *RestPullRequestMergeability) GetOutcome() string

GetOutcome returns the Outcome field value if set, zero value otherwise.

func (*RestPullRequestMergeability) GetOutcomeOk ¶

func (o *RestPullRequestMergeability) GetOutcomeOk() (*string, bool)

GetOutcomeOk returns a tuple with the Outcome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeability) GetVetoes ¶

GetVetoes returns the Vetoes field value if set, zero value otherwise.

func (*RestPullRequestMergeability) GetVetoesOk ¶

GetVetoesOk returns a tuple with the Vetoes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestMergeability) HasConflicted ¶

func (o *RestPullRequestMergeability) HasConflicted() bool

HasConflicted returns a boolean if a field has been set.

func (*RestPullRequestMergeability) HasOutcome ¶

func (o *RestPullRequestMergeability) HasOutcome() bool

HasOutcome returns a boolean if a field has been set.

func (*RestPullRequestMergeability) HasVetoes ¶

func (o *RestPullRequestMergeability) HasVetoes() bool

HasVetoes returns a boolean if a field has been set.

func (RestPullRequestMergeability) MarshalJSON ¶

func (o RestPullRequestMergeability) MarshalJSON() ([]byte, error)

func (*RestPullRequestMergeability) SetConflicted ¶

func (o *RestPullRequestMergeability) SetConflicted(v bool)

SetConflicted gets a reference to the given bool and assigns it to the Conflicted field.

func (*RestPullRequestMergeability) SetOutcome ¶

func (o *RestPullRequestMergeability) SetOutcome(v string)

SetOutcome gets a reference to the given string and assigns it to the Outcome field.

func (*RestPullRequestMergeability) SetVetoes ¶

SetVetoes gets a reference to the given []RestRepositoryHookVeto and assigns it to the Vetoes field.

func (RestPullRequestMergeability) ToMap ¶

func (o RestPullRequestMergeability) ToMap() (map[string]interface{}, error)

type RestPullRequestParticipant ¶

type RestPullRequestParticipant struct {
	Status             *string                         `json:"status,omitempty"`
	LastReviewedCommit *string                         `json:"lastReviewedCommit,omitempty"`
	Approved           *bool                           `json:"approved,omitempty"`
	Role               *string                         `json:"role,omitempty"`
	User               *RestPullRequestParticipantUser `json:"user,omitempty"`
}

RestPullRequestParticipant struct for RestPullRequestParticipant

func NewRestPullRequestParticipant ¶

func NewRestPullRequestParticipant() *RestPullRequestParticipant

NewRestPullRequestParticipant instantiates a new RestPullRequestParticipant object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestParticipantWithDefaults ¶

func NewRestPullRequestParticipantWithDefaults() *RestPullRequestParticipant

NewRestPullRequestParticipantWithDefaults instantiates a new RestPullRequestParticipant object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestParticipant) GetApproved ¶

func (o *RestPullRequestParticipant) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*RestPullRequestParticipant) GetApprovedOk ¶

func (o *RestPullRequestParticipant) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipant) GetLastReviewedCommit ¶

func (o *RestPullRequestParticipant) GetLastReviewedCommit() string

GetLastReviewedCommit returns the LastReviewedCommit field value if set, zero value otherwise.

func (*RestPullRequestParticipant) GetLastReviewedCommitOk ¶

func (o *RestPullRequestParticipant) GetLastReviewedCommitOk() (*string, bool)

GetLastReviewedCommitOk returns a tuple with the LastReviewedCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipant) GetRole ¶

func (o *RestPullRequestParticipant) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*RestPullRequestParticipant) GetRoleOk ¶

func (o *RestPullRequestParticipant) GetRoleOk() (*string, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipant) GetStatus ¶

func (o *RestPullRequestParticipant) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*RestPullRequestParticipant) GetStatusOk ¶

func (o *RestPullRequestParticipant) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipant) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*RestPullRequestParticipant) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipant) HasApproved ¶

func (o *RestPullRequestParticipant) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*RestPullRequestParticipant) HasLastReviewedCommit ¶

func (o *RestPullRequestParticipant) HasLastReviewedCommit() bool

HasLastReviewedCommit returns a boolean if a field has been set.

func (*RestPullRequestParticipant) HasRole ¶

func (o *RestPullRequestParticipant) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*RestPullRequestParticipant) HasStatus ¶

func (o *RestPullRequestParticipant) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*RestPullRequestParticipant) HasUser ¶

func (o *RestPullRequestParticipant) HasUser() bool

HasUser returns a boolean if a field has been set.

func (RestPullRequestParticipant) MarshalJSON ¶

func (o RestPullRequestParticipant) MarshalJSON() ([]byte, error)

func (*RestPullRequestParticipant) SetApproved ¶

func (o *RestPullRequestParticipant) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*RestPullRequestParticipant) SetLastReviewedCommit ¶

func (o *RestPullRequestParticipant) SetLastReviewedCommit(v string)

SetLastReviewedCommit gets a reference to the given string and assigns it to the LastReviewedCommit field.

func (*RestPullRequestParticipant) SetRole ¶

func (o *RestPullRequestParticipant) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (*RestPullRequestParticipant) SetStatus ¶

func (o *RestPullRequestParticipant) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*RestPullRequestParticipant) SetUser ¶

SetUser gets a reference to the given RestPullRequestParticipantUser and assigns it to the User field.

func (RestPullRequestParticipant) ToMap ¶

func (o RestPullRequestParticipant) ToMap() (map[string]interface{}, error)

type RestPullRequestParticipantUser ¶

type RestPullRequestParticipantUser struct {
	Name         *string                `json:"name,omitempty"`
	Id           *int32                 `json:"id,omitempty"`
	Type         *string                `json:"type,omitempty"`
	DisplayName  *string                `json:"displayName,omitempty"`
	EmailAddress *string                `json:"emailAddress,omitempty"`
	Slug         *string                `json:"slug,omitempty"`
	Links        map[string]interface{} `json:"links,omitempty"`
	Active       *bool                  `json:"active,omitempty"`
	AvatarUrl    *string                `json:"avatarUrl,omitempty"`
}

RestPullRequestParticipantUser struct for RestPullRequestParticipantUser

func NewRestPullRequestParticipantUser ¶

func NewRestPullRequestParticipantUser() *RestPullRequestParticipantUser

NewRestPullRequestParticipantUser instantiates a new RestPullRequestParticipantUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestParticipantUserWithDefaults ¶

func NewRestPullRequestParticipantUserWithDefaults() *RestPullRequestParticipantUser

NewRestPullRequestParticipantUserWithDefaults instantiates a new RestPullRequestParticipantUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestParticipantUser) GetActive ¶

func (o *RestPullRequestParticipantUser) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*RestPullRequestParticipantUser) GetActiveOk ¶

func (o *RestPullRequestParticipantUser) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipantUser) GetAvatarUrl ¶

func (o *RestPullRequestParticipantUser) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestPullRequestParticipantUser) GetAvatarUrlOk ¶

func (o *RestPullRequestParticipantUser) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipantUser) GetDisplayName ¶

func (o *RestPullRequestParticipantUser) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*RestPullRequestParticipantUser) GetDisplayNameOk ¶

func (o *RestPullRequestParticipantUser) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipantUser) GetEmailAddress ¶

func (o *RestPullRequestParticipantUser) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*RestPullRequestParticipantUser) GetEmailAddressOk ¶

func (o *RestPullRequestParticipantUser) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipantUser) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestParticipantUser) GetIdOk ¶

func (o *RestPullRequestParticipantUser) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestPullRequestParticipantUser) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestPullRequestParticipantUser) GetLinksOk ¶

func (o *RestPullRequestParticipantUser) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipantUser) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestPullRequestParticipantUser) GetNameOk ¶

func (o *RestPullRequestParticipantUser) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipantUser) GetSlug ¶

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestPullRequestParticipantUser) GetSlugOk ¶

func (o *RestPullRequestParticipantUser) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipantUser) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestParticipantUser) GetTypeOk ¶

func (o *RestPullRequestParticipantUser) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestParticipantUser) HasActive ¶

func (o *RestPullRequestParticipantUser) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*RestPullRequestParticipantUser) HasAvatarUrl ¶

func (o *RestPullRequestParticipantUser) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*RestPullRequestParticipantUser) HasDisplayName ¶

func (o *RestPullRequestParticipantUser) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*RestPullRequestParticipantUser) HasEmailAddress ¶

func (o *RestPullRequestParticipantUser) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*RestPullRequestParticipantUser) HasId ¶

HasId returns a boolean if a field has been set.

func (o *RestPullRequestParticipantUser) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestPullRequestParticipantUser) HasName ¶

func (o *RestPullRequestParticipantUser) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestPullRequestParticipantUser) HasSlug ¶

func (o *RestPullRequestParticipantUser) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*RestPullRequestParticipantUser) HasType ¶

func (o *RestPullRequestParticipantUser) HasType() bool

HasType returns a boolean if a field has been set.

func (RestPullRequestParticipantUser) MarshalJSON ¶

func (o RestPullRequestParticipantUser) MarshalJSON() ([]byte, error)

func (*RestPullRequestParticipantUser) SetActive ¶

func (o *RestPullRequestParticipantUser) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*RestPullRequestParticipantUser) SetAvatarUrl ¶

func (o *RestPullRequestParticipantUser) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestPullRequestParticipantUser) SetDisplayName ¶

func (o *RestPullRequestParticipantUser) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*RestPullRequestParticipantUser) SetEmailAddress ¶

func (o *RestPullRequestParticipantUser) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*RestPullRequestParticipantUser) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *RestPullRequestParticipantUser) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestPullRequestParticipantUser) SetName ¶

func (o *RestPullRequestParticipantUser) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestPullRequestParticipantUser) SetSlug ¶

func (o *RestPullRequestParticipantUser) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestPullRequestParticipantUser) SetType ¶

func (o *RestPullRequestParticipantUser) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestParticipantUser) ToMap ¶

func (o RestPullRequestParticipantUser) ToMap() (map[string]interface{}, error)

type RestPullRequestRebaseRequest ¶

type RestPullRequestRebaseRequest struct {
	Version *int32 `json:"version,omitempty"`
}

RestPullRequestRebaseRequest struct for RestPullRequestRebaseRequest

func NewRestPullRequestRebaseRequest ¶

func NewRestPullRequestRebaseRequest() *RestPullRequestRebaseRequest

NewRestPullRequestRebaseRequest instantiates a new RestPullRequestRebaseRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestRebaseRequestWithDefaults ¶

func NewRestPullRequestRebaseRequestWithDefaults() *RestPullRequestRebaseRequest

NewRestPullRequestRebaseRequestWithDefaults instantiates a new RestPullRequestRebaseRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestRebaseRequest) GetVersion ¶

func (o *RestPullRequestRebaseRequest) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestPullRequestRebaseRequest) GetVersionOk ¶

func (o *RestPullRequestRebaseRequest) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseRequest) HasVersion ¶

func (o *RestPullRequestRebaseRequest) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestPullRequestRebaseRequest) MarshalJSON ¶

func (o RestPullRequestRebaseRequest) MarshalJSON() ([]byte, error)

func (*RestPullRequestRebaseRequest) SetVersion ¶

func (o *RestPullRequestRebaseRequest) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestPullRequestRebaseRequest) ToMap ¶

func (o RestPullRequestRebaseRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestRebaseResult ¶

type RestPullRequestRebaseResult struct {
	RefChange *RestPullRequestRebaseResultRefChange `json:"refChange,omitempty"`
}

RestPullRequestRebaseResult struct for RestPullRequestRebaseResult

func NewRestPullRequestRebaseResult ¶

func NewRestPullRequestRebaseResult() *RestPullRequestRebaseResult

NewRestPullRequestRebaseResult instantiates a new RestPullRequestRebaseResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestRebaseResultWithDefaults ¶

func NewRestPullRequestRebaseResultWithDefaults() *RestPullRequestRebaseResult

NewRestPullRequestRebaseResultWithDefaults instantiates a new RestPullRequestRebaseResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestRebaseResult) GetRefChange ¶

GetRefChange returns the RefChange field value if set, zero value otherwise.

func (*RestPullRequestRebaseResult) GetRefChangeOk ¶

GetRefChangeOk returns a tuple with the RefChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseResult) HasRefChange ¶

func (o *RestPullRequestRebaseResult) HasRefChange() bool

HasRefChange returns a boolean if a field has been set.

func (RestPullRequestRebaseResult) MarshalJSON ¶

func (o RestPullRequestRebaseResult) MarshalJSON() ([]byte, error)

func (*RestPullRequestRebaseResult) SetRefChange ¶

SetRefChange gets a reference to the given RestPullRequestRebaseResultRefChange and assigns it to the RefChange field.

func (RestPullRequestRebaseResult) ToMap ¶

func (o RestPullRequestRebaseResult) ToMap() (map[string]interface{}, error)

type RestPullRequestRebaseResultRefChange ¶

type RestPullRequestRebaseResultRefChange struct {
	Type     *string                                  `json:"type,omitempty"`
	Ref      *RestPullRequestRebaseResultRefChangeRef `json:"ref,omitempty"`
	FromHash *string                                  `json:"fromHash,omitempty"`
	ToHash   *string                                  `json:"toHash,omitempty"`
	RefId    *string                                  `json:"refId,omitempty"`
}

RestPullRequestRebaseResultRefChange struct for RestPullRequestRebaseResultRefChange

func NewRestPullRequestRebaseResultRefChange ¶

func NewRestPullRequestRebaseResultRefChange() *RestPullRequestRebaseResultRefChange

NewRestPullRequestRebaseResultRefChange instantiates a new RestPullRequestRebaseResultRefChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestRebaseResultRefChangeWithDefaults ¶

func NewRestPullRequestRebaseResultRefChangeWithDefaults() *RestPullRequestRebaseResultRefChange

NewRestPullRequestRebaseResultRefChangeWithDefaults instantiates a new RestPullRequestRebaseResultRefChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestRebaseResultRefChange) GetFromHash ¶

GetFromHash returns the FromHash field value if set, zero value otherwise.

func (*RestPullRequestRebaseResultRefChange) GetFromHashOk ¶

func (o *RestPullRequestRebaseResultRefChange) GetFromHashOk() (*string, bool)

GetFromHashOk returns a tuple with the FromHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseResultRefChange) GetRef ¶

GetRef returns the Ref field value if set, zero value otherwise.

func (*RestPullRequestRebaseResultRefChange) GetRefId ¶

GetRefId returns the RefId field value if set, zero value otherwise.

func (*RestPullRequestRebaseResultRefChange) GetRefIdOk ¶

func (o *RestPullRequestRebaseResultRefChange) GetRefIdOk() (*string, bool)

GetRefIdOk returns a tuple with the RefId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseResultRefChange) GetRefOk ¶

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseResultRefChange) GetToHash ¶

GetToHash returns the ToHash field value if set, zero value otherwise.

func (*RestPullRequestRebaseResultRefChange) GetToHashOk ¶

func (o *RestPullRequestRebaseResultRefChange) GetToHashOk() (*string, bool)

GetToHashOk returns a tuple with the ToHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseResultRefChange) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestRebaseResultRefChange) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseResultRefChange) HasFromHash ¶

func (o *RestPullRequestRebaseResultRefChange) HasFromHash() bool

HasFromHash returns a boolean if a field has been set.

func (*RestPullRequestRebaseResultRefChange) HasRef ¶

HasRef returns a boolean if a field has been set.

func (*RestPullRequestRebaseResultRefChange) HasRefId ¶

HasRefId returns a boolean if a field has been set.

func (*RestPullRequestRebaseResultRefChange) HasToHash ¶

HasToHash returns a boolean if a field has been set.

func (*RestPullRequestRebaseResultRefChange) HasType ¶

HasType returns a boolean if a field has been set.

func (RestPullRequestRebaseResultRefChange) MarshalJSON ¶

func (o RestPullRequestRebaseResultRefChange) MarshalJSON() ([]byte, error)

func (*RestPullRequestRebaseResultRefChange) SetFromHash ¶

func (o *RestPullRequestRebaseResultRefChange) SetFromHash(v string)

SetFromHash gets a reference to the given string and assigns it to the FromHash field.

func (*RestPullRequestRebaseResultRefChange) SetRef ¶

SetRef gets a reference to the given RestPullRequestRebaseResultRefChangeRef and assigns it to the Ref field.

func (*RestPullRequestRebaseResultRefChange) SetRefId ¶

SetRefId gets a reference to the given string and assigns it to the RefId field.

func (*RestPullRequestRebaseResultRefChange) SetToHash ¶

SetToHash gets a reference to the given string and assigns it to the ToHash field.

func (*RestPullRequestRebaseResultRefChange) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestRebaseResultRefChange) ToMap ¶

func (o RestPullRequestRebaseResultRefChange) ToMap() (map[string]interface{}, error)

type RestPullRequestRebaseResultRefChangeRef ¶

type RestPullRequestRebaseResultRefChangeRef struct {
	Id        *string `json:"id,omitempty"`
	Type      *string `json:"type,omitempty"`
	DisplayId *string `json:"displayId,omitempty"`
}

RestPullRequestRebaseResultRefChangeRef struct for RestPullRequestRebaseResultRefChangeRef

func NewRestPullRequestRebaseResultRefChangeRef ¶

func NewRestPullRequestRebaseResultRefChangeRef() *RestPullRequestRebaseResultRefChangeRef

NewRestPullRequestRebaseResultRefChangeRef instantiates a new RestPullRequestRebaseResultRefChangeRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestRebaseResultRefChangeRefWithDefaults ¶

func NewRestPullRequestRebaseResultRefChangeRefWithDefaults() *RestPullRequestRebaseResultRefChangeRef

NewRestPullRequestRebaseResultRefChangeRefWithDefaults instantiates a new RestPullRequestRebaseResultRefChangeRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestRebaseResultRefChangeRef) GetDisplayId ¶

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestPullRequestRebaseResultRefChangeRef) GetDisplayIdOk ¶

func (o *RestPullRequestRebaseResultRefChangeRef) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseResultRefChangeRef) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestRebaseResultRefChangeRef) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseResultRefChangeRef) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestRebaseResultRefChangeRef) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseResultRefChangeRef) HasDisplayId ¶

HasDisplayId returns a boolean if a field has been set.

func (*RestPullRequestRebaseResultRefChangeRef) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestPullRequestRebaseResultRefChangeRef) HasType ¶

HasType returns a boolean if a field has been set.

func (RestPullRequestRebaseResultRefChangeRef) MarshalJSON ¶

func (o RestPullRequestRebaseResultRefChangeRef) MarshalJSON() ([]byte, error)

func (*RestPullRequestRebaseResultRefChangeRef) SetDisplayId ¶

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestPullRequestRebaseResultRefChangeRef) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestPullRequestRebaseResultRefChangeRef) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestRebaseResultRefChangeRef) ToMap ¶

func (o RestPullRequestRebaseResultRefChangeRef) ToMap() (map[string]interface{}, error)

type RestPullRequestRebaseability ¶

type RestPullRequestRebaseability struct {
	Vetoes []RestRepositoryHookVeto `json:"vetoes,omitempty"`
}

RestPullRequestRebaseability struct for RestPullRequestRebaseability

func NewRestPullRequestRebaseability ¶

func NewRestPullRequestRebaseability() *RestPullRequestRebaseability

NewRestPullRequestRebaseability instantiates a new RestPullRequestRebaseability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestRebaseabilityWithDefaults ¶

func NewRestPullRequestRebaseabilityWithDefaults() *RestPullRequestRebaseability

NewRestPullRequestRebaseabilityWithDefaults instantiates a new RestPullRequestRebaseability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestRebaseability) GetVetoes ¶

GetVetoes returns the Vetoes field value if set, zero value otherwise.

func (*RestPullRequestRebaseability) GetVetoesOk ¶

GetVetoesOk returns a tuple with the Vetoes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRebaseability) HasVetoes ¶

func (o *RestPullRequestRebaseability) HasVetoes() bool

HasVetoes returns a boolean if a field has been set.

func (RestPullRequestRebaseability) MarshalJSON ¶

func (o RestPullRequestRebaseability) MarshalJSON() ([]byte, error)

func (*RestPullRequestRebaseability) SetVetoes ¶

SetVetoes gets a reference to the given []RestRepositoryHookVeto and assigns it to the Vetoes field.

func (RestPullRequestRebaseability) ToMap ¶

func (o RestPullRequestRebaseability) ToMap() (map[string]interface{}, error)

type RestPullRequestRef ¶

type RestPullRequestRef struct {
	Id           *string                           `json:"id,omitempty"`
	Type         *string                           `json:"type,omitempty"`
	Repository   *RestPullRequestFromRefRepository `json:"repository,omitempty"`
	DisplayId    *string                           `json:"displayId,omitempty"`
	LatestCommit *string                           `json:"latestCommit,omitempty"`
}

RestPullRequestRef struct for RestPullRequestRef

func NewRestPullRequestRef ¶

func NewRestPullRequestRef() *RestPullRequestRef

NewRestPullRequestRef instantiates a new RestPullRequestRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestRefWithDefaults ¶

func NewRestPullRequestRefWithDefaults() *RestPullRequestRef

NewRestPullRequestRefWithDefaults instantiates a new RestPullRequestRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestRef) GetDisplayId ¶

func (o *RestPullRequestRef) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestPullRequestRef) GetDisplayIdOk ¶

func (o *RestPullRequestRef) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRef) GetId ¶

func (o *RestPullRequestRef) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestPullRequestRef) GetIdOk ¶

func (o *RestPullRequestRef) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRef) GetLatestCommit ¶

func (o *RestPullRequestRef) GetLatestCommit() string

GetLatestCommit returns the LatestCommit field value if set, zero value otherwise.

func (*RestPullRequestRef) GetLatestCommitOk ¶

func (o *RestPullRequestRef) GetLatestCommitOk() (*string, bool)

GetLatestCommitOk returns a tuple with the LatestCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRef) GetRepository ¶

GetRepository returns the Repository field value if set, zero value otherwise.

func (*RestPullRequestRef) GetRepositoryOk ¶

func (o *RestPullRequestRef) GetRepositoryOk() (*RestPullRequestFromRefRepository, bool)

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRef) GetType ¶

func (o *RestPullRequestRef) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestRef) GetTypeOk ¶

func (o *RestPullRequestRef) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestRef) HasDisplayId ¶

func (o *RestPullRequestRef) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestPullRequestRef) HasId ¶

func (o *RestPullRequestRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestPullRequestRef) HasLatestCommit ¶

func (o *RestPullRequestRef) HasLatestCommit() bool

HasLatestCommit returns a boolean if a field has been set.

func (*RestPullRequestRef) HasRepository ¶

func (o *RestPullRequestRef) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*RestPullRequestRef) HasType ¶

func (o *RestPullRequestRef) HasType() bool

HasType returns a boolean if a field has been set.

func (RestPullRequestRef) MarshalJSON ¶

func (o RestPullRequestRef) MarshalJSON() ([]byte, error)

func (*RestPullRequestRef) SetDisplayId ¶

func (o *RestPullRequestRef) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestPullRequestRef) SetId ¶

func (o *RestPullRequestRef) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestPullRequestRef) SetLatestCommit ¶

func (o *RestPullRequestRef) SetLatestCommit(v string)

SetLatestCommit gets a reference to the given string and assigns it to the LatestCommit field.

func (*RestPullRequestRef) SetRepository ¶

SetRepository gets a reference to the given RestPullRequestFromRefRepository and assigns it to the Repository field.

func (*RestPullRequestRef) SetType ¶

func (o *RestPullRequestRef) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestRef) ToMap ¶

func (o RestPullRequestRef) ToMap() (map[string]interface{}, error)

type RestPullRequestReopenRequest ¶

type RestPullRequestReopenRequest struct {
	Version *int32 `json:"version,omitempty"`
}

RestPullRequestReopenRequest struct for RestPullRequestReopenRequest

func NewRestPullRequestReopenRequest ¶

func NewRestPullRequestReopenRequest() *RestPullRequestReopenRequest

NewRestPullRequestReopenRequest instantiates a new RestPullRequestReopenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestReopenRequestWithDefaults ¶

func NewRestPullRequestReopenRequestWithDefaults() *RestPullRequestReopenRequest

NewRestPullRequestReopenRequestWithDefaults instantiates a new RestPullRequestReopenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestReopenRequest) GetVersion ¶

func (o *RestPullRequestReopenRequest) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestPullRequestReopenRequest) GetVersionOk ¶

func (o *RestPullRequestReopenRequest) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestReopenRequest) HasVersion ¶

func (o *RestPullRequestReopenRequest) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestPullRequestReopenRequest) MarshalJSON ¶

func (o RestPullRequestReopenRequest) MarshalJSON() ([]byte, error)

func (*RestPullRequestReopenRequest) SetVersion ¶

func (o *RestPullRequestReopenRequest) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestPullRequestReopenRequest) ToMap ¶

func (o RestPullRequestReopenRequest) ToMap() (map[string]interface{}, error)

type RestPullRequestSettings ¶

type RestPullRequestSettings struct {
	MergeConfig *RestPullRequestSettingsMergeConfig `json:"mergeConfig,omitempty"`
}

RestPullRequestSettings struct for RestPullRequestSettings

func NewRestPullRequestSettings ¶

func NewRestPullRequestSettings() *RestPullRequestSettings

NewRestPullRequestSettings instantiates a new RestPullRequestSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestSettingsWithDefaults ¶

func NewRestPullRequestSettingsWithDefaults() *RestPullRequestSettings

NewRestPullRequestSettingsWithDefaults instantiates a new RestPullRequestSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestSettings) GetMergeConfig ¶

GetMergeConfig returns the MergeConfig field value if set, zero value otherwise.

func (*RestPullRequestSettings) GetMergeConfigOk ¶

GetMergeConfigOk returns a tuple with the MergeConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSettings) HasMergeConfig ¶

func (o *RestPullRequestSettings) HasMergeConfig() bool

HasMergeConfig returns a boolean if a field has been set.

func (RestPullRequestSettings) MarshalJSON ¶

func (o RestPullRequestSettings) MarshalJSON() ([]byte, error)

func (*RestPullRequestSettings) SetMergeConfig ¶

SetMergeConfig gets a reference to the given RestPullRequestSettingsMergeConfig and assigns it to the MergeConfig field.

func (RestPullRequestSettings) ToMap ¶

func (o RestPullRequestSettings) ToMap() (map[string]interface{}, error)

type RestPullRequestSettingsMergeConfig ¶

type RestPullRequestSettingsMergeConfig struct {
	Type                  *string                                          `json:"type,omitempty"`
	CommitMessageTemplate *RestPullRequestMergeConfigCommitMessageTemplate `json:"commitMessageTemplate,omitempty"`
	CommitSummaries       *int32                                           `json:"commitSummaries,omitempty"`
	DefaultStrategy       *RestPullRequestMergeConfigDefaultStrategy       `json:"defaultStrategy,omitempty"`
	Strategies            []RestPullRequestMergeStrategy                   `json:"strategies,omitempty"`
}

RestPullRequestSettingsMergeConfig struct for RestPullRequestSettingsMergeConfig

func NewRestPullRequestSettingsMergeConfig ¶

func NewRestPullRequestSettingsMergeConfig() *RestPullRequestSettingsMergeConfig

NewRestPullRequestSettingsMergeConfig instantiates a new RestPullRequestSettingsMergeConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestSettingsMergeConfigWithDefaults ¶

func NewRestPullRequestSettingsMergeConfigWithDefaults() *RestPullRequestSettingsMergeConfig

NewRestPullRequestSettingsMergeConfigWithDefaults instantiates a new RestPullRequestSettingsMergeConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestSettingsMergeConfig) GetCommitMessageTemplate ¶

GetCommitMessageTemplate returns the CommitMessageTemplate field value if set, zero value otherwise.

func (*RestPullRequestSettingsMergeConfig) GetCommitMessageTemplateOk ¶

GetCommitMessageTemplateOk returns a tuple with the CommitMessageTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSettingsMergeConfig) GetCommitSummaries ¶

func (o *RestPullRequestSettingsMergeConfig) GetCommitSummaries() int32

GetCommitSummaries returns the CommitSummaries field value if set, zero value otherwise.

func (*RestPullRequestSettingsMergeConfig) GetCommitSummariesOk ¶

func (o *RestPullRequestSettingsMergeConfig) GetCommitSummariesOk() (*int32, bool)

GetCommitSummariesOk returns a tuple with the CommitSummaries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSettingsMergeConfig) GetDefaultStrategy ¶

GetDefaultStrategy returns the DefaultStrategy field value if set, zero value otherwise.

func (*RestPullRequestSettingsMergeConfig) GetDefaultStrategyOk ¶

GetDefaultStrategyOk returns a tuple with the DefaultStrategy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSettingsMergeConfig) GetStrategies ¶

GetStrategies returns the Strategies field value if set, zero value otherwise.

func (*RestPullRequestSettingsMergeConfig) GetStrategiesOk ¶

GetStrategiesOk returns a tuple with the Strategies field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSettingsMergeConfig) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestPullRequestSettingsMergeConfig) GetTypeOk ¶

func (o *RestPullRequestSettingsMergeConfig) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSettingsMergeConfig) HasCommitMessageTemplate ¶

func (o *RestPullRequestSettingsMergeConfig) HasCommitMessageTemplate() bool

HasCommitMessageTemplate returns a boolean if a field has been set.

func (*RestPullRequestSettingsMergeConfig) HasCommitSummaries ¶

func (o *RestPullRequestSettingsMergeConfig) HasCommitSummaries() bool

HasCommitSummaries returns a boolean if a field has been set.

func (*RestPullRequestSettingsMergeConfig) HasDefaultStrategy ¶

func (o *RestPullRequestSettingsMergeConfig) HasDefaultStrategy() bool

HasDefaultStrategy returns a boolean if a field has been set.

func (*RestPullRequestSettingsMergeConfig) HasStrategies ¶

func (o *RestPullRequestSettingsMergeConfig) HasStrategies() bool

HasStrategies returns a boolean if a field has been set.

func (*RestPullRequestSettingsMergeConfig) HasType ¶

HasType returns a boolean if a field has been set.

func (RestPullRequestSettingsMergeConfig) MarshalJSON ¶

func (o RestPullRequestSettingsMergeConfig) MarshalJSON() ([]byte, error)

func (*RestPullRequestSettingsMergeConfig) SetCommitMessageTemplate ¶

SetCommitMessageTemplate gets a reference to the given RestPullRequestMergeConfigCommitMessageTemplate and assigns it to the CommitMessageTemplate field.

func (*RestPullRequestSettingsMergeConfig) SetCommitSummaries ¶

func (o *RestPullRequestSettingsMergeConfig) SetCommitSummaries(v int32)

SetCommitSummaries gets a reference to the given int32 and assigns it to the CommitSummaries field.

func (*RestPullRequestSettingsMergeConfig) SetDefaultStrategy ¶

SetDefaultStrategy gets a reference to the given RestPullRequestMergeConfigDefaultStrategy and assigns it to the DefaultStrategy field.

func (*RestPullRequestSettingsMergeConfig) SetStrategies ¶

SetStrategies gets a reference to the given []RestPullRequestMergeStrategy and assigns it to the Strategies field.

func (*RestPullRequestSettingsMergeConfig) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RestPullRequestSettingsMergeConfig) ToMap ¶

func (o RestPullRequestSettingsMergeConfig) ToMap() (map[string]interface{}, error)

type RestPullRequestSuggestion ¶

type RestPullRequestSuggestion struct {
	ChangeTme  *int64                                   `json:"changeTme,omitempty"`
	RefChange  *RestPullRequestRebaseResultRefChange    `json:"refChange,omitempty"`
	Repository *RestPullRequestFromRefRepository        `json:"repository,omitempty"`
	FromRef    *RestPullRequestRebaseResultRefChangeRef `json:"fromRef,omitempty"`
	ToRef      *RestPullRequestRebaseResultRefChangeRef `json:"toRef,omitempty"`
}

RestPullRequestSuggestion struct for RestPullRequestSuggestion

func NewRestPullRequestSuggestion ¶

func NewRestPullRequestSuggestion() *RestPullRequestSuggestion

NewRestPullRequestSuggestion instantiates a new RestPullRequestSuggestion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPullRequestSuggestionWithDefaults ¶

func NewRestPullRequestSuggestionWithDefaults() *RestPullRequestSuggestion

NewRestPullRequestSuggestionWithDefaults instantiates a new RestPullRequestSuggestion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPullRequestSuggestion) GetChangeTme ¶

func (o *RestPullRequestSuggestion) GetChangeTme() int64

GetChangeTme returns the ChangeTme field value if set, zero value otherwise.

func (*RestPullRequestSuggestion) GetChangeTmeOk ¶

func (o *RestPullRequestSuggestion) GetChangeTmeOk() (*int64, bool)

GetChangeTmeOk returns a tuple with the ChangeTme field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSuggestion) GetFromRef ¶

GetFromRef returns the FromRef field value if set, zero value otherwise.

func (*RestPullRequestSuggestion) GetFromRefOk ¶

GetFromRefOk returns a tuple with the FromRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSuggestion) GetRefChange ¶

GetRefChange returns the RefChange field value if set, zero value otherwise.

func (*RestPullRequestSuggestion) GetRefChangeOk ¶

GetRefChangeOk returns a tuple with the RefChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSuggestion) GetRepository ¶

GetRepository returns the Repository field value if set, zero value otherwise.

func (*RestPullRequestSuggestion) GetRepositoryOk ¶

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSuggestion) GetToRef ¶

GetToRef returns the ToRef field value if set, zero value otherwise.

func (*RestPullRequestSuggestion) GetToRefOk ¶

GetToRefOk returns a tuple with the ToRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPullRequestSuggestion) HasChangeTme ¶

func (o *RestPullRequestSuggestion) HasChangeTme() bool

HasChangeTme returns a boolean if a field has been set.

func (*RestPullRequestSuggestion) HasFromRef ¶

func (o *RestPullRequestSuggestion) HasFromRef() bool

HasFromRef returns a boolean if a field has been set.

func (*RestPullRequestSuggestion) HasRefChange ¶

func (o *RestPullRequestSuggestion) HasRefChange() bool

HasRefChange returns a boolean if a field has been set.

func (*RestPullRequestSuggestion) HasRepository ¶

func (o *RestPullRequestSuggestion) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*RestPullRequestSuggestion) HasToRef ¶

func (o *RestPullRequestSuggestion) HasToRef() bool

HasToRef returns a boolean if a field has been set.

func (RestPullRequestSuggestion) MarshalJSON ¶

func (o RestPullRequestSuggestion) MarshalJSON() ([]byte, error)

func (*RestPullRequestSuggestion) SetChangeTme ¶

func (o *RestPullRequestSuggestion) SetChangeTme(v int64)

SetChangeTme gets a reference to the given int64 and assigns it to the ChangeTme field.

func (*RestPullRequestSuggestion) SetFromRef ¶

SetFromRef gets a reference to the given RestPullRequestRebaseResultRefChangeRef and assigns it to the FromRef field.

func (*RestPullRequestSuggestion) SetRefChange ¶

SetRefChange gets a reference to the given RestPullRequestRebaseResultRefChange and assigns it to the RefChange field.

func (*RestPullRequestSuggestion) SetRepository ¶

SetRepository gets a reference to the given RestPullRequestFromRefRepository and assigns it to the Repository field.

func (*RestPullRequestSuggestion) SetToRef ¶

SetToRef gets a reference to the given RestPullRequestRebaseResultRefChangeRef and assigns it to the ToRef field.

func (RestPullRequestSuggestion) ToMap ¶

func (o RestPullRequestSuggestion) ToMap() (map[string]interface{}, error)

type RestPushRefChange ¶

type RestPushRefChange struct {
	UpdatedType *string                                  `json:"updatedType,omitempty"`
	Type        *string                                  `json:"type,omitempty"`
	Ref         *RestPullRequestRebaseResultRefChangeRef `json:"ref,omitempty"`
	FromHash    *string                                  `json:"fromHash,omitempty"`
	ToHash      *string                                  `json:"toHash,omitempty"`
	RefId       *string                                  `json:"refId,omitempty"`
}

RestPushRefChange struct for RestPushRefChange

func NewRestPushRefChange ¶

func NewRestPushRefChange() *RestPushRefChange

NewRestPushRefChange instantiates a new RestPushRefChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestPushRefChangeWithDefaults ¶

func NewRestPushRefChangeWithDefaults() *RestPushRefChange

NewRestPushRefChangeWithDefaults instantiates a new RestPushRefChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestPushRefChange) GetFromHash ¶

func (o *RestPushRefChange) GetFromHash() string

GetFromHash returns the FromHash field value if set, zero value otherwise.

func (*RestPushRefChange) GetFromHashOk ¶

func (o *RestPushRefChange) GetFromHashOk() (*string, bool)

GetFromHashOk returns a tuple with the FromHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPushRefChange) GetRef ¶

GetRef returns the Ref field value if set, zero value otherwise.

func (*RestPushRefChange) GetRefId ¶

func (o *RestPushRefChange) GetRefId() string

GetRefId returns the RefId field value if set, zero value otherwise.

func (*RestPushRefChange) GetRefIdOk ¶

func (o *RestPushRefChange) GetRefIdOk() (*string, bool)

GetRefIdOk returns a tuple with the RefId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPushRefChange) GetRefOk ¶

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPushRefChange) GetToHash ¶

func (o *RestPushRefChange) GetToHash() string

GetToHash returns the ToHash field value if set, zero value otherwise.

func (*RestPushRefChange) GetToHashOk ¶

func (o *RestPushRefChange) GetToHashOk() (*string, bool)

GetToHashOk returns a tuple with the ToHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPushRefChange) GetType ¶

func (o *RestPushRefChange) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestPushRefChange) GetTypeOk ¶

func (o *RestPushRefChange) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPushRefChange) GetUpdatedType ¶

func (o *RestPushRefChange) GetUpdatedType() string

GetUpdatedType returns the UpdatedType field value if set, zero value otherwise.

func (*RestPushRefChange) GetUpdatedTypeOk ¶

func (o *RestPushRefChange) GetUpdatedTypeOk() (*string, bool)

GetUpdatedTypeOk returns a tuple with the UpdatedType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestPushRefChange) HasFromHash ¶

func (o *RestPushRefChange) HasFromHash() bool

HasFromHash returns a boolean if a field has been set.

func (*RestPushRefChange) HasRef ¶

func (o *RestPushRefChange) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*RestPushRefChange) HasRefId ¶

func (o *RestPushRefChange) HasRefId() bool

HasRefId returns a boolean if a field has been set.

func (*RestPushRefChange) HasToHash ¶

func (o *RestPushRefChange) HasToHash() bool

HasToHash returns a boolean if a field has been set.

func (*RestPushRefChange) HasType ¶

func (o *RestPushRefChange) HasType() bool

HasType returns a boolean if a field has been set.

func (*RestPushRefChange) HasUpdatedType ¶

func (o *RestPushRefChange) HasUpdatedType() bool

HasUpdatedType returns a boolean if a field has been set.

func (RestPushRefChange) MarshalJSON ¶

func (o RestPushRefChange) MarshalJSON() ([]byte, error)

func (*RestPushRefChange) SetFromHash ¶

func (o *RestPushRefChange) SetFromHash(v string)

SetFromHash gets a reference to the given string and assigns it to the FromHash field.

func (*RestPushRefChange) SetRef ¶

SetRef gets a reference to the given RestPullRequestRebaseResultRefChangeRef and assigns it to the Ref field.

func (*RestPushRefChange) SetRefId ¶

func (o *RestPushRefChange) SetRefId(v string)

SetRefId gets a reference to the given string and assigns it to the RefId field.

func (*RestPushRefChange) SetToHash ¶

func (o *RestPushRefChange) SetToHash(v string)

SetToHash gets a reference to the given string and assigns it to the ToHash field.

func (*RestPushRefChange) SetType ¶

func (o *RestPushRefChange) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestPushRefChange) SetUpdatedType ¶

func (o *RestPushRefChange) SetUpdatedType(v string)

SetUpdatedType gets a reference to the given string and assigns it to the UpdatedType field.

func (RestPushRefChange) ToMap ¶

func (o RestPushRefChange) ToMap() (map[string]interface{}, error)

type RestRateLimitSettings ¶

type RestRateLimitSettings struct {
	DefaultSettings *RestBulkUserRateLimitSettingsUpdateRequestSettings `json:"defaultSettings,omitempty"`
	Enabled         *bool                                               `json:"enabled,omitempty"`
}

RestRateLimitSettings struct for RestRateLimitSettings

func NewRestRateLimitSettings ¶

func NewRestRateLimitSettings() *RestRateLimitSettings

NewRestRateLimitSettings instantiates a new RestRateLimitSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRateLimitSettingsWithDefaults ¶

func NewRestRateLimitSettingsWithDefaults() *RestRateLimitSettings

NewRestRateLimitSettingsWithDefaults instantiates a new RestRateLimitSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRateLimitSettings) GetDefaultSettings ¶

GetDefaultSettings returns the DefaultSettings field value if set, zero value otherwise.

func (*RestRateLimitSettings) GetDefaultSettingsOk ¶

GetDefaultSettingsOk returns a tuple with the DefaultSettings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRateLimitSettings) GetEnabled ¶

func (o *RestRateLimitSettings) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestRateLimitSettings) GetEnabledOk ¶

func (o *RestRateLimitSettings) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRateLimitSettings) HasDefaultSettings ¶

func (o *RestRateLimitSettings) HasDefaultSettings() bool

HasDefaultSettings returns a boolean if a field has been set.

func (*RestRateLimitSettings) HasEnabled ¶

func (o *RestRateLimitSettings) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (RestRateLimitSettings) MarshalJSON ¶

func (o RestRateLimitSettings) MarshalJSON() ([]byte, error)

func (*RestRateLimitSettings) SetDefaultSettings ¶

SetDefaultSettings gets a reference to the given RestBulkUserRateLimitSettingsUpdateRequestSettings and assigns it to the DefaultSettings field.

func (*RestRateLimitSettings) SetEnabled ¶

func (o *RestRateLimitSettings) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (RestRateLimitSettings) ToMap ¶

func (o RestRateLimitSettings) ToMap() (map[string]interface{}, error)

type RestRawAccessToken ¶

type RestRawAccessToken struct {
	Token       *string    `json:"token,omitempty"`
	Name        *string    `json:"name,omitempty"`
	Id          *string    `json:"id,omitempty"`
	CreatedDate *time.Time `json:"createdDate,omitempty"`
}

RestRawAccessToken struct for RestRawAccessToken

func NewRestRawAccessToken ¶

func NewRestRawAccessToken() *RestRawAccessToken

NewRestRawAccessToken instantiates a new RestRawAccessToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRawAccessTokenWithDefaults ¶

func NewRestRawAccessTokenWithDefaults() *RestRawAccessToken

NewRestRawAccessTokenWithDefaults instantiates a new RestRawAccessToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRawAccessToken) GetCreatedDate ¶

func (o *RestRawAccessToken) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestRawAccessToken) GetCreatedDateOk ¶

func (o *RestRawAccessToken) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRawAccessToken) GetId ¶

func (o *RestRawAccessToken) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestRawAccessToken) GetIdOk ¶

func (o *RestRawAccessToken) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRawAccessToken) GetName ¶

func (o *RestRawAccessToken) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestRawAccessToken) GetNameOk ¶

func (o *RestRawAccessToken) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRawAccessToken) GetToken ¶

func (o *RestRawAccessToken) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*RestRawAccessToken) GetTokenOk ¶

func (o *RestRawAccessToken) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRawAccessToken) HasCreatedDate ¶

func (o *RestRawAccessToken) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestRawAccessToken) HasId ¶

func (o *RestRawAccessToken) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestRawAccessToken) HasName ¶

func (o *RestRawAccessToken) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestRawAccessToken) HasToken ¶

func (o *RestRawAccessToken) HasToken() bool

HasToken returns a boolean if a field has been set.

func (RestRawAccessToken) MarshalJSON ¶

func (o RestRawAccessToken) MarshalJSON() ([]byte, error)

func (*RestRawAccessToken) SetCreatedDate ¶

func (o *RestRawAccessToken) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*RestRawAccessToken) SetId ¶

func (o *RestRawAccessToken) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestRawAccessToken) SetName ¶

func (o *RestRawAccessToken) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestRawAccessToken) SetToken ¶

func (o *RestRawAccessToken) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (RestRawAccessToken) ToMap ¶

func (o RestRawAccessToken) ToMap() (map[string]interface{}, error)

type RestRefChange ¶

type RestRefChange struct {
	Type     *string                                  `json:"type,omitempty"`
	Ref      *RestPullRequestRebaseResultRefChangeRef `json:"ref,omitempty"`
	FromHash *string                                  `json:"fromHash,omitempty"`
	ToHash   *string                                  `json:"toHash,omitempty"`
	RefId    *string                                  `json:"refId,omitempty"`
}

RestRefChange struct for RestRefChange

func NewRestRefChange ¶

func NewRestRefChange() *RestRefChange

NewRestRefChange instantiates a new RestRefChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRefChangeWithDefaults ¶

func NewRestRefChangeWithDefaults() *RestRefChange

NewRestRefChangeWithDefaults instantiates a new RestRefChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRefChange) GetFromHash ¶

func (o *RestRefChange) GetFromHash() string

GetFromHash returns the FromHash field value if set, zero value otherwise.

func (*RestRefChange) GetFromHashOk ¶

func (o *RestRefChange) GetFromHashOk() (*string, bool)

GetFromHashOk returns a tuple with the FromHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefChange) GetRef ¶

GetRef returns the Ref field value if set, zero value otherwise.

func (*RestRefChange) GetRefId ¶

func (o *RestRefChange) GetRefId() string

GetRefId returns the RefId field value if set, zero value otherwise.

func (*RestRefChange) GetRefIdOk ¶

func (o *RestRefChange) GetRefIdOk() (*string, bool)

GetRefIdOk returns a tuple with the RefId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefChange) GetRefOk ¶

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefChange) GetToHash ¶

func (o *RestRefChange) GetToHash() string

GetToHash returns the ToHash field value if set, zero value otherwise.

func (*RestRefChange) GetToHashOk ¶

func (o *RestRefChange) GetToHashOk() (*string, bool)

GetToHashOk returns a tuple with the ToHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefChange) GetType ¶

func (o *RestRefChange) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestRefChange) GetTypeOk ¶

func (o *RestRefChange) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefChange) HasFromHash ¶

func (o *RestRefChange) HasFromHash() bool

HasFromHash returns a boolean if a field has been set.

func (*RestRefChange) HasRef ¶

func (o *RestRefChange) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*RestRefChange) HasRefId ¶

func (o *RestRefChange) HasRefId() bool

HasRefId returns a boolean if a field has been set.

func (*RestRefChange) HasToHash ¶

func (o *RestRefChange) HasToHash() bool

HasToHash returns a boolean if a field has been set.

func (*RestRefChange) HasType ¶

func (o *RestRefChange) HasType() bool

HasType returns a boolean if a field has been set.

func (RestRefChange) MarshalJSON ¶

func (o RestRefChange) MarshalJSON() ([]byte, error)

func (*RestRefChange) SetFromHash ¶

func (o *RestRefChange) SetFromHash(v string)

SetFromHash gets a reference to the given string and assigns it to the FromHash field.

func (*RestRefChange) SetRef ¶

SetRef gets a reference to the given RestPullRequestRebaseResultRefChangeRef and assigns it to the Ref field.

func (*RestRefChange) SetRefId ¶

func (o *RestRefChange) SetRefId(v string)

SetRefId gets a reference to the given string and assigns it to the RefId field.

func (*RestRefChange) SetToHash ¶

func (o *RestRefChange) SetToHash(v string)

SetToHash gets a reference to the given string and assigns it to the ToHash field.

func (*RestRefChange) SetType ¶

func (o *RestRefChange) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestRefChange) ToMap ¶

func (o RestRefChange) ToMap() (map[string]interface{}, error)

type RestRefMatcher ¶

type RestRefMatcher struct {
	Id        *string             `json:"id,omitempty"`
	Type      *RestRefMatcherType `json:"type,omitempty"`
	DisplayId *string             `json:"displayId,omitempty"`
}

RestRefMatcher struct for RestRefMatcher

func NewRestRefMatcher ¶

func NewRestRefMatcher() *RestRefMatcher

NewRestRefMatcher instantiates a new RestRefMatcher object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRefMatcherWithDefaults ¶

func NewRestRefMatcherWithDefaults() *RestRefMatcher

NewRestRefMatcherWithDefaults instantiates a new RestRefMatcher object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRefMatcher) GetDisplayId ¶

func (o *RestRefMatcher) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestRefMatcher) GetDisplayIdOk ¶

func (o *RestRefMatcher) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefMatcher) GetId ¶

func (o *RestRefMatcher) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestRefMatcher) GetIdOk ¶

func (o *RestRefMatcher) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefMatcher) GetType ¶

func (o *RestRefMatcher) GetType() RestRefMatcherType

GetType returns the Type field value if set, zero value otherwise.

func (*RestRefMatcher) GetTypeOk ¶

func (o *RestRefMatcher) GetTypeOk() (*RestRefMatcherType, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefMatcher) HasDisplayId ¶

func (o *RestRefMatcher) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestRefMatcher) HasId ¶

func (o *RestRefMatcher) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestRefMatcher) HasType ¶

func (o *RestRefMatcher) HasType() bool

HasType returns a boolean if a field has been set.

func (RestRefMatcher) MarshalJSON ¶

func (o RestRefMatcher) MarshalJSON() ([]byte, error)

func (*RestRefMatcher) SetDisplayId ¶

func (o *RestRefMatcher) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestRefMatcher) SetId ¶

func (o *RestRefMatcher) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestRefMatcher) SetType ¶

func (o *RestRefMatcher) SetType(v RestRefMatcherType)

SetType gets a reference to the given RestRefMatcherType and assigns it to the Type field.

func (RestRefMatcher) ToMap ¶

func (o RestRefMatcher) ToMap() (map[string]interface{}, error)

type RestRefMatcherType ¶

type RestRefMatcherType struct {
	Name *string `json:"name,omitempty"`
	Id   *string `json:"id,omitempty"`
}

RestRefMatcherType struct for RestRefMatcherType

func NewRestRefMatcherType ¶

func NewRestRefMatcherType() *RestRefMatcherType

NewRestRefMatcherType instantiates a new RestRefMatcherType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRefMatcherTypeWithDefaults ¶

func NewRestRefMatcherTypeWithDefaults() *RestRefMatcherType

NewRestRefMatcherTypeWithDefaults instantiates a new RestRefMatcherType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRefMatcherType) GetId ¶

func (o *RestRefMatcherType) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestRefMatcherType) GetIdOk ¶

func (o *RestRefMatcherType) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefMatcherType) GetName ¶

func (o *RestRefMatcherType) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestRefMatcherType) GetNameOk ¶

func (o *RestRefMatcherType) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefMatcherType) HasId ¶

func (o *RestRefMatcherType) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestRefMatcherType) HasName ¶

func (o *RestRefMatcherType) HasName() bool

HasName returns a boolean if a field has been set.

func (RestRefMatcherType) MarshalJSON ¶

func (o RestRefMatcherType) MarshalJSON() ([]byte, error)

func (*RestRefMatcherType) SetId ¶

func (o *RestRefMatcherType) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestRefMatcherType) SetName ¶

func (o *RestRefMatcherType) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (RestRefMatcherType) ToMap ¶

func (o RestRefMatcherType) ToMap() (map[string]interface{}, error)

type RestRefRestriction ¶

type RestRefRestriction struct {
	Id         *int32                                `json:"id,omitempty"`
	Type       *string                               `json:"type,omitempty"`
	Groups     []string                              `json:"groups,omitempty"`
	AccessKeys []RestSshAccessKey                    `json:"accessKeys,omitempty"`
	Matcher    *RestRequiredBuildConditionRefMatcher `json:"matcher,omitempty"`
	Scope      *RestPullRequestConditionScope        `json:"scope,omitempty"`
	Users      []RestApplicationUser                 `json:"users,omitempty"`
}

RestRefRestriction struct for RestRefRestriction

func NewRestRefRestriction ¶

func NewRestRefRestriction() *RestRefRestriction

NewRestRefRestriction instantiates a new RestRefRestriction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRefRestrictionWithDefaults ¶

func NewRestRefRestrictionWithDefaults() *RestRefRestriction

NewRestRefRestrictionWithDefaults instantiates a new RestRefRestriction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRefRestriction) GetAccessKeys ¶

func (o *RestRefRestriction) GetAccessKeys() []RestSshAccessKey

GetAccessKeys returns the AccessKeys field value if set, zero value otherwise.

func (*RestRefRestriction) GetAccessKeysOk ¶

func (o *RestRefRestriction) GetAccessKeysOk() ([]RestSshAccessKey, bool)

GetAccessKeysOk returns a tuple with the AccessKeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefRestriction) GetGroups ¶

func (o *RestRefRestriction) GetGroups() []string

GetGroups returns the Groups field value if set, zero value otherwise.

func (*RestRefRestriction) GetGroupsOk ¶

func (o *RestRefRestriction) GetGroupsOk() ([]string, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefRestriction) GetId ¶

func (o *RestRefRestriction) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestRefRestriction) GetIdOk ¶

func (o *RestRefRestriction) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefRestriction) GetMatcher ¶

GetMatcher returns the Matcher field value if set, zero value otherwise.

func (*RestRefRestriction) GetMatcherOk ¶

GetMatcherOk returns a tuple with the Matcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefRestriction) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestRefRestriction) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefRestriction) GetType ¶

func (o *RestRefRestriction) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestRefRestriction) GetTypeOk ¶

func (o *RestRefRestriction) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefRestriction) GetUsers ¶

func (o *RestRefRestriction) GetUsers() []RestApplicationUser

GetUsers returns the Users field value if set, zero value otherwise.

func (*RestRefRestriction) GetUsersOk ¶

func (o *RestRefRestriction) GetUsersOk() ([]RestApplicationUser, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefRestriction) HasAccessKeys ¶

func (o *RestRefRestriction) HasAccessKeys() bool

HasAccessKeys returns a boolean if a field has been set.

func (*RestRefRestriction) HasGroups ¶

func (o *RestRefRestriction) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*RestRefRestriction) HasId ¶

func (o *RestRefRestriction) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestRefRestriction) HasMatcher ¶

func (o *RestRefRestriction) HasMatcher() bool

HasMatcher returns a boolean if a field has been set.

func (*RestRefRestriction) HasScope ¶

func (o *RestRefRestriction) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*RestRefRestriction) HasType ¶

func (o *RestRefRestriction) HasType() bool

HasType returns a boolean if a field has been set.

func (*RestRefRestriction) HasUsers ¶

func (o *RestRefRestriction) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (RestRefRestriction) MarshalJSON ¶

func (o RestRefRestriction) MarshalJSON() ([]byte, error)

func (*RestRefRestriction) SetAccessKeys ¶

func (o *RestRefRestriction) SetAccessKeys(v []RestSshAccessKey)

SetAccessKeys gets a reference to the given []RestSshAccessKey and assigns it to the AccessKeys field.

func (*RestRefRestriction) SetGroups ¶

func (o *RestRefRestriction) SetGroups(v []string)

SetGroups gets a reference to the given []string and assigns it to the Groups field.

func (*RestRefRestriction) SetId ¶

func (o *RestRefRestriction) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestRefRestriction) SetMatcher ¶

SetMatcher gets a reference to the given RestRequiredBuildConditionRefMatcher and assigns it to the Matcher field.

func (*RestRefRestriction) SetScope ¶

SetScope gets a reference to the given RestPullRequestConditionScope and assigns it to the Scope field.

func (*RestRefRestriction) SetType ¶

func (o *RestRefRestriction) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestRefRestriction) SetUsers ¶

func (o *RestRefRestriction) SetUsers(v []RestApplicationUser)

SetUsers gets a reference to the given []RestApplicationUser and assigns it to the Users field.

func (RestRefRestriction) ToMap ¶

func (o RestRefRestriction) ToMap() (map[string]interface{}, error)

type RestRefSyncQueue ¶

type RestRefSyncQueue struct {
	Values []RestFarmSynchronizationRequest `json:"values,omitempty"`
}

RestRefSyncQueue struct for RestRefSyncQueue

func NewRestRefSyncQueue ¶

func NewRestRefSyncQueue() *RestRefSyncQueue

NewRestRefSyncQueue instantiates a new RestRefSyncQueue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRefSyncQueueWithDefaults ¶

func NewRestRefSyncQueueWithDefaults() *RestRefSyncQueue

NewRestRefSyncQueueWithDefaults instantiates a new RestRefSyncQueue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRefSyncQueue) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*RestRefSyncQueue) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncQueue) HasValues ¶

func (o *RestRefSyncQueue) HasValues() bool

HasValues returns a boolean if a field has been set.

func (RestRefSyncQueue) MarshalJSON ¶

func (o RestRefSyncQueue) MarshalJSON() ([]byte, error)

func (*RestRefSyncQueue) SetValues ¶

SetValues gets a reference to the given []RestFarmSynchronizationRequest and assigns it to the Values field.

func (RestRefSyncQueue) ToMap ¶

func (o RestRefSyncQueue) ToMap() (map[string]interface{}, error)

type RestRefSyncRequest ¶

type RestRefSyncRequest struct {
	Action  *string  `json:"action,omitempty"`
	Context *Context `json:"context,omitempty"`
	RefId   *string  `json:"refId,omitempty"`
}

RestRefSyncRequest struct for RestRefSyncRequest

func NewRestRefSyncRequest ¶

func NewRestRefSyncRequest() *RestRefSyncRequest

NewRestRefSyncRequest instantiates a new RestRefSyncRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRefSyncRequestWithDefaults ¶

func NewRestRefSyncRequestWithDefaults() *RestRefSyncRequest

NewRestRefSyncRequestWithDefaults instantiates a new RestRefSyncRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRefSyncRequest) GetAction ¶

func (o *RestRefSyncRequest) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*RestRefSyncRequest) GetActionOk ¶

func (o *RestRefSyncRequest) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncRequest) GetContext ¶

func (o *RestRefSyncRequest) GetContext() Context

GetContext returns the Context field value if set, zero value otherwise.

func (*RestRefSyncRequest) GetContextOk ¶

func (o *RestRefSyncRequest) GetContextOk() (*Context, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncRequest) GetRefId ¶

func (o *RestRefSyncRequest) GetRefId() string

GetRefId returns the RefId field value if set, zero value otherwise.

func (*RestRefSyncRequest) GetRefIdOk ¶

func (o *RestRefSyncRequest) GetRefIdOk() (*string, bool)

GetRefIdOk returns a tuple with the RefId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncRequest) HasAction ¶

func (o *RestRefSyncRequest) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*RestRefSyncRequest) HasContext ¶

func (o *RestRefSyncRequest) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*RestRefSyncRequest) HasRefId ¶

func (o *RestRefSyncRequest) HasRefId() bool

HasRefId returns a boolean if a field has been set.

func (RestRefSyncRequest) MarshalJSON ¶

func (o RestRefSyncRequest) MarshalJSON() ([]byte, error)

func (*RestRefSyncRequest) SetAction ¶

func (o *RestRefSyncRequest) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*RestRefSyncRequest) SetContext ¶

func (o *RestRefSyncRequest) SetContext(v Context)

SetContext gets a reference to the given Context and assigns it to the Context field.

func (*RestRefSyncRequest) SetRefId ¶

func (o *RestRefSyncRequest) SetRefId(v string)

SetRefId gets a reference to the given string and assigns it to the RefId field.

func (RestRefSyncRequest) ToMap ¶

func (o RestRefSyncRequest) ToMap() (map[string]interface{}, error)

type RestRefSyncStatus ¶

type RestRefSyncStatus struct {
	Enabled      *bool                          `json:"enabled,omitempty"`
	Available    *bool                          `json:"available,omitempty"`
	OrphanedRefs *RestRefSyncStatusOrphanedRefs `json:"orphanedRefs,omitempty"`
	LastSync     *float32                       `json:"lastSync,omitempty"`
	DivergedRefs *RestRefSyncStatusOrphanedRefs `json:"divergedRefs,omitempty"`
	AheadRefs    *RestRefSyncStatusOrphanedRefs `json:"aheadRefs,omitempty"`
}

RestRefSyncStatus struct for RestRefSyncStatus

func NewRestRefSyncStatus ¶

func NewRestRefSyncStatus() *RestRefSyncStatus

NewRestRefSyncStatus instantiates a new RestRefSyncStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRefSyncStatusWithDefaults ¶

func NewRestRefSyncStatusWithDefaults() *RestRefSyncStatus

NewRestRefSyncStatusWithDefaults instantiates a new RestRefSyncStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRefSyncStatus) GetAheadRefs ¶

GetAheadRefs returns the AheadRefs field value if set, zero value otherwise.

func (*RestRefSyncStatus) GetAheadRefsOk ¶

func (o *RestRefSyncStatus) GetAheadRefsOk() (*RestRefSyncStatusOrphanedRefs, bool)

GetAheadRefsOk returns a tuple with the AheadRefs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatus) GetAvailable ¶

func (o *RestRefSyncStatus) GetAvailable() bool

GetAvailable returns the Available field value if set, zero value otherwise.

func (*RestRefSyncStatus) GetAvailableOk ¶

func (o *RestRefSyncStatus) GetAvailableOk() (*bool, bool)

GetAvailableOk returns a tuple with the Available field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatus) GetDivergedRefs ¶

func (o *RestRefSyncStatus) GetDivergedRefs() RestRefSyncStatusOrphanedRefs

GetDivergedRefs returns the DivergedRefs field value if set, zero value otherwise.

func (*RestRefSyncStatus) GetDivergedRefsOk ¶

func (o *RestRefSyncStatus) GetDivergedRefsOk() (*RestRefSyncStatusOrphanedRefs, bool)

GetDivergedRefsOk returns a tuple with the DivergedRefs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatus) GetEnabled ¶

func (o *RestRefSyncStatus) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestRefSyncStatus) GetEnabledOk ¶

func (o *RestRefSyncStatus) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatus) GetLastSync ¶

func (o *RestRefSyncStatus) GetLastSync() float32

GetLastSync returns the LastSync field value if set, zero value otherwise.

func (*RestRefSyncStatus) GetLastSyncOk ¶

func (o *RestRefSyncStatus) GetLastSyncOk() (*float32, bool)

GetLastSyncOk returns a tuple with the LastSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatus) GetOrphanedRefs ¶

func (o *RestRefSyncStatus) GetOrphanedRefs() RestRefSyncStatusOrphanedRefs

GetOrphanedRefs returns the OrphanedRefs field value if set, zero value otherwise.

func (*RestRefSyncStatus) GetOrphanedRefsOk ¶

func (o *RestRefSyncStatus) GetOrphanedRefsOk() (*RestRefSyncStatusOrphanedRefs, bool)

GetOrphanedRefsOk returns a tuple with the OrphanedRefs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatus) HasAheadRefs ¶

func (o *RestRefSyncStatus) HasAheadRefs() bool

HasAheadRefs returns a boolean if a field has been set.

func (*RestRefSyncStatus) HasAvailable ¶

func (o *RestRefSyncStatus) HasAvailable() bool

HasAvailable returns a boolean if a field has been set.

func (*RestRefSyncStatus) HasDivergedRefs ¶

func (o *RestRefSyncStatus) HasDivergedRefs() bool

HasDivergedRefs returns a boolean if a field has been set.

func (*RestRefSyncStatus) HasEnabled ¶

func (o *RestRefSyncStatus) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*RestRefSyncStatus) HasLastSync ¶

func (o *RestRefSyncStatus) HasLastSync() bool

HasLastSync returns a boolean if a field has been set.

func (*RestRefSyncStatus) HasOrphanedRefs ¶

func (o *RestRefSyncStatus) HasOrphanedRefs() bool

HasOrphanedRefs returns a boolean if a field has been set.

func (RestRefSyncStatus) MarshalJSON ¶

func (o RestRefSyncStatus) MarshalJSON() ([]byte, error)

func (*RestRefSyncStatus) SetAheadRefs ¶

SetAheadRefs gets a reference to the given RestRefSyncStatusOrphanedRefs and assigns it to the AheadRefs field.

func (*RestRefSyncStatus) SetAvailable ¶

func (o *RestRefSyncStatus) SetAvailable(v bool)

SetAvailable gets a reference to the given bool and assigns it to the Available field.

func (*RestRefSyncStatus) SetDivergedRefs ¶

func (o *RestRefSyncStatus) SetDivergedRefs(v RestRefSyncStatusOrphanedRefs)

SetDivergedRefs gets a reference to the given RestRefSyncStatusOrphanedRefs and assigns it to the DivergedRefs field.

func (*RestRefSyncStatus) SetEnabled ¶

func (o *RestRefSyncStatus) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestRefSyncStatus) SetLastSync ¶

func (o *RestRefSyncStatus) SetLastSync(v float32)

SetLastSync gets a reference to the given float32 and assigns it to the LastSync field.

func (*RestRefSyncStatus) SetOrphanedRefs ¶

func (o *RestRefSyncStatus) SetOrphanedRefs(v RestRefSyncStatusOrphanedRefs)

SetOrphanedRefs gets a reference to the given RestRefSyncStatusOrphanedRefs and assigns it to the OrphanedRefs field.

func (RestRefSyncStatus) ToMap ¶

func (o RestRefSyncStatus) ToMap() (map[string]interface{}, error)

type RestRefSyncStatusOrphanedRefs ¶

type RestRefSyncStatusOrphanedRefs struct {
	State     *string `json:"state,omitempty"`
	Tag       *bool   `json:"tag,omitempty"`
	Id        *string `json:"id,omitempty"`
	Type      *string `json:"type,omitempty"`
	DisplayId *string `json:"displayId,omitempty"`
}

RestRefSyncStatusOrphanedRefs struct for RestRefSyncStatusOrphanedRefs

func NewRestRefSyncStatusOrphanedRefs ¶

func NewRestRefSyncStatusOrphanedRefs() *RestRefSyncStatusOrphanedRefs

NewRestRefSyncStatusOrphanedRefs instantiates a new RestRefSyncStatusOrphanedRefs object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRefSyncStatusOrphanedRefsWithDefaults ¶

func NewRestRefSyncStatusOrphanedRefsWithDefaults() *RestRefSyncStatusOrphanedRefs

NewRestRefSyncStatusOrphanedRefsWithDefaults instantiates a new RestRefSyncStatusOrphanedRefs object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRefSyncStatusOrphanedRefs) GetDisplayId ¶

func (o *RestRefSyncStatusOrphanedRefs) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestRefSyncStatusOrphanedRefs) GetDisplayIdOk ¶

func (o *RestRefSyncStatusOrphanedRefs) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatusOrphanedRefs) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestRefSyncStatusOrphanedRefs) GetIdOk ¶

func (o *RestRefSyncStatusOrphanedRefs) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatusOrphanedRefs) GetState ¶

func (o *RestRefSyncStatusOrphanedRefs) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestRefSyncStatusOrphanedRefs) GetStateOk ¶

func (o *RestRefSyncStatusOrphanedRefs) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatusOrphanedRefs) GetTag ¶

func (o *RestRefSyncStatusOrphanedRefs) GetTag() bool

GetTag returns the Tag field value if set, zero value otherwise.

func (*RestRefSyncStatusOrphanedRefs) GetTagOk ¶

func (o *RestRefSyncStatusOrphanedRefs) GetTagOk() (*bool, bool)

GetTagOk returns a tuple with the Tag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatusOrphanedRefs) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestRefSyncStatusOrphanedRefs) GetTypeOk ¶

func (o *RestRefSyncStatusOrphanedRefs) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRefSyncStatusOrphanedRefs) HasDisplayId ¶

func (o *RestRefSyncStatusOrphanedRefs) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestRefSyncStatusOrphanedRefs) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestRefSyncStatusOrphanedRefs) HasState ¶

func (o *RestRefSyncStatusOrphanedRefs) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestRefSyncStatusOrphanedRefs) HasTag ¶

func (o *RestRefSyncStatusOrphanedRefs) HasTag() bool

HasTag returns a boolean if a field has been set.

func (*RestRefSyncStatusOrphanedRefs) HasType ¶

func (o *RestRefSyncStatusOrphanedRefs) HasType() bool

HasType returns a boolean if a field has been set.

func (RestRefSyncStatusOrphanedRefs) MarshalJSON ¶

func (o RestRefSyncStatusOrphanedRefs) MarshalJSON() ([]byte, error)

func (*RestRefSyncStatusOrphanedRefs) SetDisplayId ¶

func (o *RestRefSyncStatusOrphanedRefs) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestRefSyncStatusOrphanedRefs) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestRefSyncStatusOrphanedRefs) SetState ¶

func (o *RestRefSyncStatusOrphanedRefs) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestRefSyncStatusOrphanedRefs) SetTag ¶

func (o *RestRefSyncStatusOrphanedRefs) SetTag(v bool)

SetTag gets a reference to the given bool and assigns it to the Tag field.

func (*RestRefSyncStatusOrphanedRefs) SetType ¶

func (o *RestRefSyncStatusOrphanedRefs) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestRefSyncStatusOrphanedRefs) ToMap ¶

func (o RestRefSyncStatusOrphanedRefs) ToMap() (map[string]interface{}, error)

type RestRejectedRef ¶

type RestRejectedRef struct {
	State     *string `json:"state,omitempty"`
	Tag       *bool   `json:"tag,omitempty"`
	Id        *string `json:"id,omitempty"`
	Type      *string `json:"type,omitempty"`
	DisplayId *string `json:"displayId,omitempty"`
}

RestRejectedRef struct for RestRejectedRef

func NewRestRejectedRef ¶

func NewRestRejectedRef() *RestRejectedRef

NewRestRejectedRef instantiates a new RestRejectedRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRejectedRefWithDefaults ¶

func NewRestRejectedRefWithDefaults() *RestRejectedRef

NewRestRejectedRefWithDefaults instantiates a new RestRejectedRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRejectedRef) GetDisplayId ¶

func (o *RestRejectedRef) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestRejectedRef) GetDisplayIdOk ¶

func (o *RestRejectedRef) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRejectedRef) GetId ¶

func (o *RestRejectedRef) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestRejectedRef) GetIdOk ¶

func (o *RestRejectedRef) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRejectedRef) GetState ¶

func (o *RestRejectedRef) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestRejectedRef) GetStateOk ¶

func (o *RestRejectedRef) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRejectedRef) GetTag ¶

func (o *RestRejectedRef) GetTag() bool

GetTag returns the Tag field value if set, zero value otherwise.

func (*RestRejectedRef) GetTagOk ¶

func (o *RestRejectedRef) GetTagOk() (*bool, bool)

GetTagOk returns a tuple with the Tag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRejectedRef) GetType ¶

func (o *RestRejectedRef) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestRejectedRef) GetTypeOk ¶

func (o *RestRejectedRef) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRejectedRef) HasDisplayId ¶

func (o *RestRejectedRef) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestRejectedRef) HasId ¶

func (o *RestRejectedRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestRejectedRef) HasState ¶

func (o *RestRejectedRef) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestRejectedRef) HasTag ¶

func (o *RestRejectedRef) HasTag() bool

HasTag returns a boolean if a field has been set.

func (*RestRejectedRef) HasType ¶

func (o *RestRejectedRef) HasType() bool

HasType returns a boolean if a field has been set.

func (RestRejectedRef) MarshalJSON ¶

func (o RestRejectedRef) MarshalJSON() ([]byte, error)

func (*RestRejectedRef) SetDisplayId ¶

func (o *RestRejectedRef) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestRejectedRef) SetId ¶

func (o *RestRejectedRef) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestRejectedRef) SetState ¶

func (o *RestRejectedRef) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestRejectedRef) SetTag ¶

func (o *RestRejectedRef) SetTag(v bool)

SetTag gets a reference to the given bool and assigns it to the Tag field.

func (*RestRejectedRef) SetType ¶

func (o *RestRejectedRef) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestRejectedRef) ToMap ¶

func (o RestRejectedRef) ToMap() (map[string]interface{}, error)

type RestRepositoriesExportRequest ¶

type RestRepositoriesExportRequest struct {
	Includes []RestRepositorySelector `json:"includes"`
}

RestRepositoriesExportRequest struct for RestRepositoriesExportRequest

func NewRestRepositoriesExportRequest ¶

func NewRestRepositoriesExportRequest(includes []RestRepositorySelector) *RestRepositoriesExportRequest

NewRestRepositoriesExportRequest instantiates a new RestRepositoriesExportRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoriesExportRequestWithDefaults ¶

func NewRestRepositoriesExportRequestWithDefaults() *RestRepositoriesExportRequest

NewRestRepositoriesExportRequestWithDefaults instantiates a new RestRepositoriesExportRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositoriesExportRequest) GetIncludes ¶

GetIncludes returns the Includes field value

func (*RestRepositoriesExportRequest) GetIncludesOk ¶

GetIncludesOk returns a tuple with the Includes field value and a boolean to check if the value has been set.

func (RestRepositoriesExportRequest) MarshalJSON ¶

func (o RestRepositoriesExportRequest) MarshalJSON() ([]byte, error)

func (*RestRepositoriesExportRequest) SetIncludes ¶

SetIncludes sets field value

func (RestRepositoriesExportRequest) ToMap ¶

func (o RestRepositoriesExportRequest) ToMap() (map[string]interface{}, error)

type RestRepository ¶

type RestRepository struct {
	Name          *string                                  `json:"name,omitempty"`
	Id            *int32                                   `json:"id,omitempty"`
	State         *string                                  `json:"state,omitempty"`
	Public        *bool                                    `json:"public,omitempty"`
	Project       *RestPullRequestFromRefRepositoryProject `json:"project,omitempty"`
	Description   *string                                  `json:"description,omitempty"`
	DefaultBranch *string                                  `json:"defaultBranch,omitempty"`
	RelatedLinks  map[string]interface{}                   `json:"relatedLinks,omitempty"`
	Partition     *int32                                   `json:"partition,omitempty"`
	Origin        *RestPullRequestFromRefRepositoryOrigin  `json:"origin,omitempty"`
	HierarchyId   *string                                  `json:"hierarchyId,omitempty"`
	StatusMessage *string                                  `json:"statusMessage,omitempty"`
	Archived      *bool                                    `json:"archived,omitempty"`
	Forkable      *bool                                    `json:"forkable,omitempty"`
	ScmId         *string                                  `json:"scmId,omitempty"`
	Slug          *string                                  `json:"slug,omitempty"`
	Scope         *string                                  `json:"scope,omitempty"`
	Links         map[string]interface{}                   `json:"links,omitempty"`
}

RestRepository struct for RestRepository

func NewRestRepository ¶

func NewRestRepository() *RestRepository

NewRestRepository instantiates a new RestRepository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoryWithDefaults ¶

func NewRestRepositoryWithDefaults() *RestRepository

NewRestRepositoryWithDefaults instantiates a new RestRepository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepository) GetArchived ¶

func (o *RestRepository) GetArchived() bool

GetArchived returns the Archived field value if set, zero value otherwise.

func (*RestRepository) GetArchivedOk ¶

func (o *RestRepository) GetArchivedOk() (*bool, bool)

GetArchivedOk returns a tuple with the Archived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetDefaultBranch ¶

func (o *RestRepository) GetDefaultBranch() string

GetDefaultBranch returns the DefaultBranch field value if set, zero value otherwise.

func (*RestRepository) GetDefaultBranchOk ¶

func (o *RestRepository) GetDefaultBranchOk() (*string, bool)

GetDefaultBranchOk returns a tuple with the DefaultBranch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetDescription ¶

func (o *RestRepository) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestRepository) GetDescriptionOk ¶

func (o *RestRepository) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetForkable ¶

func (o *RestRepository) GetForkable() bool

GetForkable returns the Forkable field value if set, zero value otherwise.

func (*RestRepository) GetForkableOk ¶

func (o *RestRepository) GetForkableOk() (*bool, bool)

GetForkableOk returns a tuple with the Forkable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetHierarchyId ¶

func (o *RestRepository) GetHierarchyId() string

GetHierarchyId returns the HierarchyId field value if set, zero value otherwise.

func (*RestRepository) GetHierarchyIdOk ¶

func (o *RestRepository) GetHierarchyIdOk() (*string, bool)

GetHierarchyIdOk returns a tuple with the HierarchyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetId ¶

func (o *RestRepository) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestRepository) GetIdOk ¶

func (o *RestRepository) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestRepository) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestRepository) GetLinksOk ¶

func (o *RestRepository) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetName ¶

func (o *RestRepository) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestRepository) GetNameOk ¶

func (o *RestRepository) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetOrigin ¶

GetOrigin returns the Origin field value if set, zero value otherwise.

func (*RestRepository) GetOriginOk ¶

GetOriginOk returns a tuple with the Origin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetPartition ¶

func (o *RestRepository) GetPartition() int32

GetPartition returns the Partition field value if set, zero value otherwise.

func (*RestRepository) GetPartitionOk ¶

func (o *RestRepository) GetPartitionOk() (*int32, bool)

GetPartitionOk returns a tuple with the Partition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*RestRepository) GetProjectOk ¶

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetPublic ¶

func (o *RestRepository) GetPublic() bool

GetPublic returns the Public field value if set, zero value otherwise.

func (*RestRepository) GetPublicOk ¶

func (o *RestRepository) GetPublicOk() (*bool, bool)

GetPublicOk returns a tuple with the Public field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestRepository) GetRelatedLinks() map[string]interface{}

GetRelatedLinks returns the RelatedLinks field value if set, zero value otherwise.

func (*RestRepository) GetRelatedLinksOk ¶

func (o *RestRepository) GetRelatedLinksOk() (map[string]interface{}, bool)

GetRelatedLinksOk returns a tuple with the RelatedLinks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetScmId ¶

func (o *RestRepository) GetScmId() string

GetScmId returns the ScmId field value if set, zero value otherwise.

func (*RestRepository) GetScmIdOk ¶

func (o *RestRepository) GetScmIdOk() (*string, bool)

GetScmIdOk returns a tuple with the ScmId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetScope ¶

func (o *RestRepository) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestRepository) GetScopeOk ¶

func (o *RestRepository) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetSlug ¶

func (o *RestRepository) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestRepository) GetSlugOk ¶

func (o *RestRepository) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetState ¶

func (o *RestRepository) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestRepository) GetStateOk ¶

func (o *RestRepository) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) GetStatusMessage ¶

func (o *RestRepository) GetStatusMessage() string

GetStatusMessage returns the StatusMessage field value if set, zero value otherwise.

func (*RestRepository) GetStatusMessageOk ¶

func (o *RestRepository) GetStatusMessageOk() (*string, bool)

GetStatusMessageOk returns a tuple with the StatusMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepository) HasArchived ¶

func (o *RestRepository) HasArchived() bool

HasArchived returns a boolean if a field has been set.

func (*RestRepository) HasDefaultBranch ¶

func (o *RestRepository) HasDefaultBranch() bool

HasDefaultBranch returns a boolean if a field has been set.

func (*RestRepository) HasDescription ¶

func (o *RestRepository) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestRepository) HasForkable ¶

func (o *RestRepository) HasForkable() bool

HasForkable returns a boolean if a field has been set.

func (*RestRepository) HasHierarchyId ¶

func (o *RestRepository) HasHierarchyId() bool

HasHierarchyId returns a boolean if a field has been set.

func (*RestRepository) HasId ¶

func (o *RestRepository) HasId() bool

HasId returns a boolean if a field has been set.

func (o *RestRepository) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestRepository) HasName ¶

func (o *RestRepository) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestRepository) HasOrigin ¶

func (o *RestRepository) HasOrigin() bool

HasOrigin returns a boolean if a field has been set.

func (*RestRepository) HasPartition ¶

func (o *RestRepository) HasPartition() bool

HasPartition returns a boolean if a field has been set.

func (*RestRepository) HasProject ¶

func (o *RestRepository) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*RestRepository) HasPublic ¶

func (o *RestRepository) HasPublic() bool

HasPublic returns a boolean if a field has been set.

func (o *RestRepository) HasRelatedLinks() bool

HasRelatedLinks returns a boolean if a field has been set.

func (*RestRepository) HasScmId ¶

func (o *RestRepository) HasScmId() bool

HasScmId returns a boolean if a field has been set.

func (*RestRepository) HasScope ¶

func (o *RestRepository) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*RestRepository) HasSlug ¶

func (o *RestRepository) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (*RestRepository) HasState ¶

func (o *RestRepository) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestRepository) HasStatusMessage ¶

func (o *RestRepository) HasStatusMessage() bool

HasStatusMessage returns a boolean if a field has been set.

func (RestRepository) MarshalJSON ¶

func (o RestRepository) MarshalJSON() ([]byte, error)

func (*RestRepository) SetArchived ¶

func (o *RestRepository) SetArchived(v bool)

SetArchived gets a reference to the given bool and assigns it to the Archived field.

func (*RestRepository) SetDefaultBranch ¶

func (o *RestRepository) SetDefaultBranch(v string)

SetDefaultBranch gets a reference to the given string and assigns it to the DefaultBranch field.

func (*RestRepository) SetDescription ¶

func (o *RestRepository) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestRepository) SetForkable ¶

func (o *RestRepository) SetForkable(v bool)

SetForkable gets a reference to the given bool and assigns it to the Forkable field.

func (*RestRepository) SetHierarchyId ¶

func (o *RestRepository) SetHierarchyId(v string)

SetHierarchyId gets a reference to the given string and assigns it to the HierarchyId field.

func (*RestRepository) SetId ¶

func (o *RestRepository) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *RestRepository) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestRepository) SetName ¶

func (o *RestRepository) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestRepository) SetOrigin ¶

SetOrigin gets a reference to the given RestPullRequestFromRefRepositoryOrigin and assigns it to the Origin field.

func (*RestRepository) SetPartition ¶

func (o *RestRepository) SetPartition(v int32)

SetPartition gets a reference to the given int32 and assigns it to the Partition field.

func (*RestRepository) SetProject ¶

SetProject gets a reference to the given RestPullRequestFromRefRepositoryProject and assigns it to the Project field.

func (*RestRepository) SetPublic ¶

func (o *RestRepository) SetPublic(v bool)

SetPublic gets a reference to the given bool and assigns it to the Public field.

func (o *RestRepository) SetRelatedLinks(v map[string]interface{})

SetRelatedLinks gets a reference to the given map[string]interface{} and assigns it to the RelatedLinks field.

func (*RestRepository) SetScmId ¶

func (o *RestRepository) SetScmId(v string)

SetScmId gets a reference to the given string and assigns it to the ScmId field.

func (*RestRepository) SetScope ¶

func (o *RestRepository) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*RestRepository) SetSlug ¶

func (o *RestRepository) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestRepository) SetState ¶

func (o *RestRepository) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestRepository) SetStatusMessage ¶

func (o *RestRepository) SetStatusMessage(v string)

SetStatusMessage gets a reference to the given string and assigns it to the StatusMessage field.

func (RestRepository) ToMap ¶

func (o RestRepository) ToMap() (map[string]interface{}, error)

type RestRepositoryHook ¶

type RestRepositoryHook struct {
	Enabled    *bool                         `json:"enabled,omitempty"`
	Configured *bool                         `json:"configured,omitempty"`
	Details    *RepositoryHookDetails        `json:"details,omitempty"`
	Scope      *RestAutoDeclineSettingsScope `json:"scope,omitempty"`
}

RestRepositoryHook struct for RestRepositoryHook

func NewRestRepositoryHook ¶

func NewRestRepositoryHook() *RestRepositoryHook

NewRestRepositoryHook instantiates a new RestRepositoryHook object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoryHookWithDefaults ¶

func NewRestRepositoryHookWithDefaults() *RestRepositoryHook

NewRestRepositoryHookWithDefaults instantiates a new RestRepositoryHook object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositoryHook) GetConfigured ¶

func (o *RestRepositoryHook) GetConfigured() bool

GetConfigured returns the Configured field value if set, zero value otherwise.

func (*RestRepositoryHook) GetConfiguredOk ¶

func (o *RestRepositoryHook) GetConfiguredOk() (*bool, bool)

GetConfiguredOk returns a tuple with the Configured field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryHook) GetDetails ¶

func (o *RestRepositoryHook) GetDetails() RepositoryHookDetails

GetDetails returns the Details field value if set, zero value otherwise.

func (*RestRepositoryHook) GetDetailsOk ¶

func (o *RestRepositoryHook) GetDetailsOk() (*RepositoryHookDetails, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryHook) GetEnabled ¶

func (o *RestRepositoryHook) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestRepositoryHook) GetEnabledOk ¶

func (o *RestRepositoryHook) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryHook) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestRepositoryHook) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryHook) HasConfigured ¶

func (o *RestRepositoryHook) HasConfigured() bool

HasConfigured returns a boolean if a field has been set.

func (*RestRepositoryHook) HasDetails ¶

func (o *RestRepositoryHook) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*RestRepositoryHook) HasEnabled ¶

func (o *RestRepositoryHook) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*RestRepositoryHook) HasScope ¶

func (o *RestRepositoryHook) HasScope() bool

HasScope returns a boolean if a field has been set.

func (RestRepositoryHook) MarshalJSON ¶

func (o RestRepositoryHook) MarshalJSON() ([]byte, error)

func (*RestRepositoryHook) SetConfigured ¶

func (o *RestRepositoryHook) SetConfigured(v bool)

SetConfigured gets a reference to the given bool and assigns it to the Configured field.

func (*RestRepositoryHook) SetDetails ¶

func (o *RestRepositoryHook) SetDetails(v RepositoryHookDetails)

SetDetails gets a reference to the given RepositoryHookDetails and assigns it to the Details field.

func (*RestRepositoryHook) SetEnabled ¶

func (o *RestRepositoryHook) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestRepositoryHook) SetScope ¶

SetScope gets a reference to the given RestAutoDeclineSettingsScope and assigns it to the Scope field.

func (RestRepositoryHook) ToMap ¶

func (o RestRepositoryHook) ToMap() (map[string]interface{}, error)

type RestRepositoryHookVeto ¶

type RestRepositoryHookVeto struct {
	SummaryMessage  *string `json:"summaryMessage,omitempty"`
	DetailedMessage *string `json:"detailedMessage,omitempty"`
}

RestRepositoryHookVeto struct for RestRepositoryHookVeto

func NewRestRepositoryHookVeto ¶

func NewRestRepositoryHookVeto() *RestRepositoryHookVeto

NewRestRepositoryHookVeto instantiates a new RestRepositoryHookVeto object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoryHookVetoWithDefaults ¶

func NewRestRepositoryHookVetoWithDefaults() *RestRepositoryHookVeto

NewRestRepositoryHookVetoWithDefaults instantiates a new RestRepositoryHookVeto object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositoryHookVeto) GetDetailedMessage ¶

func (o *RestRepositoryHookVeto) GetDetailedMessage() string

GetDetailedMessage returns the DetailedMessage field value if set, zero value otherwise.

func (*RestRepositoryHookVeto) GetDetailedMessageOk ¶

func (o *RestRepositoryHookVeto) GetDetailedMessageOk() (*string, bool)

GetDetailedMessageOk returns a tuple with the DetailedMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryHookVeto) GetSummaryMessage ¶

func (o *RestRepositoryHookVeto) GetSummaryMessage() string

GetSummaryMessage returns the SummaryMessage field value if set, zero value otherwise.

func (*RestRepositoryHookVeto) GetSummaryMessageOk ¶

func (o *RestRepositoryHookVeto) GetSummaryMessageOk() (*string, bool)

GetSummaryMessageOk returns a tuple with the SummaryMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryHookVeto) HasDetailedMessage ¶

func (o *RestRepositoryHookVeto) HasDetailedMessage() bool

HasDetailedMessage returns a boolean if a field has been set.

func (*RestRepositoryHookVeto) HasSummaryMessage ¶

func (o *RestRepositoryHookVeto) HasSummaryMessage() bool

HasSummaryMessage returns a boolean if a field has been set.

func (RestRepositoryHookVeto) MarshalJSON ¶

func (o RestRepositoryHookVeto) MarshalJSON() ([]byte, error)

func (*RestRepositoryHookVeto) SetDetailedMessage ¶

func (o *RestRepositoryHookVeto) SetDetailedMessage(v string)

SetDetailedMessage gets a reference to the given string and assigns it to the DetailedMessage field.

func (*RestRepositoryHookVeto) SetSummaryMessage ¶

func (o *RestRepositoryHookVeto) SetSummaryMessage(v string)

SetSummaryMessage gets a reference to the given string and assigns it to the SummaryMessage field.

func (RestRepositoryHookVeto) ToMap ¶

func (o RestRepositoryHookVeto) ToMap() (map[string]interface{}, error)

type RestRepositoryMirrorEvent ¶

type RestRepositoryMirrorEvent struct {
	MirrorRepoId   *int32  `json:"mirrorRepoId,omitempty"`
	Type           *string `json:"type,omitempty"`
	UpstreamRepoId *string `json:"upstreamRepoId,omitempty"`
}

RestRepositoryMirrorEvent struct for RestRepositoryMirrorEvent

func NewRestRepositoryMirrorEvent ¶

func NewRestRepositoryMirrorEvent() *RestRepositoryMirrorEvent

NewRestRepositoryMirrorEvent instantiates a new RestRepositoryMirrorEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoryMirrorEventWithDefaults ¶

func NewRestRepositoryMirrorEventWithDefaults() *RestRepositoryMirrorEvent

NewRestRepositoryMirrorEventWithDefaults instantiates a new RestRepositoryMirrorEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositoryMirrorEvent) GetMirrorRepoId ¶

func (o *RestRepositoryMirrorEvent) GetMirrorRepoId() int32

GetMirrorRepoId returns the MirrorRepoId field value if set, zero value otherwise.

func (*RestRepositoryMirrorEvent) GetMirrorRepoIdOk ¶

func (o *RestRepositoryMirrorEvent) GetMirrorRepoIdOk() (*int32, bool)

GetMirrorRepoIdOk returns a tuple with the MirrorRepoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryMirrorEvent) GetType ¶

func (o *RestRepositoryMirrorEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestRepositoryMirrorEvent) GetTypeOk ¶

func (o *RestRepositoryMirrorEvent) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryMirrorEvent) GetUpstreamRepoId ¶

func (o *RestRepositoryMirrorEvent) GetUpstreamRepoId() string

GetUpstreamRepoId returns the UpstreamRepoId field value if set, zero value otherwise.

func (*RestRepositoryMirrorEvent) GetUpstreamRepoIdOk ¶

func (o *RestRepositoryMirrorEvent) GetUpstreamRepoIdOk() (*string, bool)

GetUpstreamRepoIdOk returns a tuple with the UpstreamRepoId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryMirrorEvent) HasMirrorRepoId ¶

func (o *RestRepositoryMirrorEvent) HasMirrorRepoId() bool

HasMirrorRepoId returns a boolean if a field has been set.

func (*RestRepositoryMirrorEvent) HasType ¶

func (o *RestRepositoryMirrorEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (*RestRepositoryMirrorEvent) HasUpstreamRepoId ¶

func (o *RestRepositoryMirrorEvent) HasUpstreamRepoId() bool

HasUpstreamRepoId returns a boolean if a field has been set.

func (RestRepositoryMirrorEvent) MarshalJSON ¶

func (o RestRepositoryMirrorEvent) MarshalJSON() ([]byte, error)

func (*RestRepositoryMirrorEvent) SetMirrorRepoId ¶

func (o *RestRepositoryMirrorEvent) SetMirrorRepoId(v int32)

SetMirrorRepoId gets a reference to the given int32 and assigns it to the MirrorRepoId field.

func (*RestRepositoryMirrorEvent) SetType ¶

func (o *RestRepositoryMirrorEvent) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestRepositoryMirrorEvent) SetUpstreamRepoId ¶

func (o *RestRepositoryMirrorEvent) SetUpstreamRepoId(v string)

SetUpstreamRepoId gets a reference to the given string and assigns it to the UpstreamRepoId field.

func (RestRepositoryMirrorEvent) ToMap ¶

func (o RestRepositoryMirrorEvent) ToMap() (map[string]interface{}, error)

type RestRepositoryPolicy ¶

type RestRepositoryPolicy struct {
	// The permission required to delete repositories. Must be one of: \"SYS_ADMIN\", \"ADMIN\", \"PROJECT_ADMIN\", \"REPO_ADMIN\".
	Permission *string `json:"permission,omitempty"`
}

RestRepositoryPolicy struct for RestRepositoryPolicy

func NewRestRepositoryPolicy ¶

func NewRestRepositoryPolicy() *RestRepositoryPolicy

NewRestRepositoryPolicy instantiates a new RestRepositoryPolicy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoryPolicyWithDefaults ¶

func NewRestRepositoryPolicyWithDefaults() *RestRepositoryPolicy

NewRestRepositoryPolicyWithDefaults instantiates a new RestRepositoryPolicy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositoryPolicy) GetPermission ¶

func (o *RestRepositoryPolicy) GetPermission() string

GetPermission returns the Permission field value if set, zero value otherwise.

func (*RestRepositoryPolicy) GetPermissionOk ¶

func (o *RestRepositoryPolicy) GetPermissionOk() (*string, bool)

GetPermissionOk returns a tuple with the Permission field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPolicy) HasPermission ¶

func (o *RestRepositoryPolicy) HasPermission() bool

HasPermission returns a boolean if a field has been set.

func (RestRepositoryPolicy) MarshalJSON ¶

func (o RestRepositoryPolicy) MarshalJSON() ([]byte, error)

func (*RestRepositoryPolicy) SetPermission ¶

func (o *RestRepositoryPolicy) SetPermission(v string)

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (RestRepositoryPolicy) ToMap ¶

func (o RestRepositoryPolicy) ToMap() (map[string]interface{}, error)

type RestRepositoryPullRequestSettings ¶

type RestRepositoryPullRequestSettings struct {
	RequiredAllTasksComplete           *bool                                                      `json:"requiredAllTasksComplete,omitempty"`
	RequiredApproversDeprecated        *int32                                                     `json:"requiredApproversDeprecated,omitempty"`
	RequiredSuccessfulBuilds           *RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds `json:"requiredSuccessfulBuilds,omitempty"`
	RequiredSuccessfulBuildsDeprecated *int32                                                     `json:"requiredSuccessfulBuildsDeprecated,omitempty"`
	RequiredAllApprovers               *bool                                                      `json:"requiredAllApprovers,omitempty"`
	RequiredApprovers                  *RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds `json:"requiredApprovers,omitempty"`
	MergeConfig                        *RestPullRequestSettingsMergeConfig                        `json:"mergeConfig,omitempty"`
}

RestRepositoryPullRequestSettings struct for RestRepositoryPullRequestSettings

func NewRestRepositoryPullRequestSettings ¶

func NewRestRepositoryPullRequestSettings() *RestRepositoryPullRequestSettings

NewRestRepositoryPullRequestSettings instantiates a new RestRepositoryPullRequestSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoryPullRequestSettingsWithDefaults ¶

func NewRestRepositoryPullRequestSettingsWithDefaults() *RestRepositoryPullRequestSettings

NewRestRepositoryPullRequestSettingsWithDefaults instantiates a new RestRepositoryPullRequestSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositoryPullRequestSettings) GetMergeConfig ¶

GetMergeConfig returns the MergeConfig field value if set, zero value otherwise.

func (*RestRepositoryPullRequestSettings) GetMergeConfigOk ¶

GetMergeConfigOk returns a tuple with the MergeConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPullRequestSettings) GetRequiredAllApprovers ¶

func (o *RestRepositoryPullRequestSettings) GetRequiredAllApprovers() bool

GetRequiredAllApprovers returns the RequiredAllApprovers field value if set, zero value otherwise.

func (*RestRepositoryPullRequestSettings) GetRequiredAllApproversOk ¶

func (o *RestRepositoryPullRequestSettings) GetRequiredAllApproversOk() (*bool, bool)

GetRequiredAllApproversOk returns a tuple with the RequiredAllApprovers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPullRequestSettings) GetRequiredAllTasksComplete ¶

func (o *RestRepositoryPullRequestSettings) GetRequiredAllTasksComplete() bool

GetRequiredAllTasksComplete returns the RequiredAllTasksComplete field value if set, zero value otherwise.

func (*RestRepositoryPullRequestSettings) GetRequiredAllTasksCompleteOk ¶

func (o *RestRepositoryPullRequestSettings) GetRequiredAllTasksCompleteOk() (*bool, bool)

GetRequiredAllTasksCompleteOk returns a tuple with the RequiredAllTasksComplete field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPullRequestSettings) GetRequiredApprovers ¶

GetRequiredApprovers returns the RequiredApprovers field value if set, zero value otherwise.

func (*RestRepositoryPullRequestSettings) GetRequiredApproversDeprecated ¶

func (o *RestRepositoryPullRequestSettings) GetRequiredApproversDeprecated() int32

GetRequiredApproversDeprecated returns the RequiredApproversDeprecated field value if set, zero value otherwise.

func (*RestRepositoryPullRequestSettings) GetRequiredApproversDeprecatedOk ¶

func (o *RestRepositoryPullRequestSettings) GetRequiredApproversDeprecatedOk() (*int32, bool)

GetRequiredApproversDeprecatedOk returns a tuple with the RequiredApproversDeprecated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPullRequestSettings) GetRequiredApproversOk ¶

GetRequiredApproversOk returns a tuple with the RequiredApprovers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPullRequestSettings) GetRequiredSuccessfulBuilds ¶

GetRequiredSuccessfulBuilds returns the RequiredSuccessfulBuilds field value if set, zero value otherwise.

func (*RestRepositoryPullRequestSettings) GetRequiredSuccessfulBuildsDeprecated ¶

func (o *RestRepositoryPullRequestSettings) GetRequiredSuccessfulBuildsDeprecated() int32

GetRequiredSuccessfulBuildsDeprecated returns the RequiredSuccessfulBuildsDeprecated field value if set, zero value otherwise.

func (*RestRepositoryPullRequestSettings) GetRequiredSuccessfulBuildsDeprecatedOk ¶

func (o *RestRepositoryPullRequestSettings) GetRequiredSuccessfulBuildsDeprecatedOk() (*int32, bool)

GetRequiredSuccessfulBuildsDeprecatedOk returns a tuple with the RequiredSuccessfulBuildsDeprecated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPullRequestSettings) GetRequiredSuccessfulBuildsOk ¶

GetRequiredSuccessfulBuildsOk returns a tuple with the RequiredSuccessfulBuilds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPullRequestSettings) HasMergeConfig ¶

func (o *RestRepositoryPullRequestSettings) HasMergeConfig() bool

HasMergeConfig returns a boolean if a field has been set.

func (*RestRepositoryPullRequestSettings) HasRequiredAllApprovers ¶

func (o *RestRepositoryPullRequestSettings) HasRequiredAllApprovers() bool

HasRequiredAllApprovers returns a boolean if a field has been set.

func (*RestRepositoryPullRequestSettings) HasRequiredAllTasksComplete ¶

func (o *RestRepositoryPullRequestSettings) HasRequiredAllTasksComplete() bool

HasRequiredAllTasksComplete returns a boolean if a field has been set.

func (*RestRepositoryPullRequestSettings) HasRequiredApprovers ¶

func (o *RestRepositoryPullRequestSettings) HasRequiredApprovers() bool

HasRequiredApprovers returns a boolean if a field has been set.

func (*RestRepositoryPullRequestSettings) HasRequiredApproversDeprecated ¶

func (o *RestRepositoryPullRequestSettings) HasRequiredApproversDeprecated() bool

HasRequiredApproversDeprecated returns a boolean if a field has been set.

func (*RestRepositoryPullRequestSettings) HasRequiredSuccessfulBuilds ¶

func (o *RestRepositoryPullRequestSettings) HasRequiredSuccessfulBuilds() bool

HasRequiredSuccessfulBuilds returns a boolean if a field has been set.

func (*RestRepositoryPullRequestSettings) HasRequiredSuccessfulBuildsDeprecated ¶

func (o *RestRepositoryPullRequestSettings) HasRequiredSuccessfulBuildsDeprecated() bool

HasRequiredSuccessfulBuildsDeprecated returns a boolean if a field has been set.

func (RestRepositoryPullRequestSettings) MarshalJSON ¶

func (o RestRepositoryPullRequestSettings) MarshalJSON() ([]byte, error)

func (*RestRepositoryPullRequestSettings) SetMergeConfig ¶

SetMergeConfig gets a reference to the given RestPullRequestSettingsMergeConfig and assigns it to the MergeConfig field.

func (*RestRepositoryPullRequestSettings) SetRequiredAllApprovers ¶

func (o *RestRepositoryPullRequestSettings) SetRequiredAllApprovers(v bool)

SetRequiredAllApprovers gets a reference to the given bool and assigns it to the RequiredAllApprovers field.

func (*RestRepositoryPullRequestSettings) SetRequiredAllTasksComplete ¶

func (o *RestRepositoryPullRequestSettings) SetRequiredAllTasksComplete(v bool)

SetRequiredAllTasksComplete gets a reference to the given bool and assigns it to the RequiredAllTasksComplete field.

func (*RestRepositoryPullRequestSettings) SetRequiredApprovers ¶

SetRequiredApprovers gets a reference to the given RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds and assigns it to the RequiredApprovers field.

func (*RestRepositoryPullRequestSettings) SetRequiredApproversDeprecated ¶

func (o *RestRepositoryPullRequestSettings) SetRequiredApproversDeprecated(v int32)

SetRequiredApproversDeprecated gets a reference to the given int32 and assigns it to the RequiredApproversDeprecated field.

func (*RestRepositoryPullRequestSettings) SetRequiredSuccessfulBuilds ¶

SetRequiredSuccessfulBuilds gets a reference to the given RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds and assigns it to the RequiredSuccessfulBuilds field.

func (*RestRepositoryPullRequestSettings) SetRequiredSuccessfulBuildsDeprecated ¶

func (o *RestRepositoryPullRequestSettings) SetRequiredSuccessfulBuildsDeprecated(v int32)

SetRequiredSuccessfulBuildsDeprecated gets a reference to the given int32 and assigns it to the RequiredSuccessfulBuildsDeprecated field.

func (RestRepositoryPullRequestSettings) ToMap ¶

func (o RestRepositoryPullRequestSettings) ToMap() (map[string]interface{}, error)

type RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds ¶

type RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds struct {
	Enabled *bool   `json:"enabled,omitempty"`
	Count   *string `json:"count,omitempty"`
}

RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds struct for RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds

func NewRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds ¶

func NewRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds() *RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds

NewRestRepositoryPullRequestSettingsRequiredSuccessfulBuilds instantiates a new RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoryPullRequestSettingsRequiredSuccessfulBuildsWithDefaults ¶

func NewRestRepositoryPullRequestSettingsRequiredSuccessfulBuildsWithDefaults() *RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds

NewRestRepositoryPullRequestSettingsRequiredSuccessfulBuildsWithDefaults instantiates a new RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) GetCountOk ¶

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) GetEnabledOk ¶

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) HasCount ¶

HasCount returns a boolean if a field has been set.

func (*RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) MarshalJSON ¶

func (*RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) SetCount ¶

SetCount gets a reference to the given string and assigns it to the Count field.

func (*RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (RestRepositoryPullRequestSettingsRequiredSuccessfulBuilds) ToMap ¶

type RestRepositoryRefChangeActivity ¶

type RestRepositoryRefChangeActivity struct {
	RefChange   *RestRepositoryRefChangeActivityRefChange `json:"refChange,omitempty"`
	Trigger     *string                                   `json:"trigger,omitempty"`
	Repository  *RestPullRequestFromRefRepository         `json:"repository,omitempty"`
	Id          *int64                                    `json:"id,omitempty"`
	CreatedDate *int64                                    `json:"createdDate,omitempty"`
	User        *RestPullRequestParticipantUser           `json:"user,omitempty"`
}

RestRepositoryRefChangeActivity struct for RestRepositoryRefChangeActivity

func NewRestRepositoryRefChangeActivity ¶

func NewRestRepositoryRefChangeActivity() *RestRepositoryRefChangeActivity

NewRestRepositoryRefChangeActivity instantiates a new RestRepositoryRefChangeActivity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoryRefChangeActivityWithDefaults ¶

func NewRestRepositoryRefChangeActivityWithDefaults() *RestRepositoryRefChangeActivity

NewRestRepositoryRefChangeActivityWithDefaults instantiates a new RestRepositoryRefChangeActivity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositoryRefChangeActivity) GetCreatedDate ¶

func (o *RestRepositoryRefChangeActivity) GetCreatedDate() int64

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivity) GetCreatedDateOk ¶

func (o *RestRepositoryRefChangeActivity) GetCreatedDateOk() (*int64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivity) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivity) GetIdOk ¶

func (o *RestRepositoryRefChangeActivity) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivity) GetRefChange ¶

GetRefChange returns the RefChange field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivity) GetRefChangeOk ¶

GetRefChangeOk returns a tuple with the RefChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivity) GetRepository ¶

GetRepository returns the Repository field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivity) GetRepositoryOk ¶

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivity) GetTrigger ¶

func (o *RestRepositoryRefChangeActivity) GetTrigger() string

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivity) GetTriggerOk ¶

func (o *RestRepositoryRefChangeActivity) GetTriggerOk() (*string, bool)

GetTriggerOk returns a tuple with the Trigger field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivity) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivity) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivity) HasCreatedDate ¶

func (o *RestRepositoryRefChangeActivity) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivity) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivity) HasRefChange ¶

func (o *RestRepositoryRefChangeActivity) HasRefChange() bool

HasRefChange returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivity) HasRepository ¶

func (o *RestRepositoryRefChangeActivity) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivity) HasTrigger ¶

func (o *RestRepositoryRefChangeActivity) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivity) HasUser ¶

HasUser returns a boolean if a field has been set.

func (RestRepositoryRefChangeActivity) MarshalJSON ¶

func (o RestRepositoryRefChangeActivity) MarshalJSON() ([]byte, error)

func (*RestRepositoryRefChangeActivity) SetCreatedDate ¶

func (o *RestRepositoryRefChangeActivity) SetCreatedDate(v int64)

SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.

func (*RestRepositoryRefChangeActivity) SetId ¶

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestRepositoryRefChangeActivity) SetRefChange ¶

SetRefChange gets a reference to the given RestRepositoryRefChangeActivityRefChange and assigns it to the RefChange field.

func (*RestRepositoryRefChangeActivity) SetRepository ¶

SetRepository gets a reference to the given RestPullRequestFromRefRepository and assigns it to the Repository field.

func (*RestRepositoryRefChangeActivity) SetTrigger ¶

func (o *RestRepositoryRefChangeActivity) SetTrigger(v string)

SetTrigger gets a reference to the given string and assigns it to the Trigger field.

func (*RestRepositoryRefChangeActivity) SetUser ¶

SetUser gets a reference to the given RestPullRequestParticipantUser and assigns it to the User field.

func (RestRepositoryRefChangeActivity) ToMap ¶

func (o RestRepositoryRefChangeActivity) ToMap() (map[string]interface{}, error)

type RestRepositoryRefChangeActivityRefChange ¶

type RestRepositoryRefChangeActivityRefChange struct {
	UpdatedType *string                                  `json:"updatedType,omitempty"`
	Type        *string                                  `json:"type,omitempty"`
	Ref         *RestPullRequestRebaseResultRefChangeRef `json:"ref,omitempty"`
	FromHash    *string                                  `json:"fromHash,omitempty"`
	ToHash      *string                                  `json:"toHash,omitempty"`
	RefId       *string                                  `json:"refId,omitempty"`
}

RestRepositoryRefChangeActivityRefChange struct for RestRepositoryRefChangeActivityRefChange

func NewRestRepositoryRefChangeActivityRefChange ¶

func NewRestRepositoryRefChangeActivityRefChange() *RestRepositoryRefChangeActivityRefChange

NewRestRepositoryRefChangeActivityRefChange instantiates a new RestRepositoryRefChangeActivityRefChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositoryRefChangeActivityRefChangeWithDefaults ¶

func NewRestRepositoryRefChangeActivityRefChangeWithDefaults() *RestRepositoryRefChangeActivityRefChange

NewRestRepositoryRefChangeActivityRefChangeWithDefaults instantiates a new RestRepositoryRefChangeActivityRefChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositoryRefChangeActivityRefChange) GetFromHash ¶

GetFromHash returns the FromHash field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivityRefChange) GetFromHashOk ¶

func (o *RestRepositoryRefChangeActivityRefChange) GetFromHashOk() (*string, bool)

GetFromHashOk returns a tuple with the FromHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivityRefChange) GetRef ¶

GetRef returns the Ref field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivityRefChange) GetRefId ¶

GetRefId returns the RefId field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivityRefChange) GetRefIdOk ¶

GetRefIdOk returns a tuple with the RefId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivityRefChange) GetRefOk ¶

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivityRefChange) GetToHash ¶

GetToHash returns the ToHash field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivityRefChange) GetToHashOk ¶

GetToHashOk returns a tuple with the ToHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivityRefChange) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivityRefChange) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivityRefChange) GetUpdatedType ¶

GetUpdatedType returns the UpdatedType field value if set, zero value otherwise.

func (*RestRepositoryRefChangeActivityRefChange) GetUpdatedTypeOk ¶

func (o *RestRepositoryRefChangeActivityRefChange) GetUpdatedTypeOk() (*string, bool)

GetUpdatedTypeOk returns a tuple with the UpdatedType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositoryRefChangeActivityRefChange) HasFromHash ¶

HasFromHash returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivityRefChange) HasRef ¶

HasRef returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivityRefChange) HasRefId ¶

HasRefId returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivityRefChange) HasToHash ¶

HasToHash returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivityRefChange) HasType ¶

HasType returns a boolean if a field has been set.

func (*RestRepositoryRefChangeActivityRefChange) HasUpdatedType ¶

func (o *RestRepositoryRefChangeActivityRefChange) HasUpdatedType() bool

HasUpdatedType returns a boolean if a field has been set.

func (RestRepositoryRefChangeActivityRefChange) MarshalJSON ¶

func (*RestRepositoryRefChangeActivityRefChange) SetFromHash ¶

SetFromHash gets a reference to the given string and assigns it to the FromHash field.

func (*RestRepositoryRefChangeActivityRefChange) SetRef ¶

SetRef gets a reference to the given RestPullRequestRebaseResultRefChangeRef and assigns it to the Ref field.

func (*RestRepositoryRefChangeActivityRefChange) SetRefId ¶

SetRefId gets a reference to the given string and assigns it to the RefId field.

func (*RestRepositoryRefChangeActivityRefChange) SetToHash ¶

SetToHash gets a reference to the given string and assigns it to the ToHash field.

func (*RestRepositoryRefChangeActivityRefChange) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestRepositoryRefChangeActivityRefChange) SetUpdatedType ¶

func (o *RestRepositoryRefChangeActivityRefChange) SetUpdatedType(v string)

SetUpdatedType gets a reference to the given string and assigns it to the UpdatedType field.

func (RestRepositoryRefChangeActivityRefChange) ToMap ¶

func (o RestRepositoryRefChangeActivityRefChange) ToMap() (map[string]interface{}, error)

type RestRepositorySelector ¶

type RestRepositorySelector struct {
	ProjectKey *string `json:"projectKey,omitempty"`
	Slug       *string `json:"slug,omitempty"`
}

RestRepositorySelector struct for RestRepositorySelector

func NewRestRepositorySelector ¶

func NewRestRepositorySelector() *RestRepositorySelector

NewRestRepositorySelector instantiates a new RestRepositorySelector object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRepositorySelectorWithDefaults ¶

func NewRestRepositorySelectorWithDefaults() *RestRepositorySelector

NewRestRepositorySelectorWithDefaults instantiates a new RestRepositorySelector object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRepositorySelector) GetProjectKey ¶

func (o *RestRepositorySelector) GetProjectKey() string

GetProjectKey returns the ProjectKey field value if set, zero value otherwise.

func (*RestRepositorySelector) GetProjectKeyOk ¶

func (o *RestRepositorySelector) GetProjectKeyOk() (*string, bool)

GetProjectKeyOk returns a tuple with the ProjectKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositorySelector) GetSlug ¶

func (o *RestRepositorySelector) GetSlug() string

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestRepositorySelector) GetSlugOk ¶

func (o *RestRepositorySelector) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRepositorySelector) HasProjectKey ¶

func (o *RestRepositorySelector) HasProjectKey() bool

HasProjectKey returns a boolean if a field has been set.

func (*RestRepositorySelector) HasSlug ¶

func (o *RestRepositorySelector) HasSlug() bool

HasSlug returns a boolean if a field has been set.

func (RestRepositorySelector) MarshalJSON ¶

func (o RestRepositorySelector) MarshalJSON() ([]byte, error)

func (*RestRepositorySelector) SetProjectKey ¶

func (o *RestRepositorySelector) SetProjectKey(v string)

SetProjectKey gets a reference to the given string and assigns it to the ProjectKey field.

func (*RestRepositorySelector) SetSlug ¶

func (o *RestRepositorySelector) SetSlug(v string)

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (RestRepositorySelector) ToMap ¶

func (o RestRepositorySelector) ToMap() (map[string]interface{}, error)

type RestRequiredBuildCondition ¶

type RestRequiredBuildCondition struct {
	Id *int64 `json:"id,omitempty"`
	// A non-empty list of build parent keys that require green builds for this merge check to pass
	BuildParentKeys  []string                              `json:"buildParentKeys,omitempty"`
	RefMatcher       *RestRequiredBuildConditionRefMatcher `json:"refMatcher,omitempty"`
	ExemptRefMatcher *RestRequiredBuildConditionRefMatcher `json:"exemptRefMatcher,omitempty"`
}

RestRequiredBuildCondition struct for RestRequiredBuildCondition

func NewRestRequiredBuildCondition ¶

func NewRestRequiredBuildCondition() *RestRequiredBuildCondition

NewRestRequiredBuildCondition instantiates a new RestRequiredBuildCondition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRequiredBuildConditionWithDefaults ¶

func NewRestRequiredBuildConditionWithDefaults() *RestRequiredBuildCondition

NewRestRequiredBuildConditionWithDefaults instantiates a new RestRequiredBuildCondition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRequiredBuildCondition) GetBuildParentKeys ¶

func (o *RestRequiredBuildCondition) GetBuildParentKeys() []string

GetBuildParentKeys returns the BuildParentKeys field value if set, zero value otherwise.

func (*RestRequiredBuildCondition) GetBuildParentKeysOk ¶

func (o *RestRequiredBuildCondition) GetBuildParentKeysOk() ([]string, bool)

GetBuildParentKeysOk returns a tuple with the BuildParentKeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRequiredBuildCondition) GetExemptRefMatcher ¶

GetExemptRefMatcher returns the ExemptRefMatcher field value if set, zero value otherwise.

func (*RestRequiredBuildCondition) GetExemptRefMatcherOk ¶

GetExemptRefMatcherOk returns a tuple with the ExemptRefMatcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRequiredBuildCondition) GetId ¶

func (o *RestRequiredBuildCondition) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestRequiredBuildCondition) GetIdOk ¶

func (o *RestRequiredBuildCondition) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRequiredBuildCondition) GetRefMatcher ¶

GetRefMatcher returns the RefMatcher field value if set, zero value otherwise.

func (*RestRequiredBuildCondition) GetRefMatcherOk ¶

GetRefMatcherOk returns a tuple with the RefMatcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRequiredBuildCondition) HasBuildParentKeys ¶

func (o *RestRequiredBuildCondition) HasBuildParentKeys() bool

HasBuildParentKeys returns a boolean if a field has been set.

func (*RestRequiredBuildCondition) HasExemptRefMatcher ¶

func (o *RestRequiredBuildCondition) HasExemptRefMatcher() bool

HasExemptRefMatcher returns a boolean if a field has been set.

func (*RestRequiredBuildCondition) HasId ¶

func (o *RestRequiredBuildCondition) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestRequiredBuildCondition) HasRefMatcher ¶

func (o *RestRequiredBuildCondition) HasRefMatcher() bool

HasRefMatcher returns a boolean if a field has been set.

func (RestRequiredBuildCondition) MarshalJSON ¶

func (o RestRequiredBuildCondition) MarshalJSON() ([]byte, error)

func (*RestRequiredBuildCondition) SetBuildParentKeys ¶

func (o *RestRequiredBuildCondition) SetBuildParentKeys(v []string)

SetBuildParentKeys gets a reference to the given []string and assigns it to the BuildParentKeys field.

func (*RestRequiredBuildCondition) SetExemptRefMatcher ¶

SetExemptRefMatcher gets a reference to the given RestRequiredBuildConditionRefMatcher and assigns it to the ExemptRefMatcher field.

func (*RestRequiredBuildCondition) SetId ¶

func (o *RestRequiredBuildCondition) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestRequiredBuildCondition) SetRefMatcher ¶

SetRefMatcher gets a reference to the given RestRequiredBuildConditionRefMatcher and assigns it to the RefMatcher field.

func (RestRequiredBuildCondition) ToMap ¶

func (o RestRequiredBuildCondition) ToMap() (map[string]interface{}, error)

type RestRequiredBuildConditionRefMatcher ¶

type RestRequiredBuildConditionRefMatcher struct {
	Id        *string             `json:"id,omitempty"`
	Type      *RestRefMatcherType `json:"type,omitempty"`
	DisplayId *string             `json:"displayId,omitempty"`
}

RestRequiredBuildConditionRefMatcher struct for RestRequiredBuildConditionRefMatcher

func NewRestRequiredBuildConditionRefMatcher ¶

func NewRestRequiredBuildConditionRefMatcher() *RestRequiredBuildConditionRefMatcher

NewRestRequiredBuildConditionRefMatcher instantiates a new RestRequiredBuildConditionRefMatcher object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRequiredBuildConditionRefMatcherWithDefaults ¶

func NewRestRequiredBuildConditionRefMatcherWithDefaults() *RestRequiredBuildConditionRefMatcher

NewRestRequiredBuildConditionRefMatcherWithDefaults instantiates a new RestRequiredBuildConditionRefMatcher object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRequiredBuildConditionRefMatcher) GetDisplayId ¶

func (o *RestRequiredBuildConditionRefMatcher) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestRequiredBuildConditionRefMatcher) GetDisplayIdOk ¶

func (o *RestRequiredBuildConditionRefMatcher) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRequiredBuildConditionRefMatcher) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestRequiredBuildConditionRefMatcher) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRequiredBuildConditionRefMatcher) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestRequiredBuildConditionRefMatcher) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRequiredBuildConditionRefMatcher) HasDisplayId ¶

func (o *RestRequiredBuildConditionRefMatcher) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestRequiredBuildConditionRefMatcher) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestRequiredBuildConditionRefMatcher) HasType ¶

HasType returns a boolean if a field has been set.

func (RestRequiredBuildConditionRefMatcher) MarshalJSON ¶

func (o RestRequiredBuildConditionRefMatcher) MarshalJSON() ([]byte, error)

func (*RestRequiredBuildConditionRefMatcher) SetDisplayId ¶

func (o *RestRequiredBuildConditionRefMatcher) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestRequiredBuildConditionRefMatcher) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestRequiredBuildConditionRefMatcher) SetType ¶

SetType gets a reference to the given RestRefMatcherType and assigns it to the Type field.

func (RestRequiredBuildConditionRefMatcher) ToMap ¶

func (o RestRequiredBuildConditionRefMatcher) ToMap() (map[string]interface{}, error)

type RestRequiredBuildConditionSetRequest ¶

type RestRequiredBuildConditionSetRequest struct {
	// A non-empty list of build parent keys that require green builds for this merge check to pass
	BuildParentKeys  []string                                        `json:"buildParentKeys"`
	ExemptRefMatcher *RestRefMatcher                                 `json:"exemptRefMatcher,omitempty"`
	RefMatcher       UpdatePullRequestCondition1RequestSourceMatcher `json:"refMatcher"`
}

RestRequiredBuildConditionSetRequest struct for RestRequiredBuildConditionSetRequest

func NewRestRequiredBuildConditionSetRequest ¶

func NewRestRequiredBuildConditionSetRequest(buildParentKeys []string, refMatcher UpdatePullRequestCondition1RequestSourceMatcher) *RestRequiredBuildConditionSetRequest

NewRestRequiredBuildConditionSetRequest instantiates a new RestRequiredBuildConditionSetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRequiredBuildConditionSetRequestWithDefaults ¶

func NewRestRequiredBuildConditionSetRequestWithDefaults() *RestRequiredBuildConditionSetRequest

NewRestRequiredBuildConditionSetRequestWithDefaults instantiates a new RestRequiredBuildConditionSetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRequiredBuildConditionSetRequest) GetBuildParentKeys ¶

func (o *RestRequiredBuildConditionSetRequest) GetBuildParentKeys() []string

GetBuildParentKeys returns the BuildParentKeys field value

func (*RestRequiredBuildConditionSetRequest) GetBuildParentKeysOk ¶

func (o *RestRequiredBuildConditionSetRequest) GetBuildParentKeysOk() ([]string, bool)

GetBuildParentKeysOk returns a tuple with the BuildParentKeys field value and a boolean to check if the value has been set.

func (*RestRequiredBuildConditionSetRequest) GetExemptRefMatcher ¶

func (o *RestRequiredBuildConditionSetRequest) GetExemptRefMatcher() RestRefMatcher

GetExemptRefMatcher returns the ExemptRefMatcher field value if set, zero value otherwise.

func (*RestRequiredBuildConditionSetRequest) GetExemptRefMatcherOk ¶

func (o *RestRequiredBuildConditionSetRequest) GetExemptRefMatcherOk() (*RestRefMatcher, bool)

GetExemptRefMatcherOk returns a tuple with the ExemptRefMatcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRequiredBuildConditionSetRequest) GetRefMatcher ¶

GetRefMatcher returns the RefMatcher field value

func (*RestRequiredBuildConditionSetRequest) GetRefMatcherOk ¶

GetRefMatcherOk returns a tuple with the RefMatcher field value and a boolean to check if the value has been set.

func (*RestRequiredBuildConditionSetRequest) HasExemptRefMatcher ¶

func (o *RestRequiredBuildConditionSetRequest) HasExemptRefMatcher() bool

HasExemptRefMatcher returns a boolean if a field has been set.

func (RestRequiredBuildConditionSetRequest) MarshalJSON ¶

func (o RestRequiredBuildConditionSetRequest) MarshalJSON() ([]byte, error)

func (*RestRequiredBuildConditionSetRequest) SetBuildParentKeys ¶

func (o *RestRequiredBuildConditionSetRequest) SetBuildParentKeys(v []string)

SetBuildParentKeys sets field value

func (*RestRequiredBuildConditionSetRequest) SetExemptRefMatcher ¶

func (o *RestRequiredBuildConditionSetRequest) SetExemptRefMatcher(v RestRefMatcher)

SetExemptRefMatcher gets a reference to the given RestRefMatcher and assigns it to the ExemptRefMatcher field.

func (*RestRequiredBuildConditionSetRequest) SetRefMatcher ¶

SetRefMatcher sets field value

func (RestRequiredBuildConditionSetRequest) ToMap ¶

func (o RestRequiredBuildConditionSetRequest) ToMap() (map[string]interface{}, error)

type RestRestrictionRequest ¶

type RestRestrictionRequest struct {
	AccessKeyIds []int32                                          `json:"accessKeyIds,omitempty"`
	AccessKeys   []RestSshAccessKey                               `json:"accessKeys,omitempty"`
	GroupNames   []string                                         `json:"groupNames,omitempty"`
	Groups       []string                                         `json:"groups,omitempty"`
	Id           *int32                                           `json:"id,omitempty"`
	Matcher      *UpdatePullRequestCondition1RequestSourceMatcher `json:"matcher,omitempty"`
	Scope        *RestRestrictionRequestScope                     `json:"scope,omitempty"`
	Type         *string                                          `json:"type,omitempty"`
	UserSlugs    []string                                         `json:"userSlugs,omitempty"`
	Users        []RestApplicationUser                            `json:"users,omitempty"`
}

RestRestrictionRequest struct for RestRestrictionRequest

func NewRestRestrictionRequest ¶

func NewRestRestrictionRequest() *RestRestrictionRequest

NewRestRestrictionRequest instantiates a new RestRestrictionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRestrictionRequestWithDefaults ¶

func NewRestRestrictionRequestWithDefaults() *RestRestrictionRequest

NewRestRestrictionRequestWithDefaults instantiates a new RestRestrictionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRestrictionRequest) GetAccessKeyIds ¶

func (o *RestRestrictionRequest) GetAccessKeyIds() []int32

GetAccessKeyIds returns the AccessKeyIds field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetAccessKeyIdsOk ¶

func (o *RestRestrictionRequest) GetAccessKeyIdsOk() ([]int32, bool)

GetAccessKeyIdsOk returns a tuple with the AccessKeyIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) GetAccessKeys ¶

func (o *RestRestrictionRequest) GetAccessKeys() []RestSshAccessKey

GetAccessKeys returns the AccessKeys field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetAccessKeysOk ¶

func (o *RestRestrictionRequest) GetAccessKeysOk() ([]RestSshAccessKey, bool)

GetAccessKeysOk returns a tuple with the AccessKeys field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) GetGroupNames ¶

func (o *RestRestrictionRequest) GetGroupNames() []string

GetGroupNames returns the GroupNames field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetGroupNamesOk ¶

func (o *RestRestrictionRequest) GetGroupNamesOk() ([]string, bool)

GetGroupNamesOk returns a tuple with the GroupNames field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) GetGroups ¶

func (o *RestRestrictionRequest) GetGroups() []string

GetGroups returns the Groups field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetGroupsOk ¶

func (o *RestRestrictionRequest) GetGroupsOk() ([]string, bool)

GetGroupsOk returns a tuple with the Groups field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) GetId ¶

func (o *RestRestrictionRequest) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetIdOk ¶

func (o *RestRestrictionRequest) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) GetMatcher ¶

GetMatcher returns the Matcher field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetMatcherOk ¶

GetMatcherOk returns a tuple with the Matcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) GetType ¶

func (o *RestRestrictionRequest) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetTypeOk ¶

func (o *RestRestrictionRequest) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) GetUserSlugs ¶

func (o *RestRestrictionRequest) GetUserSlugs() []string

GetUserSlugs returns the UserSlugs field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetUserSlugsOk ¶

func (o *RestRestrictionRequest) GetUserSlugsOk() ([]string, bool)

GetUserSlugsOk returns a tuple with the UserSlugs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) GetUsers ¶

GetUsers returns the Users field value if set, zero value otherwise.

func (*RestRestrictionRequest) GetUsersOk ¶

func (o *RestRestrictionRequest) GetUsersOk() ([]RestApplicationUser, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequest) HasAccessKeyIds ¶

func (o *RestRestrictionRequest) HasAccessKeyIds() bool

HasAccessKeyIds returns a boolean if a field has been set.

func (*RestRestrictionRequest) HasAccessKeys ¶

func (o *RestRestrictionRequest) HasAccessKeys() bool

HasAccessKeys returns a boolean if a field has been set.

func (*RestRestrictionRequest) HasGroupNames ¶

func (o *RestRestrictionRequest) HasGroupNames() bool

HasGroupNames returns a boolean if a field has been set.

func (*RestRestrictionRequest) HasGroups ¶

func (o *RestRestrictionRequest) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (*RestRestrictionRequest) HasId ¶

func (o *RestRestrictionRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestRestrictionRequest) HasMatcher ¶

func (o *RestRestrictionRequest) HasMatcher() bool

HasMatcher returns a boolean if a field has been set.

func (*RestRestrictionRequest) HasScope ¶

func (o *RestRestrictionRequest) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*RestRestrictionRequest) HasType ¶

func (o *RestRestrictionRequest) HasType() bool

HasType returns a boolean if a field has been set.

func (*RestRestrictionRequest) HasUserSlugs ¶

func (o *RestRestrictionRequest) HasUserSlugs() bool

HasUserSlugs returns a boolean if a field has been set.

func (*RestRestrictionRequest) HasUsers ¶

func (o *RestRestrictionRequest) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (RestRestrictionRequest) MarshalJSON ¶

func (o RestRestrictionRequest) MarshalJSON() ([]byte, error)

func (*RestRestrictionRequest) SetAccessKeyIds ¶

func (o *RestRestrictionRequest) SetAccessKeyIds(v []int32)

SetAccessKeyIds gets a reference to the given []int32 and assigns it to the AccessKeyIds field.

func (*RestRestrictionRequest) SetAccessKeys ¶

func (o *RestRestrictionRequest) SetAccessKeys(v []RestSshAccessKey)

SetAccessKeys gets a reference to the given []RestSshAccessKey and assigns it to the AccessKeys field.

func (*RestRestrictionRequest) SetGroupNames ¶

func (o *RestRestrictionRequest) SetGroupNames(v []string)

SetGroupNames gets a reference to the given []string and assigns it to the GroupNames field.

func (*RestRestrictionRequest) SetGroups ¶

func (o *RestRestrictionRequest) SetGroups(v []string)

SetGroups gets a reference to the given []string and assigns it to the Groups field.

func (*RestRestrictionRequest) SetId ¶

func (o *RestRestrictionRequest) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestRestrictionRequest) SetMatcher ¶

SetMatcher gets a reference to the given UpdatePullRequestCondition1RequestSourceMatcher and assigns it to the Matcher field.

func (*RestRestrictionRequest) SetScope ¶

SetScope gets a reference to the given RestRestrictionRequestScope and assigns it to the Scope field.

func (*RestRestrictionRequest) SetType ¶

func (o *RestRestrictionRequest) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RestRestrictionRequest) SetUserSlugs ¶

func (o *RestRestrictionRequest) SetUserSlugs(v []string)

SetUserSlugs gets a reference to the given []string and assigns it to the UserSlugs field.

func (*RestRestrictionRequest) SetUsers ¶

SetUsers gets a reference to the given []RestApplicationUser and assigns it to the Users field.

func (RestRestrictionRequest) ToMap ¶

func (o RestRestrictionRequest) ToMap() (map[string]interface{}, error)

type RestRestrictionRequestScope ¶

type RestRestrictionRequestScope struct {
	ResourceId *int32  `json:"resourceId,omitempty"`
	Type       *string `json:"type,omitempty"`
}

RestRestrictionRequestScope struct for RestRestrictionRequestScope

func NewRestRestrictionRequestScope ¶

func NewRestRestrictionRequestScope() *RestRestrictionRequestScope

NewRestRestrictionRequestScope instantiates a new RestRestrictionRequestScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestRestrictionRequestScopeWithDefaults ¶

func NewRestRestrictionRequestScopeWithDefaults() *RestRestrictionRequestScope

NewRestRestrictionRequestScopeWithDefaults instantiates a new RestRestrictionRequestScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestRestrictionRequestScope) GetResourceId ¶

func (o *RestRestrictionRequestScope) GetResourceId() int32

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*RestRestrictionRequestScope) GetResourceIdOk ¶

func (o *RestRestrictionRequestScope) GetResourceIdOk() (*int32, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequestScope) GetType ¶

func (o *RestRestrictionRequestScope) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestRestrictionRequestScope) GetTypeOk ¶

func (o *RestRestrictionRequestScope) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestRestrictionRequestScope) HasResourceId ¶

func (o *RestRestrictionRequestScope) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (*RestRestrictionRequestScope) HasType ¶

func (o *RestRestrictionRequestScope) HasType() bool

HasType returns a boolean if a field has been set.

func (RestRestrictionRequestScope) MarshalJSON ¶

func (o RestRestrictionRequestScope) MarshalJSON() ([]byte, error)

func (*RestRestrictionRequestScope) SetResourceId ¶

func (o *RestRestrictionRequestScope) SetResourceId(v int32)

SetResourceId gets a reference to the given int32 and assigns it to the ResourceId field.

func (*RestRestrictionRequestScope) SetType ¶

func (o *RestRestrictionRequestScope) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestRestrictionRequestScope) ToMap ¶

func (o RestRestrictionRequestScope) ToMap() (map[string]interface{}, error)

type RestReviewerGroup ¶

type RestReviewerGroup struct {
	Name        *string                       `json:"name,omitempty"`
	Id          *int64                        `json:"id,omitempty"`
	Description *string                       `json:"description,omitempty"`
	AvatarUrl   *string                       `json:"avatarUrl,omitempty"`
	Scope       *RestAutoDeclineSettingsScope `json:"scope,omitempty"`
	Users       []ApplicationUser             `json:"users,omitempty"`
}

RestReviewerGroup struct for RestReviewerGroup

func NewRestReviewerGroup ¶

func NewRestReviewerGroup() *RestReviewerGroup

NewRestReviewerGroup instantiates a new RestReviewerGroup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestReviewerGroupWithDefaults ¶

func NewRestReviewerGroupWithDefaults() *RestReviewerGroup

NewRestReviewerGroupWithDefaults instantiates a new RestReviewerGroup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestReviewerGroup) GetAvatarUrl ¶

func (o *RestReviewerGroup) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestReviewerGroup) GetAvatarUrlOk ¶

func (o *RestReviewerGroup) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestReviewerGroup) GetDescription ¶

func (o *RestReviewerGroup) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestReviewerGroup) GetDescriptionOk ¶

func (o *RestReviewerGroup) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestReviewerGroup) GetId ¶

func (o *RestReviewerGroup) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestReviewerGroup) GetIdOk ¶

func (o *RestReviewerGroup) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestReviewerGroup) GetName ¶

func (o *RestReviewerGroup) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestReviewerGroup) GetNameOk ¶

func (o *RestReviewerGroup) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestReviewerGroup) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestReviewerGroup) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestReviewerGroup) GetUsers ¶

func (o *RestReviewerGroup) GetUsers() []ApplicationUser

GetUsers returns the Users field value if set, zero value otherwise.

func (*RestReviewerGroup) GetUsersOk ¶

func (o *RestReviewerGroup) GetUsersOk() ([]ApplicationUser, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestReviewerGroup) HasAvatarUrl ¶

func (o *RestReviewerGroup) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*RestReviewerGroup) HasDescription ¶

func (o *RestReviewerGroup) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestReviewerGroup) HasId ¶

func (o *RestReviewerGroup) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestReviewerGroup) HasName ¶

func (o *RestReviewerGroup) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestReviewerGroup) HasScope ¶

func (o *RestReviewerGroup) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*RestReviewerGroup) HasUsers ¶

func (o *RestReviewerGroup) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (RestReviewerGroup) MarshalJSON ¶

func (o RestReviewerGroup) MarshalJSON() ([]byte, error)

func (*RestReviewerGroup) SetAvatarUrl ¶

func (o *RestReviewerGroup) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestReviewerGroup) SetDescription ¶

func (o *RestReviewerGroup) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestReviewerGroup) SetId ¶

func (o *RestReviewerGroup) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestReviewerGroup) SetName ¶

func (o *RestReviewerGroup) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestReviewerGroup) SetScope ¶

SetScope gets a reference to the given RestAutoDeclineSettingsScope and assigns it to the Scope field.

func (*RestReviewerGroup) SetUsers ¶

func (o *RestReviewerGroup) SetUsers(v []ApplicationUser)

SetUsers gets a reference to the given []ApplicationUser and assigns it to the Users field.

func (RestReviewerGroup) ToMap ¶

func (o RestReviewerGroup) ToMap() (map[string]interface{}, error)

type RestScope ¶

type RestScope struct {
	Type       *string `json:"type,omitempty"`
	ResourceId *int32  `json:"resourceId,omitempty"`
}

RestScope struct for RestScope

func NewRestScope ¶

func NewRestScope() *RestScope

NewRestScope instantiates a new RestScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestScopeWithDefaults ¶

func NewRestScopeWithDefaults() *RestScope

NewRestScopeWithDefaults instantiates a new RestScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestScope) GetResourceId ¶

func (o *RestScope) GetResourceId() int32

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*RestScope) GetResourceIdOk ¶

func (o *RestScope) GetResourceIdOk() (*int32, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestScope) GetType ¶

func (o *RestScope) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestScope) GetTypeOk ¶

func (o *RestScope) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestScope) HasResourceId ¶

func (o *RestScope) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (*RestScope) HasType ¶

func (o *RestScope) HasType() bool

HasType returns a boolean if a field has been set.

func (RestScope) MarshalJSON ¶

func (o RestScope) MarshalJSON() ([]byte, error)

func (*RestScope) SetResourceId ¶

func (o *RestScope) SetResourceId(v int32)

SetResourceId gets a reference to the given int32 and assigns it to the ResourceId field.

func (*RestScope) SetType ¶

func (o *RestScope) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestScope) ToMap ¶

func (o RestScope) ToMap() (map[string]interface{}, error)

type RestScopesExample ¶

type RestScopesExample struct {
	Scopes []map[string]interface{} `json:"scopes,omitempty"`
	Links  map[string]interface{}   `json:"links,omitempty"`
}

RestScopesExample struct for RestScopesExample

func NewRestScopesExample ¶

func NewRestScopesExample() *RestScopesExample

NewRestScopesExample instantiates a new RestScopesExample object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestScopesExampleWithDefaults ¶

func NewRestScopesExampleWithDefaults() *RestScopesExample

NewRestScopesExampleWithDefaults instantiates a new RestScopesExample object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (o *RestScopesExample) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestScopesExample) GetLinksOk ¶

func (o *RestScopesExample) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestScopesExample) GetScopes ¶

func (o *RestScopesExample) GetScopes() []map[string]interface{}

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*RestScopesExample) GetScopesOk ¶

func (o *RestScopesExample) GetScopesOk() ([]map[string]interface{}, bool)

GetScopesOk returns a tuple with the Scopes field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestScopesExample) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*RestScopesExample) HasScopes ¶

func (o *RestScopesExample) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (RestScopesExample) MarshalJSON ¶

func (o RestScopesExample) MarshalJSON() ([]byte, error)
func (o *RestScopesExample) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestScopesExample) SetScopes ¶

func (o *RestScopesExample) SetScopes(v []map[string]interface{})

SetScopes gets a reference to the given []map[string]interface{} and assigns it to the Scopes field.

func (RestScopesExample) ToMap ¶

func (o RestScopesExample) ToMap() (map[string]interface{}, error)

type RestSecretScanningAllowlistRule ¶

type RestSecretScanningAllowlistRule struct {
	// Human readable name for the rule
	Name *string `json:"name,omitempty"`
	// The ID of the rule
	Id *int64 `json:"id,omitempty"`
	// If present, regular expression for matching a secret on a code line
	LineRegex *string `json:"lineRegex,omitempty"`
	// If present, regular expression matching file names
	PathRegex *string `json:"pathRegex,omitempty"`
}

RestSecretScanningAllowlistRule struct for RestSecretScanningAllowlistRule

func NewRestSecretScanningAllowlistRule ¶

func NewRestSecretScanningAllowlistRule() *RestSecretScanningAllowlistRule

NewRestSecretScanningAllowlistRule instantiates a new RestSecretScanningAllowlistRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSecretScanningAllowlistRuleWithDefaults ¶

func NewRestSecretScanningAllowlistRuleWithDefaults() *RestSecretScanningAllowlistRule

NewRestSecretScanningAllowlistRuleWithDefaults instantiates a new RestSecretScanningAllowlistRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSecretScanningAllowlistRule) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestSecretScanningAllowlistRule) GetIdOk ¶

func (o *RestSecretScanningAllowlistRule) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningAllowlistRule) GetLineRegex ¶

func (o *RestSecretScanningAllowlistRule) GetLineRegex() string

GetLineRegex returns the LineRegex field value if set, zero value otherwise.

func (*RestSecretScanningAllowlistRule) GetLineRegexOk ¶

func (o *RestSecretScanningAllowlistRule) GetLineRegexOk() (*string, bool)

GetLineRegexOk returns a tuple with the LineRegex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningAllowlistRule) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestSecretScanningAllowlistRule) GetNameOk ¶

func (o *RestSecretScanningAllowlistRule) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningAllowlistRule) GetPathRegex ¶

func (o *RestSecretScanningAllowlistRule) GetPathRegex() string

GetPathRegex returns the PathRegex field value if set, zero value otherwise.

func (*RestSecretScanningAllowlistRule) GetPathRegexOk ¶

func (o *RestSecretScanningAllowlistRule) GetPathRegexOk() (*string, bool)

GetPathRegexOk returns a tuple with the PathRegex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningAllowlistRule) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestSecretScanningAllowlistRule) HasLineRegex ¶

func (o *RestSecretScanningAllowlistRule) HasLineRegex() bool

HasLineRegex returns a boolean if a field has been set.

func (*RestSecretScanningAllowlistRule) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestSecretScanningAllowlistRule) HasPathRegex ¶

func (o *RestSecretScanningAllowlistRule) HasPathRegex() bool

HasPathRegex returns a boolean if a field has been set.

func (RestSecretScanningAllowlistRule) MarshalJSON ¶

func (o RestSecretScanningAllowlistRule) MarshalJSON() ([]byte, error)

func (*RestSecretScanningAllowlistRule) SetId ¶

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestSecretScanningAllowlistRule) SetLineRegex ¶

func (o *RestSecretScanningAllowlistRule) SetLineRegex(v string)

SetLineRegex gets a reference to the given string and assigns it to the LineRegex field.

func (*RestSecretScanningAllowlistRule) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestSecretScanningAllowlistRule) SetPathRegex ¶

func (o *RestSecretScanningAllowlistRule) SetPathRegex(v string)

SetPathRegex gets a reference to the given string and assigns it to the PathRegex field.

func (RestSecretScanningAllowlistRule) ToMap ¶

func (o RestSecretScanningAllowlistRule) ToMap() (map[string]interface{}, error)

type RestSecretScanningAllowlistRuleSetRequest ¶

type RestSecretScanningAllowlistRuleSetRequest struct {
	// Regular expression for matching a secret on a code line
	LineRegex *string `json:"lineRegex,omitempty"`
	// Human readable name for the rule
	Name *string `json:"name,omitempty"`
	// Regular expression matching file names
	PathRegex *string `json:"pathRegex,omitempty"`
}

RestSecretScanningAllowlistRuleSetRequest struct for RestSecretScanningAllowlistRuleSetRequest

func NewRestSecretScanningAllowlistRuleSetRequest ¶

func NewRestSecretScanningAllowlistRuleSetRequest() *RestSecretScanningAllowlistRuleSetRequest

NewRestSecretScanningAllowlistRuleSetRequest instantiates a new RestSecretScanningAllowlistRuleSetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSecretScanningAllowlistRuleSetRequestWithDefaults ¶

func NewRestSecretScanningAllowlistRuleSetRequestWithDefaults() *RestSecretScanningAllowlistRuleSetRequest

NewRestSecretScanningAllowlistRuleSetRequestWithDefaults instantiates a new RestSecretScanningAllowlistRuleSetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSecretScanningAllowlistRuleSetRequest) GetLineRegex ¶

GetLineRegex returns the LineRegex field value if set, zero value otherwise.

func (*RestSecretScanningAllowlistRuleSetRequest) GetLineRegexOk ¶

func (o *RestSecretScanningAllowlistRuleSetRequest) GetLineRegexOk() (*string, bool)

GetLineRegexOk returns a tuple with the LineRegex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningAllowlistRuleSetRequest) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestSecretScanningAllowlistRuleSetRequest) GetNameOk ¶

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningAllowlistRuleSetRequest) GetPathRegex ¶

GetPathRegex returns the PathRegex field value if set, zero value otherwise.

func (*RestSecretScanningAllowlistRuleSetRequest) GetPathRegexOk ¶

func (o *RestSecretScanningAllowlistRuleSetRequest) GetPathRegexOk() (*string, bool)

GetPathRegexOk returns a tuple with the PathRegex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningAllowlistRuleSetRequest) HasLineRegex ¶

HasLineRegex returns a boolean if a field has been set.

func (*RestSecretScanningAllowlistRuleSetRequest) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestSecretScanningAllowlistRuleSetRequest) HasPathRegex ¶

HasPathRegex returns a boolean if a field has been set.

func (RestSecretScanningAllowlistRuleSetRequest) MarshalJSON ¶

func (*RestSecretScanningAllowlistRuleSetRequest) SetLineRegex ¶

SetLineRegex gets a reference to the given string and assigns it to the LineRegex field.

func (*RestSecretScanningAllowlistRuleSetRequest) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestSecretScanningAllowlistRuleSetRequest) SetPathRegex ¶

SetPathRegex gets a reference to the given string and assigns it to the PathRegex field.

func (RestSecretScanningAllowlistRuleSetRequest) ToMap ¶

func (o RestSecretScanningAllowlistRuleSetRequest) ToMap() (map[string]interface{}, error)

type RestSecretScanningRule ¶

type RestSecretScanningRule struct {
	// Human readable name for the rule
	Name *string `json:"name,omitempty"`
	// The ID of the rule
	Id *int64 `json:"id,omitempty"`
	// If present, regular expression for matching a secret on a code line
	LineRegex *string `json:"lineRegex,omitempty"`
	// If present, regular expression matching file names
	PathRegex *string                      `json:"pathRegex,omitempty"`
	Scope     *RestSecretScanningRuleScope `json:"scope,omitempty"`
}

RestSecretScanningRule struct for RestSecretScanningRule

func NewRestSecretScanningRule ¶

func NewRestSecretScanningRule() *RestSecretScanningRule

NewRestSecretScanningRule instantiates a new RestSecretScanningRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSecretScanningRuleWithDefaults ¶

func NewRestSecretScanningRuleWithDefaults() *RestSecretScanningRule

NewRestSecretScanningRuleWithDefaults instantiates a new RestSecretScanningRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSecretScanningRule) GetId ¶

func (o *RestSecretScanningRule) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestSecretScanningRule) GetIdOk ¶

func (o *RestSecretScanningRule) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRule) GetLineRegex ¶

func (o *RestSecretScanningRule) GetLineRegex() string

GetLineRegex returns the LineRegex field value if set, zero value otherwise.

func (*RestSecretScanningRule) GetLineRegexOk ¶

func (o *RestSecretScanningRule) GetLineRegexOk() (*string, bool)

GetLineRegexOk returns a tuple with the LineRegex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRule) GetName ¶

func (o *RestSecretScanningRule) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestSecretScanningRule) GetNameOk ¶

func (o *RestSecretScanningRule) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRule) GetPathRegex ¶

func (o *RestSecretScanningRule) GetPathRegex() string

GetPathRegex returns the PathRegex field value if set, zero value otherwise.

func (*RestSecretScanningRule) GetPathRegexOk ¶

func (o *RestSecretScanningRule) GetPathRegexOk() (*string, bool)

GetPathRegexOk returns a tuple with the PathRegex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRule) GetScope ¶

GetScope returns the Scope field value if set, zero value otherwise.

func (*RestSecretScanningRule) GetScopeOk ¶

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRule) HasId ¶

func (o *RestSecretScanningRule) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestSecretScanningRule) HasLineRegex ¶

func (o *RestSecretScanningRule) HasLineRegex() bool

HasLineRegex returns a boolean if a field has been set.

func (*RestSecretScanningRule) HasName ¶

func (o *RestSecretScanningRule) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestSecretScanningRule) HasPathRegex ¶

func (o *RestSecretScanningRule) HasPathRegex() bool

HasPathRegex returns a boolean if a field has been set.

func (*RestSecretScanningRule) HasScope ¶

func (o *RestSecretScanningRule) HasScope() bool

HasScope returns a boolean if a field has been set.

func (RestSecretScanningRule) MarshalJSON ¶

func (o RestSecretScanningRule) MarshalJSON() ([]byte, error)

func (*RestSecretScanningRule) SetId ¶

func (o *RestSecretScanningRule) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestSecretScanningRule) SetLineRegex ¶

func (o *RestSecretScanningRule) SetLineRegex(v string)

SetLineRegex gets a reference to the given string and assigns it to the LineRegex field.

func (*RestSecretScanningRule) SetName ¶

func (o *RestSecretScanningRule) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestSecretScanningRule) SetPathRegex ¶

func (o *RestSecretScanningRule) SetPathRegex(v string)

SetPathRegex gets a reference to the given string and assigns it to the PathRegex field.

func (*RestSecretScanningRule) SetScope ¶

SetScope gets a reference to the given RestSecretScanningRuleScope and assigns it to the Scope field.

func (RestSecretScanningRule) ToMap ¶

func (o RestSecretScanningRule) ToMap() (map[string]interface{}, error)

type RestSecretScanningRuleScope ¶

type RestSecretScanningRuleScope struct {
	Type       *string `json:"type,omitempty"`
	ResourceId *int32  `json:"resourceId,omitempty"`
}

RestSecretScanningRuleScope The scope in which this rule was configured for.

func NewRestSecretScanningRuleScope ¶

func NewRestSecretScanningRuleScope() *RestSecretScanningRuleScope

NewRestSecretScanningRuleScope instantiates a new RestSecretScanningRuleScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSecretScanningRuleScopeWithDefaults ¶

func NewRestSecretScanningRuleScopeWithDefaults() *RestSecretScanningRuleScope

NewRestSecretScanningRuleScopeWithDefaults instantiates a new RestSecretScanningRuleScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSecretScanningRuleScope) GetResourceId ¶

func (o *RestSecretScanningRuleScope) GetResourceId() int32

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*RestSecretScanningRuleScope) GetResourceIdOk ¶

func (o *RestSecretScanningRuleScope) GetResourceIdOk() (*int32, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRuleScope) GetType ¶

func (o *RestSecretScanningRuleScope) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestSecretScanningRuleScope) GetTypeOk ¶

func (o *RestSecretScanningRuleScope) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRuleScope) HasResourceId ¶

func (o *RestSecretScanningRuleScope) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (*RestSecretScanningRuleScope) HasType ¶

func (o *RestSecretScanningRuleScope) HasType() bool

HasType returns a boolean if a field has been set.

func (RestSecretScanningRuleScope) MarshalJSON ¶

func (o RestSecretScanningRuleScope) MarshalJSON() ([]byte, error)

func (*RestSecretScanningRuleScope) SetResourceId ¶

func (o *RestSecretScanningRuleScope) SetResourceId(v int32)

SetResourceId gets a reference to the given int32 and assigns it to the ResourceId field.

func (*RestSecretScanningRuleScope) SetType ¶

func (o *RestSecretScanningRuleScope) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestSecretScanningRuleScope) ToMap ¶

func (o RestSecretScanningRuleScope) ToMap() (map[string]interface{}, error)

type RestSecretScanningRuleSetRequest ¶

type RestSecretScanningRuleSetRequest struct {
	// Regular expression for matching a secret on a code line
	LineRegex *string `json:"lineRegex,omitempty"`
	// Human readable name for the rule
	Name *string `json:"name,omitempty"`
	// Regular expression matching file names
	PathRegex *string `json:"pathRegex,omitempty"`
}

RestSecretScanningRuleSetRequest struct for RestSecretScanningRuleSetRequest

func NewRestSecretScanningRuleSetRequest ¶

func NewRestSecretScanningRuleSetRequest() *RestSecretScanningRuleSetRequest

NewRestSecretScanningRuleSetRequest instantiates a new RestSecretScanningRuleSetRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSecretScanningRuleSetRequestWithDefaults ¶

func NewRestSecretScanningRuleSetRequestWithDefaults() *RestSecretScanningRuleSetRequest

NewRestSecretScanningRuleSetRequestWithDefaults instantiates a new RestSecretScanningRuleSetRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSecretScanningRuleSetRequest) GetLineRegex ¶

func (o *RestSecretScanningRuleSetRequest) GetLineRegex() string

GetLineRegex returns the LineRegex field value if set, zero value otherwise.

func (*RestSecretScanningRuleSetRequest) GetLineRegexOk ¶

func (o *RestSecretScanningRuleSetRequest) GetLineRegexOk() (*string, bool)

GetLineRegexOk returns a tuple with the LineRegex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRuleSetRequest) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestSecretScanningRuleSetRequest) GetNameOk ¶

func (o *RestSecretScanningRuleSetRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRuleSetRequest) GetPathRegex ¶

func (o *RestSecretScanningRuleSetRequest) GetPathRegex() string

GetPathRegex returns the PathRegex field value if set, zero value otherwise.

func (*RestSecretScanningRuleSetRequest) GetPathRegexOk ¶

func (o *RestSecretScanningRuleSetRequest) GetPathRegexOk() (*string, bool)

GetPathRegexOk returns a tuple with the PathRegex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSecretScanningRuleSetRequest) HasLineRegex ¶

func (o *RestSecretScanningRuleSetRequest) HasLineRegex() bool

HasLineRegex returns a boolean if a field has been set.

func (*RestSecretScanningRuleSetRequest) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestSecretScanningRuleSetRequest) HasPathRegex ¶

func (o *RestSecretScanningRuleSetRequest) HasPathRegex() bool

HasPathRegex returns a boolean if a field has been set.

func (RestSecretScanningRuleSetRequest) MarshalJSON ¶

func (o RestSecretScanningRuleSetRequest) MarshalJSON() ([]byte, error)

func (*RestSecretScanningRuleSetRequest) SetLineRegex ¶

func (o *RestSecretScanningRuleSetRequest) SetLineRegex(v string)

SetLineRegex gets a reference to the given string and assigns it to the LineRegex field.

func (*RestSecretScanningRuleSetRequest) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestSecretScanningRuleSetRequest) SetPathRegex ¶

func (o *RestSecretScanningRuleSetRequest) SetPathRegex(v string)

SetPathRegex gets a reference to the given string and assigns it to the PathRegex field.

func (RestSecretScanningRuleSetRequest) ToMap ¶

func (o RestSecretScanningRuleSetRequest) ToMap() (map[string]interface{}, error)

type RestSetInsightReportRequest ¶

type RestSetInsightReportRequest struct {
	CoverageProviderKey *string                 `json:"coverageProviderKey,omitempty"`
	CreatedDate         *int64                  `json:"createdDate,omitempty"`
	Data                []RestInsightReportData `json:"data"`
	Details             *string                 `json:"details,omitempty"`
	Link                *string                 `json:"link,omitempty"`
	LogoUrl             *string                 `json:"logoUrl,omitempty"`
	Reporter            *string                 `json:"reporter,omitempty"`
	Result              *string                 `json:"result,omitempty"`
	Title               string                  `json:"title"`
}

RestSetInsightReportRequest struct for RestSetInsightReportRequest

func NewRestSetInsightReportRequest ¶

func NewRestSetInsightReportRequest(data []RestInsightReportData, title string) *RestSetInsightReportRequest

NewRestSetInsightReportRequest instantiates a new RestSetInsightReportRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSetInsightReportRequestWithDefaults ¶

func NewRestSetInsightReportRequestWithDefaults() *RestSetInsightReportRequest

NewRestSetInsightReportRequestWithDefaults instantiates a new RestSetInsightReportRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSetInsightReportRequest) GetCoverageProviderKey ¶

func (o *RestSetInsightReportRequest) GetCoverageProviderKey() string

GetCoverageProviderKey returns the CoverageProviderKey field value if set, zero value otherwise.

func (*RestSetInsightReportRequest) GetCoverageProviderKeyOk ¶

func (o *RestSetInsightReportRequest) GetCoverageProviderKeyOk() (*string, bool)

GetCoverageProviderKeyOk returns a tuple with the CoverageProviderKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSetInsightReportRequest) GetCreatedDate ¶

func (o *RestSetInsightReportRequest) GetCreatedDate() int64

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestSetInsightReportRequest) GetCreatedDateOk ¶

func (o *RestSetInsightReportRequest) GetCreatedDateOk() (*int64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSetInsightReportRequest) GetData ¶

GetData returns the Data field value

func (*RestSetInsightReportRequest) GetDataOk ¶

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*RestSetInsightReportRequest) GetDetails ¶

func (o *RestSetInsightReportRequest) GetDetails() string

GetDetails returns the Details field value if set, zero value otherwise.

func (*RestSetInsightReportRequest) GetDetailsOk ¶

func (o *RestSetInsightReportRequest) GetDetailsOk() (*string, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestSetInsightReportRequest) GetLink() string

GetLink returns the Link field value if set, zero value otherwise.

func (*RestSetInsightReportRequest) GetLinkOk ¶

func (o *RestSetInsightReportRequest) GetLinkOk() (*string, bool)

GetLinkOk returns a tuple with the Link field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSetInsightReportRequest) GetLogoUrl ¶

func (o *RestSetInsightReportRequest) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value if set, zero value otherwise.

func (*RestSetInsightReportRequest) GetLogoUrlOk ¶

func (o *RestSetInsightReportRequest) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSetInsightReportRequest) GetReporter ¶

func (o *RestSetInsightReportRequest) GetReporter() string

GetReporter returns the Reporter field value if set, zero value otherwise.

func (*RestSetInsightReportRequest) GetReporterOk ¶

func (o *RestSetInsightReportRequest) GetReporterOk() (*string, bool)

GetReporterOk returns a tuple with the Reporter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSetInsightReportRequest) GetResult ¶

func (o *RestSetInsightReportRequest) GetResult() string

GetResult returns the Result field value if set, zero value otherwise.

func (*RestSetInsightReportRequest) GetResultOk ¶

func (o *RestSetInsightReportRequest) GetResultOk() (*string, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSetInsightReportRequest) GetTitle ¶

func (o *RestSetInsightReportRequest) GetTitle() string

GetTitle returns the Title field value

func (*RestSetInsightReportRequest) GetTitleOk ¶

func (o *RestSetInsightReportRequest) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*RestSetInsightReportRequest) HasCoverageProviderKey ¶

func (o *RestSetInsightReportRequest) HasCoverageProviderKey() bool

HasCoverageProviderKey returns a boolean if a field has been set.

func (*RestSetInsightReportRequest) HasCreatedDate ¶

func (o *RestSetInsightReportRequest) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestSetInsightReportRequest) HasDetails ¶

func (o *RestSetInsightReportRequest) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (o *RestSetInsightReportRequest) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*RestSetInsightReportRequest) HasLogoUrl ¶

func (o *RestSetInsightReportRequest) HasLogoUrl() bool

HasLogoUrl returns a boolean if a field has been set.

func (*RestSetInsightReportRequest) HasReporter ¶

func (o *RestSetInsightReportRequest) HasReporter() bool

HasReporter returns a boolean if a field has been set.

func (*RestSetInsightReportRequest) HasResult ¶

func (o *RestSetInsightReportRequest) HasResult() bool

HasResult returns a boolean if a field has been set.

func (RestSetInsightReportRequest) MarshalJSON ¶

func (o RestSetInsightReportRequest) MarshalJSON() ([]byte, error)

func (*RestSetInsightReportRequest) SetCoverageProviderKey ¶

func (o *RestSetInsightReportRequest) SetCoverageProviderKey(v string)

SetCoverageProviderKey gets a reference to the given string and assigns it to the CoverageProviderKey field.

func (*RestSetInsightReportRequest) SetCreatedDate ¶

func (o *RestSetInsightReportRequest) SetCreatedDate(v int64)

SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.

func (*RestSetInsightReportRequest) SetData ¶

SetData sets field value

func (*RestSetInsightReportRequest) SetDetails ¶

func (o *RestSetInsightReportRequest) SetDetails(v string)

SetDetails gets a reference to the given string and assigns it to the Details field.

func (o *RestSetInsightReportRequest) SetLink(v string)

SetLink gets a reference to the given string and assigns it to the Link field.

func (*RestSetInsightReportRequest) SetLogoUrl ¶

func (o *RestSetInsightReportRequest) SetLogoUrl(v string)

SetLogoUrl gets a reference to the given string and assigns it to the LogoUrl field.

func (*RestSetInsightReportRequest) SetReporter ¶

func (o *RestSetInsightReportRequest) SetReporter(v string)

SetReporter gets a reference to the given string and assigns it to the Reporter field.

func (*RestSetInsightReportRequest) SetResult ¶

func (o *RestSetInsightReportRequest) SetResult(v string)

SetResult gets a reference to the given string and assigns it to the Result field.

func (*RestSetInsightReportRequest) SetTitle ¶

func (o *RestSetInsightReportRequest) SetTitle(v string)

SetTitle sets field value

func (RestSetInsightReportRequest) ToMap ¶

func (o RestSetInsightReportRequest) ToMap() (map[string]interface{}, error)

type RestSingleAddInsightAnnotationRequest ¶

type RestSingleAddInsightAnnotationRequest struct {
	ExternalId *string `json:"externalId,omitempty"`
	Line       *int32  `json:"line,omitempty"`
	Link       *string `json:"link,omitempty"`
	Message    string  `json:"message"`
	Path       *string `json:"path,omitempty"`
	Severity   string  `json:"severity"`
	Type       *string `json:"type,omitempty"`
}

RestSingleAddInsightAnnotationRequest struct for RestSingleAddInsightAnnotationRequest

func NewRestSingleAddInsightAnnotationRequest ¶

func NewRestSingleAddInsightAnnotationRequest(message string, severity string) *RestSingleAddInsightAnnotationRequest

NewRestSingleAddInsightAnnotationRequest instantiates a new RestSingleAddInsightAnnotationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSingleAddInsightAnnotationRequestWithDefaults ¶

func NewRestSingleAddInsightAnnotationRequestWithDefaults() *RestSingleAddInsightAnnotationRequest

NewRestSingleAddInsightAnnotationRequestWithDefaults instantiates a new RestSingleAddInsightAnnotationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSingleAddInsightAnnotationRequest) GetExternalId ¶

func (o *RestSingleAddInsightAnnotationRequest) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*RestSingleAddInsightAnnotationRequest) GetExternalIdOk ¶

func (o *RestSingleAddInsightAnnotationRequest) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSingleAddInsightAnnotationRequest) GetLine ¶

GetLine returns the Line field value if set, zero value otherwise.

func (*RestSingleAddInsightAnnotationRequest) GetLineOk ¶

GetLineOk returns a tuple with the Line field value if set, nil otherwise and a boolean to check if the value has been set.

GetLink returns the Link field value if set, zero value otherwise.

func (*RestSingleAddInsightAnnotationRequest) GetLinkOk ¶

GetLinkOk returns a tuple with the Link field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSingleAddInsightAnnotationRequest) GetMessage ¶

GetMessage returns the Message field value

func (*RestSingleAddInsightAnnotationRequest) GetMessageOk ¶

func (o *RestSingleAddInsightAnnotationRequest) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*RestSingleAddInsightAnnotationRequest) GetPath ¶

GetPath returns the Path field value if set, zero value otherwise.

func (*RestSingleAddInsightAnnotationRequest) GetPathOk ¶

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSingleAddInsightAnnotationRequest) GetSeverity ¶

GetSeverity returns the Severity field value

func (*RestSingleAddInsightAnnotationRequest) GetSeverityOk ¶

func (o *RestSingleAddInsightAnnotationRequest) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value and a boolean to check if the value has been set.

func (*RestSingleAddInsightAnnotationRequest) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestSingleAddInsightAnnotationRequest) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSingleAddInsightAnnotationRequest) HasExternalId ¶

func (o *RestSingleAddInsightAnnotationRequest) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*RestSingleAddInsightAnnotationRequest) HasLine ¶

HasLine returns a boolean if a field has been set.

HasLink returns a boolean if a field has been set.

func (*RestSingleAddInsightAnnotationRequest) HasPath ¶

HasPath returns a boolean if a field has been set.

func (*RestSingleAddInsightAnnotationRequest) HasType ¶

HasType returns a boolean if a field has been set.

func (RestSingleAddInsightAnnotationRequest) MarshalJSON ¶

func (o RestSingleAddInsightAnnotationRequest) MarshalJSON() ([]byte, error)

func (*RestSingleAddInsightAnnotationRequest) SetExternalId ¶

func (o *RestSingleAddInsightAnnotationRequest) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*RestSingleAddInsightAnnotationRequest) SetLine ¶

SetLine gets a reference to the given int32 and assigns it to the Line field.

SetLink gets a reference to the given string and assigns it to the Link field.

func (*RestSingleAddInsightAnnotationRequest) SetMessage ¶

SetMessage sets field value

func (*RestSingleAddInsightAnnotationRequest) SetPath ¶

SetPath gets a reference to the given string and assigns it to the Path field.

func (*RestSingleAddInsightAnnotationRequest) SetSeverity ¶

SetSeverity sets field value

func (*RestSingleAddInsightAnnotationRequest) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RestSingleAddInsightAnnotationRequest) ToMap ¶

func (o RestSingleAddInsightAnnotationRequest) ToMap() (map[string]interface{}, error)

type RestSshAccessKey ¶

type RestSshAccessKey struct {
	Key        *RestSshAccessKeyKey                     `json:"key,omitempty"`
	Permission *string                                  `json:"permission,omitempty"`
	Repository *RestPullRequestFromRefRepository        `json:"repository,omitempty"`
	Project    *RestPullRequestFromRefRepositoryProject `json:"project,omitempty"`
}

RestSshAccessKey struct for RestSshAccessKey

func NewRestSshAccessKey ¶

func NewRestSshAccessKey() *RestSshAccessKey

NewRestSshAccessKey instantiates a new RestSshAccessKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshAccessKeyWithDefaults ¶

func NewRestSshAccessKeyWithDefaults() *RestSshAccessKey

NewRestSshAccessKeyWithDefaults instantiates a new RestSshAccessKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshAccessKey) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*RestSshAccessKey) GetKeyOk ¶

func (o *RestSshAccessKey) GetKeyOk() (*RestSshAccessKeyKey, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKey) GetPermission ¶

func (o *RestSshAccessKey) GetPermission() string

GetPermission returns the Permission field value if set, zero value otherwise.

func (*RestSshAccessKey) GetPermissionOk ¶

func (o *RestSshAccessKey) GetPermissionOk() (*string, bool)

GetPermissionOk returns a tuple with the Permission field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKey) GetProject ¶

GetProject returns the Project field value if set, zero value otherwise.

func (*RestSshAccessKey) GetProjectOk ¶

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKey) GetRepository ¶

GetRepository returns the Repository field value if set, zero value otherwise.

func (*RestSshAccessKey) GetRepositoryOk ¶

func (o *RestSshAccessKey) GetRepositoryOk() (*RestPullRequestFromRefRepository, bool)

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKey) HasKey ¶

func (o *RestSshAccessKey) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*RestSshAccessKey) HasPermission ¶

func (o *RestSshAccessKey) HasPermission() bool

HasPermission returns a boolean if a field has been set.

func (*RestSshAccessKey) HasProject ¶

func (o *RestSshAccessKey) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*RestSshAccessKey) HasRepository ¶

func (o *RestSshAccessKey) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (RestSshAccessKey) MarshalJSON ¶

func (o RestSshAccessKey) MarshalJSON() ([]byte, error)

func (*RestSshAccessKey) SetKey ¶

SetKey gets a reference to the given RestSshAccessKeyKey and assigns it to the Key field.

func (*RestSshAccessKey) SetPermission ¶

func (o *RestSshAccessKey) SetPermission(v string)

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (*RestSshAccessKey) SetProject ¶

SetProject gets a reference to the given RestPullRequestFromRefRepositoryProject and assigns it to the Project field.

func (*RestSshAccessKey) SetRepository ¶

SetRepository gets a reference to the given RestPullRequestFromRefRepository and assigns it to the Repository field.

func (RestSshAccessKey) ToMap ¶

func (o RestSshAccessKey) ToMap() (map[string]interface{}, error)

type RestSshAccessKeyKey ¶

type RestSshAccessKeyKey struct {
	Id                *int32     `json:"id,omitempty"`
	LastAuthenticated *string    `json:"lastAuthenticated,omitempty"`
	CreatedDate       *time.Time `json:"createdDate,omitempty"`
	BitLength         *int32     `json:"bitLength,omitempty"`
	AlgorithmType     *string    `json:"algorithmType,omitempty"`
	ExpiryDays        *int32     `json:"expiryDays,omitempty"`
	Label             *string    `json:"label,omitempty"`
	Text              *string    `json:"text,omitempty"`
}

RestSshAccessKeyKey struct for RestSshAccessKeyKey

func NewRestSshAccessKeyKey ¶

func NewRestSshAccessKeyKey() *RestSshAccessKeyKey

NewRestSshAccessKeyKey instantiates a new RestSshAccessKeyKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshAccessKeyKeyWithDefaults ¶

func NewRestSshAccessKeyKeyWithDefaults() *RestSshAccessKeyKey

NewRestSshAccessKeyKeyWithDefaults instantiates a new RestSshAccessKeyKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshAccessKeyKey) GetAlgorithmType ¶

func (o *RestSshAccessKeyKey) GetAlgorithmType() string

GetAlgorithmType returns the AlgorithmType field value if set, zero value otherwise.

func (*RestSshAccessKeyKey) GetAlgorithmTypeOk ¶

func (o *RestSshAccessKeyKey) GetAlgorithmTypeOk() (*string, bool)

GetAlgorithmTypeOk returns a tuple with the AlgorithmType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyKey) GetBitLength ¶

func (o *RestSshAccessKeyKey) GetBitLength() int32

GetBitLength returns the BitLength field value if set, zero value otherwise.

func (*RestSshAccessKeyKey) GetBitLengthOk ¶

func (o *RestSshAccessKeyKey) GetBitLengthOk() (*int32, bool)

GetBitLengthOk returns a tuple with the BitLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyKey) GetCreatedDate ¶

func (o *RestSshAccessKeyKey) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestSshAccessKeyKey) GetCreatedDateOk ¶

func (o *RestSshAccessKeyKey) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyKey) GetExpiryDays ¶

func (o *RestSshAccessKeyKey) GetExpiryDays() int32

GetExpiryDays returns the ExpiryDays field value if set, zero value otherwise.

func (*RestSshAccessKeyKey) GetExpiryDaysOk ¶

func (o *RestSshAccessKeyKey) GetExpiryDaysOk() (*int32, bool)

GetExpiryDaysOk returns a tuple with the ExpiryDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyKey) GetId ¶

func (o *RestSshAccessKeyKey) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestSshAccessKeyKey) GetIdOk ¶

func (o *RestSshAccessKeyKey) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyKey) GetLabel ¶

func (o *RestSshAccessKeyKey) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*RestSshAccessKeyKey) GetLabelOk ¶

func (o *RestSshAccessKeyKey) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyKey) GetLastAuthenticated ¶

func (o *RestSshAccessKeyKey) GetLastAuthenticated() string

GetLastAuthenticated returns the LastAuthenticated field value if set, zero value otherwise.

func (*RestSshAccessKeyKey) GetLastAuthenticatedOk ¶

func (o *RestSshAccessKeyKey) GetLastAuthenticatedOk() (*string, bool)

GetLastAuthenticatedOk returns a tuple with the LastAuthenticated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyKey) GetText ¶

func (o *RestSshAccessKeyKey) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*RestSshAccessKeyKey) GetTextOk ¶

func (o *RestSshAccessKeyKey) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyKey) HasAlgorithmType ¶

func (o *RestSshAccessKeyKey) HasAlgorithmType() bool

HasAlgorithmType returns a boolean if a field has been set.

func (*RestSshAccessKeyKey) HasBitLength ¶

func (o *RestSshAccessKeyKey) HasBitLength() bool

HasBitLength returns a boolean if a field has been set.

func (*RestSshAccessKeyKey) HasCreatedDate ¶

func (o *RestSshAccessKeyKey) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestSshAccessKeyKey) HasExpiryDays ¶

func (o *RestSshAccessKeyKey) HasExpiryDays() bool

HasExpiryDays returns a boolean if a field has been set.

func (*RestSshAccessKeyKey) HasId ¶

func (o *RestSshAccessKeyKey) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestSshAccessKeyKey) HasLabel ¶

func (o *RestSshAccessKeyKey) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*RestSshAccessKeyKey) HasLastAuthenticated ¶

func (o *RestSshAccessKeyKey) HasLastAuthenticated() bool

HasLastAuthenticated returns a boolean if a field has been set.

func (*RestSshAccessKeyKey) HasText ¶

func (o *RestSshAccessKeyKey) HasText() bool

HasText returns a boolean if a field has been set.

func (RestSshAccessKeyKey) MarshalJSON ¶

func (o RestSshAccessKeyKey) MarshalJSON() ([]byte, error)

func (*RestSshAccessKeyKey) SetAlgorithmType ¶

func (o *RestSshAccessKeyKey) SetAlgorithmType(v string)

SetAlgorithmType gets a reference to the given string and assigns it to the AlgorithmType field.

func (*RestSshAccessKeyKey) SetBitLength ¶

func (o *RestSshAccessKeyKey) SetBitLength(v int32)

SetBitLength gets a reference to the given int32 and assigns it to the BitLength field.

func (*RestSshAccessKeyKey) SetCreatedDate ¶

func (o *RestSshAccessKeyKey) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*RestSshAccessKeyKey) SetExpiryDays ¶

func (o *RestSshAccessKeyKey) SetExpiryDays(v int32)

SetExpiryDays gets a reference to the given int32 and assigns it to the ExpiryDays field.

func (*RestSshAccessKeyKey) SetId ¶

func (o *RestSshAccessKeyKey) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestSshAccessKeyKey) SetLabel ¶

func (o *RestSshAccessKeyKey) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*RestSshAccessKeyKey) SetLastAuthenticated ¶

func (o *RestSshAccessKeyKey) SetLastAuthenticated(v string)

SetLastAuthenticated gets a reference to the given string and assigns it to the LastAuthenticated field.

func (*RestSshAccessKeyKey) SetText ¶

func (o *RestSshAccessKeyKey) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (RestSshAccessKeyKey) ToMap ¶

func (o RestSshAccessKeyKey) ToMap() (map[string]interface{}, error)

type RestSshAccessKeyLocations ¶

type RestSshAccessKeyLocations struct {
	Projects     *RestProject    `json:"projects,omitempty"`
	Repositories *RestRepository `json:"repositories,omitempty"`
}

RestSshAccessKeyLocations struct for RestSshAccessKeyLocations

func NewRestSshAccessKeyLocations ¶

func NewRestSshAccessKeyLocations() *RestSshAccessKeyLocations

NewRestSshAccessKeyLocations instantiates a new RestSshAccessKeyLocations object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshAccessKeyLocationsWithDefaults ¶

func NewRestSshAccessKeyLocationsWithDefaults() *RestSshAccessKeyLocations

NewRestSshAccessKeyLocationsWithDefaults instantiates a new RestSshAccessKeyLocations object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshAccessKeyLocations) GetProjects ¶

func (o *RestSshAccessKeyLocations) GetProjects() RestProject

GetProjects returns the Projects field value if set, zero value otherwise.

func (*RestSshAccessKeyLocations) GetProjectsOk ¶

func (o *RestSshAccessKeyLocations) GetProjectsOk() (*RestProject, bool)

GetProjectsOk returns a tuple with the Projects field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyLocations) GetRepositories ¶

func (o *RestSshAccessKeyLocations) GetRepositories() RestRepository

GetRepositories returns the Repositories field value if set, zero value otherwise.

func (*RestSshAccessKeyLocations) GetRepositoriesOk ¶

func (o *RestSshAccessKeyLocations) GetRepositoriesOk() (*RestRepository, bool)

GetRepositoriesOk returns a tuple with the Repositories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshAccessKeyLocations) HasProjects ¶

func (o *RestSshAccessKeyLocations) HasProjects() bool

HasProjects returns a boolean if a field has been set.

func (*RestSshAccessKeyLocations) HasRepositories ¶

func (o *RestSshAccessKeyLocations) HasRepositories() bool

HasRepositories returns a boolean if a field has been set.

func (RestSshAccessKeyLocations) MarshalJSON ¶

func (o RestSshAccessKeyLocations) MarshalJSON() ([]byte, error)

func (*RestSshAccessKeyLocations) SetProjects ¶

func (o *RestSshAccessKeyLocations) SetProjects(v RestProject)

SetProjects gets a reference to the given RestProject and assigns it to the Projects field.

func (*RestSshAccessKeyLocations) SetRepositories ¶

func (o *RestSshAccessKeyLocations) SetRepositories(v RestRepository)

SetRepositories gets a reference to the given RestRepository and assigns it to the Repositories field.

func (RestSshAccessKeyLocations) ToMap ¶

func (o RestSshAccessKeyLocations) ToMap() (map[string]interface{}, error)

type RestSshCredentials ¶

type RestSshCredentials struct {
	// The key algorithm, if passing in a legacy X.509 encoded key. Do not specify for OpenSSH encoded keys
	Algorithm *string `json:"algorithm,omitempty"`
	// The public key text in the OpenSSH format. The algorithm must be specified in case of the legacy X.509 keys
	PublicKey string  `json:"publicKey"`
	Username  *string `json:"username,omitempty"`
}

RestSshCredentials struct for RestSshCredentials

func NewRestSshCredentials ¶

func NewRestSshCredentials(publicKey string) *RestSshCredentials

NewRestSshCredentials instantiates a new RestSshCredentials object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshCredentialsWithDefaults ¶

func NewRestSshCredentialsWithDefaults() *RestSshCredentials

NewRestSshCredentialsWithDefaults instantiates a new RestSshCredentials object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshCredentials) GetAlgorithm ¶

func (o *RestSshCredentials) GetAlgorithm() string

GetAlgorithm returns the Algorithm field value if set, zero value otherwise.

func (*RestSshCredentials) GetAlgorithmOk ¶

func (o *RestSshCredentials) GetAlgorithmOk() (*string, bool)

GetAlgorithmOk returns a tuple with the Algorithm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshCredentials) GetPublicKey ¶

func (o *RestSshCredentials) GetPublicKey() string

GetPublicKey returns the PublicKey field value

func (*RestSshCredentials) GetPublicKeyOk ¶

func (o *RestSshCredentials) GetPublicKeyOk() (*string, bool)

GetPublicKeyOk returns a tuple with the PublicKey field value and a boolean to check if the value has been set.

func (*RestSshCredentials) GetUsername ¶

func (o *RestSshCredentials) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*RestSshCredentials) GetUsernameOk ¶

func (o *RestSshCredentials) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshCredentials) HasAlgorithm ¶

func (o *RestSshCredentials) HasAlgorithm() bool

HasAlgorithm returns a boolean if a field has been set.

func (*RestSshCredentials) HasUsername ¶

func (o *RestSshCredentials) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (RestSshCredentials) MarshalJSON ¶

func (o RestSshCredentials) MarshalJSON() ([]byte, error)

func (*RestSshCredentials) SetAlgorithm ¶

func (o *RestSshCredentials) SetAlgorithm(v string)

SetAlgorithm gets a reference to the given string and assigns it to the Algorithm field.

func (*RestSshCredentials) SetPublicKey ¶

func (o *RestSshCredentials) SetPublicKey(v string)

SetPublicKey sets field value

func (*RestSshCredentials) SetUsername ¶

func (o *RestSshCredentials) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (RestSshCredentials) ToMap ¶

func (o RestSshCredentials) ToMap() (map[string]interface{}, error)

type RestSshKey ¶

type RestSshKey struct {
	Id                *int32     `json:"id,omitempty"`
	LastAuthenticated *string    `json:"lastAuthenticated,omitempty"`
	CreatedDate       *time.Time `json:"createdDate,omitempty"`
	BitLength         *int32     `json:"bitLength,omitempty"`
	AlgorithmType     *string    `json:"algorithmType,omitempty"`
	ExpiryDays        *int32     `json:"expiryDays,omitempty"`
	Label             *string    `json:"label,omitempty"`
	Text              *string    `json:"text,omitempty"`
}

RestSshKey struct for RestSshKey

func NewRestSshKey ¶

func NewRestSshKey() *RestSshKey

NewRestSshKey instantiates a new RestSshKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshKeyWithDefaults ¶

func NewRestSshKeyWithDefaults() *RestSshKey

NewRestSshKeyWithDefaults instantiates a new RestSshKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshKey) GetAlgorithmType ¶

func (o *RestSshKey) GetAlgorithmType() string

GetAlgorithmType returns the AlgorithmType field value if set, zero value otherwise.

func (*RestSshKey) GetAlgorithmTypeOk ¶

func (o *RestSshKey) GetAlgorithmTypeOk() (*string, bool)

GetAlgorithmTypeOk returns a tuple with the AlgorithmType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKey) GetBitLength ¶

func (o *RestSshKey) GetBitLength() int32

GetBitLength returns the BitLength field value if set, zero value otherwise.

func (*RestSshKey) GetBitLengthOk ¶

func (o *RestSshKey) GetBitLengthOk() (*int32, bool)

GetBitLengthOk returns a tuple with the BitLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKey) GetCreatedDate ¶

func (o *RestSshKey) GetCreatedDate() time.Time

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestSshKey) GetCreatedDateOk ¶

func (o *RestSshKey) GetCreatedDateOk() (*time.Time, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKey) GetExpiryDays ¶

func (o *RestSshKey) GetExpiryDays() int32

GetExpiryDays returns the ExpiryDays field value if set, zero value otherwise.

func (*RestSshKey) GetExpiryDaysOk ¶

func (o *RestSshKey) GetExpiryDaysOk() (*int32, bool)

GetExpiryDaysOk returns a tuple with the ExpiryDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKey) GetId ¶

func (o *RestSshKey) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*RestSshKey) GetIdOk ¶

func (o *RestSshKey) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKey) GetLabel ¶

func (o *RestSshKey) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*RestSshKey) GetLabelOk ¶

func (o *RestSshKey) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKey) GetLastAuthenticated ¶

func (o *RestSshKey) GetLastAuthenticated() string

GetLastAuthenticated returns the LastAuthenticated field value if set, zero value otherwise.

func (*RestSshKey) GetLastAuthenticatedOk ¶

func (o *RestSshKey) GetLastAuthenticatedOk() (*string, bool)

GetLastAuthenticatedOk returns a tuple with the LastAuthenticated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKey) GetText ¶

func (o *RestSshKey) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*RestSshKey) GetTextOk ¶

func (o *RestSshKey) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKey) HasAlgorithmType ¶

func (o *RestSshKey) HasAlgorithmType() bool

HasAlgorithmType returns a boolean if a field has been set.

func (*RestSshKey) HasBitLength ¶

func (o *RestSshKey) HasBitLength() bool

HasBitLength returns a boolean if a field has been set.

func (*RestSshKey) HasCreatedDate ¶

func (o *RestSshKey) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestSshKey) HasExpiryDays ¶

func (o *RestSshKey) HasExpiryDays() bool

HasExpiryDays returns a boolean if a field has been set.

func (*RestSshKey) HasId ¶

func (o *RestSshKey) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestSshKey) HasLabel ¶

func (o *RestSshKey) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*RestSshKey) HasLastAuthenticated ¶

func (o *RestSshKey) HasLastAuthenticated() bool

HasLastAuthenticated returns a boolean if a field has been set.

func (*RestSshKey) HasText ¶

func (o *RestSshKey) HasText() bool

HasText returns a boolean if a field has been set.

func (RestSshKey) MarshalJSON ¶

func (o RestSshKey) MarshalJSON() ([]byte, error)

func (*RestSshKey) SetAlgorithmType ¶

func (o *RestSshKey) SetAlgorithmType(v string)

SetAlgorithmType gets a reference to the given string and assigns it to the AlgorithmType field.

func (*RestSshKey) SetBitLength ¶

func (o *RestSshKey) SetBitLength(v int32)

SetBitLength gets a reference to the given int32 and assigns it to the BitLength field.

func (*RestSshKey) SetCreatedDate ¶

func (o *RestSshKey) SetCreatedDate(v time.Time)

SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field.

func (*RestSshKey) SetExpiryDays ¶

func (o *RestSshKey) SetExpiryDays(v int32)

SetExpiryDays gets a reference to the given int32 and assigns it to the ExpiryDays field.

func (*RestSshKey) SetId ¶

func (o *RestSshKey) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*RestSshKey) SetLabel ¶

func (o *RestSshKey) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*RestSshKey) SetLastAuthenticated ¶

func (o *RestSshKey) SetLastAuthenticated(v string)

SetLastAuthenticated gets a reference to the given string and assigns it to the LastAuthenticated field.

func (*RestSshKey) SetText ¶

func (o *RestSshKey) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (RestSshKey) ToMap ¶

func (o RestSshKey) ToMap() (map[string]interface{}, error)

type RestSshKeySettings ¶

type RestSshKeySettings struct {
	KeyTypeRestrictions []RestSshKeyTypeRestriction      `json:"keyTypeRestrictions,omitempty"`
	MaxExpiryDays       *RestSshKeySettingsMaxExpiryDays `json:"maxExpiryDays,omitempty"`
}

RestSshKeySettings struct for RestSshKeySettings

func NewRestSshKeySettings ¶

func NewRestSshKeySettings() *RestSshKeySettings

NewRestSshKeySettings instantiates a new RestSshKeySettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshKeySettingsWithDefaults ¶

func NewRestSshKeySettingsWithDefaults() *RestSshKeySettings

NewRestSshKeySettingsWithDefaults instantiates a new RestSshKeySettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshKeySettings) GetKeyTypeRestrictions ¶

func (o *RestSshKeySettings) GetKeyTypeRestrictions() []RestSshKeyTypeRestriction

GetKeyTypeRestrictions returns the KeyTypeRestrictions field value if set, zero value otherwise.

func (*RestSshKeySettings) GetKeyTypeRestrictionsOk ¶

func (o *RestSshKeySettings) GetKeyTypeRestrictionsOk() ([]RestSshKeyTypeRestriction, bool)

GetKeyTypeRestrictionsOk returns a tuple with the KeyTypeRestrictions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKeySettings) GetMaxExpiryDays ¶

GetMaxExpiryDays returns the MaxExpiryDays field value if set, zero value otherwise.

func (*RestSshKeySettings) GetMaxExpiryDaysOk ¶

func (o *RestSshKeySettings) GetMaxExpiryDaysOk() (*RestSshKeySettingsMaxExpiryDays, bool)

GetMaxExpiryDaysOk returns a tuple with the MaxExpiryDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKeySettings) HasKeyTypeRestrictions ¶

func (o *RestSshKeySettings) HasKeyTypeRestrictions() bool

HasKeyTypeRestrictions returns a boolean if a field has been set.

func (*RestSshKeySettings) HasMaxExpiryDays ¶

func (o *RestSshKeySettings) HasMaxExpiryDays() bool

HasMaxExpiryDays returns a boolean if a field has been set.

func (RestSshKeySettings) MarshalJSON ¶

func (o RestSshKeySettings) MarshalJSON() ([]byte, error)

func (*RestSshKeySettings) SetKeyTypeRestrictions ¶

func (o *RestSshKeySettings) SetKeyTypeRestrictions(v []RestSshKeyTypeRestriction)

SetKeyTypeRestrictions gets a reference to the given []RestSshKeyTypeRestriction and assigns it to the KeyTypeRestrictions field.

func (*RestSshKeySettings) SetMaxExpiryDays ¶

func (o *RestSshKeySettings) SetMaxExpiryDays(v RestSshKeySettingsMaxExpiryDays)

SetMaxExpiryDays gets a reference to the given RestSshKeySettingsMaxExpiryDays and assigns it to the MaxExpiryDays field.

func (RestSshKeySettings) ToMap ¶

func (o RestSshKeySettings) ToMap() (map[string]interface{}, error)

type RestSshKeySettingsMaxExpiryDays ¶

type RestSshKeySettingsMaxExpiryDays struct {
	AsInt   *int32 `json:"asInt,omitempty"`
	Present *bool  `json:"present,omitempty"`
}

RestSshKeySettingsMaxExpiryDays struct for RestSshKeySettingsMaxExpiryDays

func NewRestSshKeySettingsMaxExpiryDays ¶

func NewRestSshKeySettingsMaxExpiryDays() *RestSshKeySettingsMaxExpiryDays

NewRestSshKeySettingsMaxExpiryDays instantiates a new RestSshKeySettingsMaxExpiryDays object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshKeySettingsMaxExpiryDaysWithDefaults ¶

func NewRestSshKeySettingsMaxExpiryDaysWithDefaults() *RestSshKeySettingsMaxExpiryDays

NewRestSshKeySettingsMaxExpiryDaysWithDefaults instantiates a new RestSshKeySettingsMaxExpiryDays object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshKeySettingsMaxExpiryDays) GetAsInt ¶

func (o *RestSshKeySettingsMaxExpiryDays) GetAsInt() int32

GetAsInt returns the AsInt field value if set, zero value otherwise.

func (*RestSshKeySettingsMaxExpiryDays) GetAsIntOk ¶

func (o *RestSshKeySettingsMaxExpiryDays) GetAsIntOk() (*int32, bool)

GetAsIntOk returns a tuple with the AsInt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKeySettingsMaxExpiryDays) GetPresent ¶

func (o *RestSshKeySettingsMaxExpiryDays) GetPresent() bool

GetPresent returns the Present field value if set, zero value otherwise.

func (*RestSshKeySettingsMaxExpiryDays) GetPresentOk ¶

func (o *RestSshKeySettingsMaxExpiryDays) GetPresentOk() (*bool, bool)

GetPresentOk returns a tuple with the Present field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKeySettingsMaxExpiryDays) HasAsInt ¶

func (o *RestSshKeySettingsMaxExpiryDays) HasAsInt() bool

HasAsInt returns a boolean if a field has been set.

func (*RestSshKeySettingsMaxExpiryDays) HasPresent ¶

func (o *RestSshKeySettingsMaxExpiryDays) HasPresent() bool

HasPresent returns a boolean if a field has been set.

func (RestSshKeySettingsMaxExpiryDays) MarshalJSON ¶

func (o RestSshKeySettingsMaxExpiryDays) MarshalJSON() ([]byte, error)

func (*RestSshKeySettingsMaxExpiryDays) SetAsInt ¶

func (o *RestSshKeySettingsMaxExpiryDays) SetAsInt(v int32)

SetAsInt gets a reference to the given int32 and assigns it to the AsInt field.

func (*RestSshKeySettingsMaxExpiryDays) SetPresent ¶

func (o *RestSshKeySettingsMaxExpiryDays) SetPresent(v bool)

SetPresent gets a reference to the given bool and assigns it to the Present field.

func (RestSshKeySettingsMaxExpiryDays) ToMap ¶

func (o RestSshKeySettingsMaxExpiryDays) ToMap() (map[string]interface{}, error)

type RestSshKeyTypeRestriction ¶

type RestSshKeyTypeRestriction struct {
	Algorithm    *string                                `json:"algorithm,omitempty"`
	Allowed      *bool                                  `json:"allowed,omitempty"`
	MinKeyLength *RestSshKeyTypeRestrictionMinKeyLength `json:"minKeyLength,omitempty"`
}

RestSshKeyTypeRestriction struct for RestSshKeyTypeRestriction

func NewRestSshKeyTypeRestriction ¶

func NewRestSshKeyTypeRestriction() *RestSshKeyTypeRestriction

NewRestSshKeyTypeRestriction instantiates a new RestSshKeyTypeRestriction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshKeyTypeRestrictionWithDefaults ¶

func NewRestSshKeyTypeRestrictionWithDefaults() *RestSshKeyTypeRestriction

NewRestSshKeyTypeRestrictionWithDefaults instantiates a new RestSshKeyTypeRestriction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshKeyTypeRestriction) GetAlgorithm ¶

func (o *RestSshKeyTypeRestriction) GetAlgorithm() string

GetAlgorithm returns the Algorithm field value if set, zero value otherwise.

func (*RestSshKeyTypeRestriction) GetAlgorithmOk ¶

func (o *RestSshKeyTypeRestriction) GetAlgorithmOk() (*string, bool)

GetAlgorithmOk returns a tuple with the Algorithm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKeyTypeRestriction) GetAllowed ¶

func (o *RestSshKeyTypeRestriction) GetAllowed() bool

GetAllowed returns the Allowed field value if set, zero value otherwise.

func (*RestSshKeyTypeRestriction) GetAllowedOk ¶

func (o *RestSshKeyTypeRestriction) GetAllowedOk() (*bool, bool)

GetAllowedOk returns a tuple with the Allowed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKeyTypeRestriction) GetMinKeyLength ¶

GetMinKeyLength returns the MinKeyLength field value if set, zero value otherwise.

func (*RestSshKeyTypeRestriction) GetMinKeyLengthOk ¶

GetMinKeyLengthOk returns a tuple with the MinKeyLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKeyTypeRestriction) HasAlgorithm ¶

func (o *RestSshKeyTypeRestriction) HasAlgorithm() bool

HasAlgorithm returns a boolean if a field has been set.

func (*RestSshKeyTypeRestriction) HasAllowed ¶

func (o *RestSshKeyTypeRestriction) HasAllowed() bool

HasAllowed returns a boolean if a field has been set.

func (*RestSshKeyTypeRestriction) HasMinKeyLength ¶

func (o *RestSshKeyTypeRestriction) HasMinKeyLength() bool

HasMinKeyLength returns a boolean if a field has been set.

func (RestSshKeyTypeRestriction) MarshalJSON ¶

func (o RestSshKeyTypeRestriction) MarshalJSON() ([]byte, error)

func (*RestSshKeyTypeRestriction) SetAlgorithm ¶

func (o *RestSshKeyTypeRestriction) SetAlgorithm(v string)

SetAlgorithm gets a reference to the given string and assigns it to the Algorithm field.

func (*RestSshKeyTypeRestriction) SetAllowed ¶

func (o *RestSshKeyTypeRestriction) SetAllowed(v bool)

SetAllowed gets a reference to the given bool and assigns it to the Allowed field.

func (*RestSshKeyTypeRestriction) SetMinKeyLength ¶

SetMinKeyLength gets a reference to the given RestSshKeyTypeRestrictionMinKeyLength and assigns it to the MinKeyLength field.

func (RestSshKeyTypeRestriction) ToMap ¶

func (o RestSshKeyTypeRestriction) ToMap() (map[string]interface{}, error)

type RestSshKeyTypeRestrictionMinKeyLength ¶

type RestSshKeyTypeRestrictionMinKeyLength struct {
	AsInt   *int32 `json:"asInt,omitempty"`
	Present *bool  `json:"present,omitempty"`
}

RestSshKeyTypeRestrictionMinKeyLength struct for RestSshKeyTypeRestrictionMinKeyLength

func NewRestSshKeyTypeRestrictionMinKeyLength ¶

func NewRestSshKeyTypeRestrictionMinKeyLength() *RestSshKeyTypeRestrictionMinKeyLength

NewRestSshKeyTypeRestrictionMinKeyLength instantiates a new RestSshKeyTypeRestrictionMinKeyLength object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshKeyTypeRestrictionMinKeyLengthWithDefaults ¶

func NewRestSshKeyTypeRestrictionMinKeyLengthWithDefaults() *RestSshKeyTypeRestrictionMinKeyLength

NewRestSshKeyTypeRestrictionMinKeyLengthWithDefaults instantiates a new RestSshKeyTypeRestrictionMinKeyLength object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshKeyTypeRestrictionMinKeyLength) GetAsInt ¶

GetAsInt returns the AsInt field value if set, zero value otherwise.

func (*RestSshKeyTypeRestrictionMinKeyLength) GetAsIntOk ¶

func (o *RestSshKeyTypeRestrictionMinKeyLength) GetAsIntOk() (*int32, bool)

GetAsIntOk returns a tuple with the AsInt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKeyTypeRestrictionMinKeyLength) GetPresent ¶

GetPresent returns the Present field value if set, zero value otherwise.

func (*RestSshKeyTypeRestrictionMinKeyLength) GetPresentOk ¶

func (o *RestSshKeyTypeRestrictionMinKeyLength) GetPresentOk() (*bool, bool)

GetPresentOk returns a tuple with the Present field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshKeyTypeRestrictionMinKeyLength) HasAsInt ¶

HasAsInt returns a boolean if a field has been set.

func (*RestSshKeyTypeRestrictionMinKeyLength) HasPresent ¶

HasPresent returns a boolean if a field has been set.

func (RestSshKeyTypeRestrictionMinKeyLength) MarshalJSON ¶

func (o RestSshKeyTypeRestrictionMinKeyLength) MarshalJSON() ([]byte, error)

func (*RestSshKeyTypeRestrictionMinKeyLength) SetAsInt ¶

SetAsInt gets a reference to the given int32 and assigns it to the AsInt field.

func (*RestSshKeyTypeRestrictionMinKeyLength) SetPresent ¶

SetPresent gets a reference to the given bool and assigns it to the Present field.

func (RestSshKeyTypeRestrictionMinKeyLength) ToMap ¶

func (o RestSshKeyTypeRestrictionMinKeyLength) ToMap() (map[string]interface{}, error)

type RestSshSettings ¶

type RestSshSettings struct {
	Enabled           *bool                    `json:"enabled,omitempty"`
	Port              *int32                   `json:"port,omitempty"`
	BaseUrl           *string                  `json:"baseUrl,omitempty"`
	Fingerprint       *SimpleSshKeyFingerprint `json:"fingerprint,omitempty"`
	AccessKeysEnabled *bool                    `json:"accessKeysEnabled,omitempty"`
}

RestSshSettings struct for RestSshSettings

func NewRestSshSettings ¶

func NewRestSshSettings() *RestSshSettings

NewRestSshSettings instantiates a new RestSshSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSshSettingsWithDefaults ¶

func NewRestSshSettingsWithDefaults() *RestSshSettings

NewRestSshSettingsWithDefaults instantiates a new RestSshSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSshSettings) GetAccessKeysEnabled ¶

func (o *RestSshSettings) GetAccessKeysEnabled() bool

GetAccessKeysEnabled returns the AccessKeysEnabled field value if set, zero value otherwise.

func (*RestSshSettings) GetAccessKeysEnabledOk ¶

func (o *RestSshSettings) GetAccessKeysEnabledOk() (*bool, bool)

GetAccessKeysEnabledOk returns a tuple with the AccessKeysEnabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshSettings) GetBaseUrl ¶

func (o *RestSshSettings) GetBaseUrl() string

GetBaseUrl returns the BaseUrl field value if set, zero value otherwise.

func (*RestSshSettings) GetBaseUrlOk ¶

func (o *RestSshSettings) GetBaseUrlOk() (*string, bool)

GetBaseUrlOk returns a tuple with the BaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshSettings) GetEnabled ¶

func (o *RestSshSettings) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*RestSshSettings) GetEnabledOk ¶

func (o *RestSshSettings) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshSettings) GetFingerprint ¶

func (o *RestSshSettings) GetFingerprint() SimpleSshKeyFingerprint

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*RestSshSettings) GetFingerprintOk ¶

func (o *RestSshSettings) GetFingerprintOk() (*SimpleSshKeyFingerprint, bool)

GetFingerprintOk returns a tuple with the Fingerprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshSettings) GetPort ¶

func (o *RestSshSettings) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*RestSshSettings) GetPortOk ¶

func (o *RestSshSettings) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSshSettings) HasAccessKeysEnabled ¶

func (o *RestSshSettings) HasAccessKeysEnabled() bool

HasAccessKeysEnabled returns a boolean if a field has been set.

func (*RestSshSettings) HasBaseUrl ¶

func (o *RestSshSettings) HasBaseUrl() bool

HasBaseUrl returns a boolean if a field has been set.

func (*RestSshSettings) HasEnabled ¶

func (o *RestSshSettings) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*RestSshSettings) HasFingerprint ¶

func (o *RestSshSettings) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*RestSshSettings) HasPort ¶

func (o *RestSshSettings) HasPort() bool

HasPort returns a boolean if a field has been set.

func (RestSshSettings) MarshalJSON ¶

func (o RestSshSettings) MarshalJSON() ([]byte, error)

func (*RestSshSettings) SetAccessKeysEnabled ¶

func (o *RestSshSettings) SetAccessKeysEnabled(v bool)

SetAccessKeysEnabled gets a reference to the given bool and assigns it to the AccessKeysEnabled field.

func (*RestSshSettings) SetBaseUrl ¶

func (o *RestSshSettings) SetBaseUrl(v string)

SetBaseUrl gets a reference to the given string and assigns it to the BaseUrl field.

func (*RestSshSettings) SetEnabled ¶

func (o *RestSshSettings) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*RestSshSettings) SetFingerprint ¶

func (o *RestSshSettings) SetFingerprint(v SimpleSshKeyFingerprint)

SetFingerprint gets a reference to the given SimpleSshKeyFingerprint and assigns it to the Fingerprint field.

func (*RestSshSettings) SetPort ¶

func (o *RestSshSettings) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (RestSshSettings) ToMap ¶

func (o RestSshSettings) ToMap() (map[string]interface{}, error)

type RestSyncProgress ¶

type RestSyncProgress struct {
	SyncedRepos *int32 `json:"syncedRepos,omitempty"`
	Discovering *bool  `json:"discovering,omitempty"`
	TotalRepos  *int32 `json:"totalRepos,omitempty"`
}

RestSyncProgress struct for RestSyncProgress

func NewRestSyncProgress ¶

func NewRestSyncProgress() *RestSyncProgress

NewRestSyncProgress instantiates a new RestSyncProgress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestSyncProgressWithDefaults ¶

func NewRestSyncProgressWithDefaults() *RestSyncProgress

NewRestSyncProgressWithDefaults instantiates a new RestSyncProgress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestSyncProgress) GetDiscovering ¶

func (o *RestSyncProgress) GetDiscovering() bool

GetDiscovering returns the Discovering field value if set, zero value otherwise.

func (*RestSyncProgress) GetDiscoveringOk ¶

func (o *RestSyncProgress) GetDiscoveringOk() (*bool, bool)

GetDiscoveringOk returns a tuple with the Discovering field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSyncProgress) GetSyncedRepos ¶

func (o *RestSyncProgress) GetSyncedRepos() int32

GetSyncedRepos returns the SyncedRepos field value if set, zero value otherwise.

func (*RestSyncProgress) GetSyncedReposOk ¶

func (o *RestSyncProgress) GetSyncedReposOk() (*int32, bool)

GetSyncedReposOk returns a tuple with the SyncedRepos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSyncProgress) GetTotalRepos ¶

func (o *RestSyncProgress) GetTotalRepos() int32

GetTotalRepos returns the TotalRepos field value if set, zero value otherwise.

func (*RestSyncProgress) GetTotalReposOk ¶

func (o *RestSyncProgress) GetTotalReposOk() (*int32, bool)

GetTotalReposOk returns a tuple with the TotalRepos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestSyncProgress) HasDiscovering ¶

func (o *RestSyncProgress) HasDiscovering() bool

HasDiscovering returns a boolean if a field has been set.

func (*RestSyncProgress) HasSyncedRepos ¶

func (o *RestSyncProgress) HasSyncedRepos() bool

HasSyncedRepos returns a boolean if a field has been set.

func (*RestSyncProgress) HasTotalRepos ¶

func (o *RestSyncProgress) HasTotalRepos() bool

HasTotalRepos returns a boolean if a field has been set.

func (RestSyncProgress) MarshalJSON ¶

func (o RestSyncProgress) MarshalJSON() ([]byte, error)

func (*RestSyncProgress) SetDiscovering ¶

func (o *RestSyncProgress) SetDiscovering(v bool)

SetDiscovering gets a reference to the given bool and assigns it to the Discovering field.

func (*RestSyncProgress) SetSyncedRepos ¶

func (o *RestSyncProgress) SetSyncedRepos(v int32)

SetSyncedRepos gets a reference to the given int32 and assigns it to the SyncedRepos field.

func (*RestSyncProgress) SetTotalRepos ¶

func (o *RestSyncProgress) SetTotalRepos(v int32)

SetTotalRepos gets a reference to the given int32 and assigns it to the TotalRepos field.

func (RestSyncProgress) ToMap ¶

func (o RestSyncProgress) ToMap() (map[string]interface{}, error)

type RestTag ¶

type RestTag struct {
	Hash            *string `json:"hash,omitempty"`
	LatestChangeset *string `json:"latestChangeset,omitempty"`
	LatestCommit    *string `json:"latestCommit,omitempty"`
	Id              *string `json:"id,omitempty"`
	Type            *string `json:"type,omitempty"`
	DisplayId       *string `json:"displayId,omitempty"`
}

RestTag struct for RestTag

func NewRestTag ¶

func NewRestTag() *RestTag

NewRestTag instantiates a new RestTag object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestTagWithDefaults ¶

func NewRestTagWithDefaults() *RestTag

NewRestTagWithDefaults instantiates a new RestTag object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestTag) GetDisplayId ¶

func (o *RestTag) GetDisplayId() string

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*RestTag) GetDisplayIdOk ¶

func (o *RestTag) GetDisplayIdOk() (*string, bool)

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTag) GetHash ¶

func (o *RestTag) GetHash() string

GetHash returns the Hash field value if set, zero value otherwise.

func (*RestTag) GetHashOk ¶

func (o *RestTag) GetHashOk() (*string, bool)

GetHashOk returns a tuple with the Hash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTag) GetId ¶

func (o *RestTag) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestTag) GetIdOk ¶

func (o *RestTag) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTag) GetLatestChangeset ¶

func (o *RestTag) GetLatestChangeset() string

GetLatestChangeset returns the LatestChangeset field value if set, zero value otherwise.

func (*RestTag) GetLatestChangesetOk ¶

func (o *RestTag) GetLatestChangesetOk() (*string, bool)

GetLatestChangesetOk returns a tuple with the LatestChangeset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTag) GetLatestCommit ¶

func (o *RestTag) GetLatestCommit() string

GetLatestCommit returns the LatestCommit field value if set, zero value otherwise.

func (*RestTag) GetLatestCommitOk ¶

func (o *RestTag) GetLatestCommitOk() (*string, bool)

GetLatestCommitOk returns a tuple with the LatestCommit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTag) GetType ¶

func (o *RestTag) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestTag) GetTypeOk ¶

func (o *RestTag) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTag) HasDisplayId ¶

func (o *RestTag) HasDisplayId() bool

HasDisplayId returns a boolean if a field has been set.

func (*RestTag) HasHash ¶

func (o *RestTag) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*RestTag) HasId ¶

func (o *RestTag) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestTag) HasLatestChangeset ¶

func (o *RestTag) HasLatestChangeset() bool

HasLatestChangeset returns a boolean if a field has been set.

func (*RestTag) HasLatestCommit ¶

func (o *RestTag) HasLatestCommit() bool

HasLatestCommit returns a boolean if a field has been set.

func (*RestTag) HasType ¶

func (o *RestTag) HasType() bool

HasType returns a boolean if a field has been set.

func (RestTag) MarshalJSON ¶

func (o RestTag) MarshalJSON() ([]byte, error)

func (*RestTag) SetDisplayId ¶

func (o *RestTag) SetDisplayId(v string)

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*RestTag) SetHash ¶

func (o *RestTag) SetHash(v string)

SetHash gets a reference to the given string and assigns it to the Hash field.

func (*RestTag) SetId ¶

func (o *RestTag) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestTag) SetLatestChangeset ¶

func (o *RestTag) SetLatestChangeset(v string)

SetLatestChangeset gets a reference to the given string and assigns it to the LatestChangeset field.

func (*RestTag) SetLatestCommit ¶

func (o *RestTag) SetLatestCommit(v string)

SetLatestCommit gets a reference to the given string and assigns it to the LatestCommit field.

func (*RestTag) SetType ¶

func (o *RestTag) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestTag) ToMap ¶

func (o RestTag) ToMap() (map[string]interface{}, error)

type RestTestResults ¶

type RestTestResults struct {
	Skipped    *int32 `json:"skipped,omitempty"`
	Successful *int32 `json:"successful,omitempty"`
	Failed     *int32 `json:"failed,omitempty"`
}

RestTestResults struct for RestTestResults

func NewRestTestResults ¶

func NewRestTestResults() *RestTestResults

NewRestTestResults instantiates a new RestTestResults object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestTestResultsWithDefaults ¶

func NewRestTestResultsWithDefaults() *RestTestResults

NewRestTestResultsWithDefaults instantiates a new RestTestResults object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestTestResults) GetFailed ¶

func (o *RestTestResults) GetFailed() int32

GetFailed returns the Failed field value if set, zero value otherwise.

func (*RestTestResults) GetFailedOk ¶

func (o *RestTestResults) GetFailedOk() (*int32, bool)

GetFailedOk returns a tuple with the Failed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTestResults) GetSkipped ¶

func (o *RestTestResults) GetSkipped() int32

GetSkipped returns the Skipped field value if set, zero value otherwise.

func (*RestTestResults) GetSkippedOk ¶

func (o *RestTestResults) GetSkippedOk() (*int32, bool)

GetSkippedOk returns a tuple with the Skipped field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTestResults) GetSuccessful ¶

func (o *RestTestResults) GetSuccessful() int32

GetSuccessful returns the Successful field value if set, zero value otherwise.

func (*RestTestResults) GetSuccessfulOk ¶

func (o *RestTestResults) GetSuccessfulOk() (*int32, bool)

GetSuccessfulOk returns a tuple with the Successful field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTestResults) HasFailed ¶

func (o *RestTestResults) HasFailed() bool

HasFailed returns a boolean if a field has been set.

func (*RestTestResults) HasSkipped ¶

func (o *RestTestResults) HasSkipped() bool

HasSkipped returns a boolean if a field has been set.

func (*RestTestResults) HasSuccessful ¶

func (o *RestTestResults) HasSuccessful() bool

HasSuccessful returns a boolean if a field has been set.

func (RestTestResults) MarshalJSON ¶

func (o RestTestResults) MarshalJSON() ([]byte, error)

func (*RestTestResults) SetFailed ¶

func (o *RestTestResults) SetFailed(v int32)

SetFailed gets a reference to the given int32 and assigns it to the Failed field.

func (*RestTestResults) SetSkipped ¶

func (o *RestTestResults) SetSkipped(v int32)

SetSkipped gets a reference to the given int32 and assigns it to the Skipped field.

func (*RestTestResults) SetSuccessful ¶

func (o *RestTestResults) SetSuccessful(v int32)

SetSuccessful gets a reference to the given int32 and assigns it to the Successful field.

func (RestTestResults) ToMap ¶

func (o RestTestResults) ToMap() (map[string]interface{}, error)

type RestTokenBucketSettings ¶

type RestTokenBucketSettings struct {
	Capacity *int32 `json:"capacity,omitempty"`
	FillRate *int32 `json:"fillRate,omitempty"`
}

RestTokenBucketSettings struct for RestTokenBucketSettings

func NewRestTokenBucketSettings ¶

func NewRestTokenBucketSettings() *RestTokenBucketSettings

NewRestTokenBucketSettings instantiates a new RestTokenBucketSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestTokenBucketSettingsWithDefaults ¶

func NewRestTokenBucketSettingsWithDefaults() *RestTokenBucketSettings

NewRestTokenBucketSettingsWithDefaults instantiates a new RestTokenBucketSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestTokenBucketSettings) GetCapacity ¶

func (o *RestTokenBucketSettings) GetCapacity() int32

GetCapacity returns the Capacity field value if set, zero value otherwise.

func (*RestTokenBucketSettings) GetCapacityOk ¶

func (o *RestTokenBucketSettings) GetCapacityOk() (*int32, bool)

GetCapacityOk returns a tuple with the Capacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTokenBucketSettings) GetFillRate ¶

func (o *RestTokenBucketSettings) GetFillRate() int32

GetFillRate returns the FillRate field value if set, zero value otherwise.

func (*RestTokenBucketSettings) GetFillRateOk ¶

func (o *RestTokenBucketSettings) GetFillRateOk() (*int32, bool)

GetFillRateOk returns a tuple with the FillRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestTokenBucketSettings) HasCapacity ¶

func (o *RestTokenBucketSettings) HasCapacity() bool

HasCapacity returns a boolean if a field has been set.

func (*RestTokenBucketSettings) HasFillRate ¶

func (o *RestTokenBucketSettings) HasFillRate() bool

HasFillRate returns a boolean if a field has been set.

func (RestTokenBucketSettings) MarshalJSON ¶

func (o RestTokenBucketSettings) MarshalJSON() ([]byte, error)

func (*RestTokenBucketSettings) SetCapacity ¶

func (o *RestTokenBucketSettings) SetCapacity(v int32)

SetCapacity gets a reference to the given int32 and assigns it to the Capacity field.

func (*RestTokenBucketSettings) SetFillRate ¶

func (o *RestTokenBucketSettings) SetFillRate(v int32)

SetFillRate gets a reference to the given int32 and assigns it to the FillRate field.

func (RestTokenBucketSettings) ToMap ¶

func (o RestTokenBucketSettings) ToMap() (map[string]interface{}, error)

type RestUpstreamServer ¶

type RestUpstreamServer struct {
	Id         *string `json:"id,omitempty"`
	State      *string `json:"state,omitempty"`
	Type       *string `json:"type,omitempty"`
	ApiBaseUrl *string `json:"apiBaseUrl,omitempty"`
	BaseUrl    *string `json:"baseUrl,omitempty"`
}

RestUpstreamServer struct for RestUpstreamServer

func NewRestUpstreamServer ¶

func NewRestUpstreamServer() *RestUpstreamServer

NewRestUpstreamServer instantiates a new RestUpstreamServer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUpstreamServerWithDefaults ¶

func NewRestUpstreamServerWithDefaults() *RestUpstreamServer

NewRestUpstreamServerWithDefaults instantiates a new RestUpstreamServer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUpstreamServer) GetApiBaseUrl ¶

func (o *RestUpstreamServer) GetApiBaseUrl() string

GetApiBaseUrl returns the ApiBaseUrl field value if set, zero value otherwise.

func (*RestUpstreamServer) GetApiBaseUrlOk ¶

func (o *RestUpstreamServer) GetApiBaseUrlOk() (*string, bool)

GetApiBaseUrlOk returns a tuple with the ApiBaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUpstreamServer) GetBaseUrl ¶

func (o *RestUpstreamServer) GetBaseUrl() string

GetBaseUrl returns the BaseUrl field value if set, zero value otherwise.

func (*RestUpstreamServer) GetBaseUrlOk ¶

func (o *RestUpstreamServer) GetBaseUrlOk() (*string, bool)

GetBaseUrlOk returns a tuple with the BaseUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUpstreamServer) GetId ¶

func (o *RestUpstreamServer) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestUpstreamServer) GetIdOk ¶

func (o *RestUpstreamServer) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUpstreamServer) GetState ¶

func (o *RestUpstreamServer) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestUpstreamServer) GetStateOk ¶

func (o *RestUpstreamServer) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUpstreamServer) GetType ¶

func (o *RestUpstreamServer) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestUpstreamServer) GetTypeOk ¶

func (o *RestUpstreamServer) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUpstreamServer) HasApiBaseUrl ¶

func (o *RestUpstreamServer) HasApiBaseUrl() bool

HasApiBaseUrl returns a boolean if a field has been set.

func (*RestUpstreamServer) HasBaseUrl ¶

func (o *RestUpstreamServer) HasBaseUrl() bool

HasBaseUrl returns a boolean if a field has been set.

func (*RestUpstreamServer) HasId ¶

func (o *RestUpstreamServer) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestUpstreamServer) HasState ¶

func (o *RestUpstreamServer) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestUpstreamServer) HasType ¶

func (o *RestUpstreamServer) HasType() bool

HasType returns a boolean if a field has been set.

func (RestUpstreamServer) MarshalJSON ¶

func (o RestUpstreamServer) MarshalJSON() ([]byte, error)

func (*RestUpstreamServer) SetApiBaseUrl ¶

func (o *RestUpstreamServer) SetApiBaseUrl(v string)

SetApiBaseUrl gets a reference to the given string and assigns it to the ApiBaseUrl field.

func (*RestUpstreamServer) SetBaseUrl ¶

func (o *RestUpstreamServer) SetBaseUrl(v string)

SetBaseUrl gets a reference to the given string and assigns it to the BaseUrl field.

func (*RestUpstreamServer) SetId ¶

func (o *RestUpstreamServer) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestUpstreamServer) SetState ¶

func (o *RestUpstreamServer) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestUpstreamServer) SetType ¶

func (o *RestUpstreamServer) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestUpstreamServer) ToMap ¶

func (o RestUpstreamServer) ToMap() (map[string]interface{}, error)

type RestUpstreamSettings ¶

type RestUpstreamSettings struct {
	ProjectIds []string `json:"projectIds,omitempty"`
	Mode       *string  `json:"mode,omitempty"`
}

RestUpstreamSettings struct for RestUpstreamSettings

func NewRestUpstreamSettings ¶

func NewRestUpstreamSettings() *RestUpstreamSettings

NewRestUpstreamSettings instantiates a new RestUpstreamSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUpstreamSettingsWithDefaults ¶

func NewRestUpstreamSettingsWithDefaults() *RestUpstreamSettings

NewRestUpstreamSettingsWithDefaults instantiates a new RestUpstreamSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUpstreamSettings) GetMode ¶

func (o *RestUpstreamSettings) GetMode() string

GetMode returns the Mode field value if set, zero value otherwise.

func (*RestUpstreamSettings) GetModeOk ¶

func (o *RestUpstreamSettings) GetModeOk() (*string, bool)

GetModeOk returns a tuple with the Mode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUpstreamSettings) GetProjectIds ¶

func (o *RestUpstreamSettings) GetProjectIds() []string

GetProjectIds returns the ProjectIds field value if set, zero value otherwise.

func (*RestUpstreamSettings) GetProjectIdsOk ¶

func (o *RestUpstreamSettings) GetProjectIdsOk() ([]string, bool)

GetProjectIdsOk returns a tuple with the ProjectIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUpstreamSettings) HasMode ¶

func (o *RestUpstreamSettings) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*RestUpstreamSettings) HasProjectIds ¶

func (o *RestUpstreamSettings) HasProjectIds() bool

HasProjectIds returns a boolean if a field has been set.

func (RestUpstreamSettings) MarshalJSON ¶

func (o RestUpstreamSettings) MarshalJSON() ([]byte, error)

func (*RestUpstreamSettings) SetMode ¶

func (o *RestUpstreamSettings) SetMode(v string)

SetMode gets a reference to the given string and assigns it to the Mode field.

func (*RestUpstreamSettings) SetProjectIds ¶

func (o *RestUpstreamSettings) SetProjectIds(v []string)

SetProjectIds gets a reference to the given []string and assigns it to the ProjectIds field.

func (RestUpstreamSettings) ToMap ¶

func (o RestUpstreamSettings) ToMap() (map[string]interface{}, error)

type RestUserDirectory ¶

type RestUserDirectory struct {
	Name        *string `json:"name,omitempty"`
	Type        *string `json:"type,omitempty"`
	Description *string `json:"description,omitempty"`
	Active      *bool   `json:"active,omitempty"`
}

RestUserDirectory struct for RestUserDirectory

func NewRestUserDirectory ¶

func NewRestUserDirectory() *RestUserDirectory

NewRestUserDirectory instantiates a new RestUserDirectory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUserDirectoryWithDefaults ¶

func NewRestUserDirectoryWithDefaults() *RestUserDirectory

NewRestUserDirectoryWithDefaults instantiates a new RestUserDirectory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUserDirectory) GetActive ¶

func (o *RestUserDirectory) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*RestUserDirectory) GetActiveOk ¶

func (o *RestUserDirectory) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserDirectory) GetDescription ¶

func (o *RestUserDirectory) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RestUserDirectory) GetDescriptionOk ¶

func (o *RestUserDirectory) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserDirectory) GetName ¶

func (o *RestUserDirectory) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestUserDirectory) GetNameOk ¶

func (o *RestUserDirectory) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserDirectory) GetType ¶

func (o *RestUserDirectory) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestUserDirectory) GetTypeOk ¶

func (o *RestUserDirectory) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserDirectory) HasActive ¶

func (o *RestUserDirectory) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*RestUserDirectory) HasDescription ¶

func (o *RestUserDirectory) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RestUserDirectory) HasName ¶

func (o *RestUserDirectory) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestUserDirectory) HasType ¶

func (o *RestUserDirectory) HasType() bool

HasType returns a boolean if a field has been set.

func (RestUserDirectory) MarshalJSON ¶

func (o RestUserDirectory) MarshalJSON() ([]byte, error)

func (*RestUserDirectory) SetActive ¶

func (o *RestUserDirectory) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*RestUserDirectory) SetDescription ¶

func (o *RestUserDirectory) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RestUserDirectory) SetName ¶

func (o *RestUserDirectory) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestUserDirectory) SetType ¶

func (o *RestUserDirectory) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestUserDirectory) ToMap ¶

func (o RestUserDirectory) ToMap() (map[string]interface{}, error)

type RestUserRateLimitSettings ¶

type RestUserRateLimitSettings struct {
	Whitelisted *bool                                               `json:"whitelisted,omitempty"`
	Settings    *RestBulkUserRateLimitSettingsUpdateRequestSettings `json:"settings,omitempty"`
	User        *RestPullRequestParticipantUser                     `json:"user,omitempty"`
}

RestUserRateLimitSettings struct for RestUserRateLimitSettings

func NewRestUserRateLimitSettings ¶

func NewRestUserRateLimitSettings() *RestUserRateLimitSettings

NewRestUserRateLimitSettings instantiates a new RestUserRateLimitSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUserRateLimitSettingsWithDefaults ¶

func NewRestUserRateLimitSettingsWithDefaults() *RestUserRateLimitSettings

NewRestUserRateLimitSettingsWithDefaults instantiates a new RestUserRateLimitSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUserRateLimitSettings) GetSettings ¶

GetSettings returns the Settings field value if set, zero value otherwise.

func (*RestUserRateLimitSettings) GetSettingsOk ¶

GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserRateLimitSettings) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*RestUserRateLimitSettings) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserRateLimitSettings) GetWhitelisted ¶

func (o *RestUserRateLimitSettings) GetWhitelisted() bool

GetWhitelisted returns the Whitelisted field value if set, zero value otherwise.

func (*RestUserRateLimitSettings) GetWhitelistedOk ¶

func (o *RestUserRateLimitSettings) GetWhitelistedOk() (*bool, bool)

GetWhitelistedOk returns a tuple with the Whitelisted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserRateLimitSettings) HasSettings ¶

func (o *RestUserRateLimitSettings) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (*RestUserRateLimitSettings) HasUser ¶

func (o *RestUserRateLimitSettings) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*RestUserRateLimitSettings) HasWhitelisted ¶

func (o *RestUserRateLimitSettings) HasWhitelisted() bool

HasWhitelisted returns a boolean if a field has been set.

func (RestUserRateLimitSettings) MarshalJSON ¶

func (o RestUserRateLimitSettings) MarshalJSON() ([]byte, error)

func (*RestUserRateLimitSettings) SetSettings ¶

SetSettings gets a reference to the given RestBulkUserRateLimitSettingsUpdateRequestSettings and assigns it to the Settings field.

func (*RestUserRateLimitSettings) SetUser ¶

SetUser gets a reference to the given RestPullRequestParticipantUser and assigns it to the User field.

func (*RestUserRateLimitSettings) SetWhitelisted ¶

func (o *RestUserRateLimitSettings) SetWhitelisted(v bool)

SetWhitelisted gets a reference to the given bool and assigns it to the Whitelisted field.

func (RestUserRateLimitSettings) ToMap ¶

func (o RestUserRateLimitSettings) ToMap() (map[string]interface{}, error)

type RestUserRateLimitSettingsUpdateRequest ¶

type RestUserRateLimitSettingsUpdateRequest struct {
	Settings    *RestBulkUserRateLimitSettingsUpdateRequestSettings `json:"settings,omitempty"`
	Whitelisted *bool                                               `json:"whitelisted,omitempty"`
}

RestUserRateLimitSettingsUpdateRequest struct for RestUserRateLimitSettingsUpdateRequest

func NewRestUserRateLimitSettingsUpdateRequest ¶

func NewRestUserRateLimitSettingsUpdateRequest() *RestUserRateLimitSettingsUpdateRequest

NewRestUserRateLimitSettingsUpdateRequest instantiates a new RestUserRateLimitSettingsUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUserRateLimitSettingsUpdateRequestWithDefaults ¶

func NewRestUserRateLimitSettingsUpdateRequestWithDefaults() *RestUserRateLimitSettingsUpdateRequest

NewRestUserRateLimitSettingsUpdateRequestWithDefaults instantiates a new RestUserRateLimitSettingsUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUserRateLimitSettingsUpdateRequest) GetSettings ¶

GetSettings returns the Settings field value if set, zero value otherwise.

func (*RestUserRateLimitSettingsUpdateRequest) GetSettingsOk ¶

GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserRateLimitSettingsUpdateRequest) GetWhitelisted ¶

func (o *RestUserRateLimitSettingsUpdateRequest) GetWhitelisted() bool

GetWhitelisted returns the Whitelisted field value if set, zero value otherwise.

func (*RestUserRateLimitSettingsUpdateRequest) GetWhitelistedOk ¶

func (o *RestUserRateLimitSettingsUpdateRequest) GetWhitelistedOk() (*bool, bool)

GetWhitelistedOk returns a tuple with the Whitelisted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserRateLimitSettingsUpdateRequest) HasSettings ¶

HasSettings returns a boolean if a field has been set.

func (*RestUserRateLimitSettingsUpdateRequest) HasWhitelisted ¶

func (o *RestUserRateLimitSettingsUpdateRequest) HasWhitelisted() bool

HasWhitelisted returns a boolean if a field has been set.

func (RestUserRateLimitSettingsUpdateRequest) MarshalJSON ¶

func (o RestUserRateLimitSettingsUpdateRequest) MarshalJSON() ([]byte, error)

func (*RestUserRateLimitSettingsUpdateRequest) SetSettings ¶

SetSettings gets a reference to the given RestBulkUserRateLimitSettingsUpdateRequestSettings and assigns it to the Settings field.

func (*RestUserRateLimitSettingsUpdateRequest) SetWhitelisted ¶

func (o *RestUserRateLimitSettingsUpdateRequest) SetWhitelisted(v bool)

SetWhitelisted gets a reference to the given bool and assigns it to the Whitelisted field.

func (RestUserRateLimitSettingsUpdateRequest) ToMap ¶

func (o RestUserRateLimitSettingsUpdateRequest) ToMap() (map[string]interface{}, error)

type RestUserReaction ¶

type RestUserReaction struct {
	Comment  *RestUserReactionComment        `json:"comment,omitempty"`
	Emoticon *RestUserReactionEmoticon       `json:"emoticon,omitempty"`
	User     *RestPullRequestParticipantUser `json:"user,omitempty"`
}

RestUserReaction struct for RestUserReaction

func NewRestUserReaction ¶

func NewRestUserReaction() *RestUserReaction

NewRestUserReaction instantiates a new RestUserReaction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUserReactionWithDefaults ¶

func NewRestUserReactionWithDefaults() *RestUserReaction

NewRestUserReactionWithDefaults instantiates a new RestUserReaction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUserReaction) GetComment ¶

func (o *RestUserReaction) GetComment() RestUserReactionComment

GetComment returns the Comment field value if set, zero value otherwise.

func (*RestUserReaction) GetCommentOk ¶

func (o *RestUserReaction) GetCommentOk() (*RestUserReactionComment, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReaction) GetEmoticon ¶

func (o *RestUserReaction) GetEmoticon() RestUserReactionEmoticon

GetEmoticon returns the Emoticon field value if set, zero value otherwise.

func (*RestUserReaction) GetEmoticonOk ¶

func (o *RestUserReaction) GetEmoticonOk() (*RestUserReactionEmoticon, bool)

GetEmoticonOk returns a tuple with the Emoticon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReaction) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*RestUserReaction) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReaction) HasComment ¶

func (o *RestUserReaction) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*RestUserReaction) HasEmoticon ¶

func (o *RestUserReaction) HasEmoticon() bool

HasEmoticon returns a boolean if a field has been set.

func (*RestUserReaction) HasUser ¶

func (o *RestUserReaction) HasUser() bool

HasUser returns a boolean if a field has been set.

func (RestUserReaction) MarshalJSON ¶

func (o RestUserReaction) MarshalJSON() ([]byte, error)

func (*RestUserReaction) SetComment ¶

func (o *RestUserReaction) SetComment(v RestUserReactionComment)

SetComment gets a reference to the given RestUserReactionComment and assigns it to the Comment field.

func (*RestUserReaction) SetEmoticon ¶

func (o *RestUserReaction) SetEmoticon(v RestUserReactionEmoticon)

SetEmoticon gets a reference to the given RestUserReactionEmoticon and assigns it to the Emoticon field.

func (*RestUserReaction) SetUser ¶

SetUser gets a reference to the given RestPullRequestParticipantUser and assigns it to the User field.

func (RestUserReaction) ToMap ¶

func (o RestUserReaction) ToMap() (map[string]interface{}, error)

type RestUserReactionComment ¶

type RestUserReactionComment struct {
	Version            *int32                                       `json:"version,omitempty"`
	Parent             *RestUserReactionCommentParent               `json:"parent,omitempty"`
	Id                 *int64                                       `json:"id,omitempty"`
	State              *string                                      `json:"state,omitempty"`
	Comments           []RestComment                                `json:"comments,omitempty"`
	Severity           *string                                      `json:"severity,omitempty"`
	UpdatedDate        *int64                                       `json:"updatedDate,omitempty"`
	ThreadResolvedDate *int64                                       `json:"threadResolvedDate,omitempty"`
	ThreadResolver     *RestUserReactionCommentParentThreadResolver `json:"threadResolver,omitempty"`
	Anchored           *bool                                        `json:"anchored,omitempty"`
	Pending            *bool                                        `json:"pending,omitempty"`
	// Indicates if this comment thread has been marked as resolved or not
	ThreadResolved *bool                                        `json:"threadResolved,omitempty"`
	Resolver       *RestUserReactionCommentParentThreadResolver `json:"resolver,omitempty"`
	ResolvedDate   *int64                                       `json:"resolvedDate,omitempty"`
	Author         *RestUserReactionCommentParentThreadResolver `json:"author,omitempty"`
	CreatedDate    *int64                                       `json:"createdDate,omitempty"`
	Anchor         *RestUserReactionCommentParentAnchor         `json:"anchor,omitempty"`
	Html           *string                                      `json:"html,omitempty"`
	Reply          *bool                                        `json:"reply,omitempty"`
	Text           *string                                      `json:"text,omitempty"`
	Properties     map[string]interface{}                       `json:"properties,omitempty"`
}

RestUserReactionComment struct for RestUserReactionComment

func NewRestUserReactionComment ¶

func NewRestUserReactionComment() *RestUserReactionComment

NewRestUserReactionComment instantiates a new RestUserReactionComment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUserReactionCommentWithDefaults ¶

func NewRestUserReactionCommentWithDefaults() *RestUserReactionComment

NewRestUserReactionCommentWithDefaults instantiates a new RestUserReactionComment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUserReactionComment) GetAnchor ¶

GetAnchor returns the Anchor field value if set, zero value otherwise.

func (*RestUserReactionComment) GetAnchorOk ¶

GetAnchorOk returns a tuple with the Anchor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetAnchored ¶

func (o *RestUserReactionComment) GetAnchored() bool

GetAnchored returns the Anchored field value if set, zero value otherwise.

func (*RestUserReactionComment) GetAnchoredOk ¶

func (o *RestUserReactionComment) GetAnchoredOk() (*bool, bool)

GetAnchoredOk returns a tuple with the Anchored field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetAuthor ¶

GetAuthor returns the Author field value if set, zero value otherwise.

func (*RestUserReactionComment) GetAuthorOk ¶

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetComments ¶

func (o *RestUserReactionComment) GetComments() []RestComment

GetComments returns the Comments field value if set, zero value otherwise.

func (*RestUserReactionComment) GetCommentsOk ¶

func (o *RestUserReactionComment) GetCommentsOk() ([]RestComment, bool)

GetCommentsOk returns a tuple with the Comments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetCreatedDate ¶

func (o *RestUserReactionComment) GetCreatedDate() int64

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestUserReactionComment) GetCreatedDateOk ¶

func (o *RestUserReactionComment) GetCreatedDateOk() (*int64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetHtml ¶

func (o *RestUserReactionComment) GetHtml() string

GetHtml returns the Html field value if set, zero value otherwise.

func (*RestUserReactionComment) GetHtmlOk ¶

func (o *RestUserReactionComment) GetHtmlOk() (*string, bool)

GetHtmlOk returns a tuple with the Html field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetId ¶

func (o *RestUserReactionComment) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*RestUserReactionComment) GetIdOk ¶

func (o *RestUserReactionComment) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetParent ¶

GetParent returns the Parent field value if set, zero value otherwise.

func (*RestUserReactionComment) GetParentOk ¶

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetPending ¶

func (o *RestUserReactionComment) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*RestUserReactionComment) GetPendingOk ¶

func (o *RestUserReactionComment) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetProperties ¶

func (o *RestUserReactionComment) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*RestUserReactionComment) GetPropertiesOk ¶

func (o *RestUserReactionComment) GetPropertiesOk() (map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetReply ¶

func (o *RestUserReactionComment) GetReply() bool

GetReply returns the Reply field value if set, zero value otherwise.

func (*RestUserReactionComment) GetReplyOk ¶

func (o *RestUserReactionComment) GetReplyOk() (*bool, bool)

GetReplyOk returns a tuple with the Reply field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetResolvedDate ¶

func (o *RestUserReactionComment) GetResolvedDate() int64

GetResolvedDate returns the ResolvedDate field value if set, zero value otherwise.

func (*RestUserReactionComment) GetResolvedDateOk ¶

func (o *RestUserReactionComment) GetResolvedDateOk() (*int64, bool)

GetResolvedDateOk returns a tuple with the ResolvedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetResolver ¶

GetResolver returns the Resolver field value if set, zero value otherwise.

func (*RestUserReactionComment) GetResolverOk ¶

GetResolverOk returns a tuple with the Resolver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetSeverity ¶

func (o *RestUserReactionComment) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*RestUserReactionComment) GetSeverityOk ¶

func (o *RestUserReactionComment) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetState ¶

func (o *RestUserReactionComment) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestUserReactionComment) GetStateOk ¶

func (o *RestUserReactionComment) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetText ¶

func (o *RestUserReactionComment) GetText() string

GetText returns the Text field value if set, zero value otherwise.

func (*RestUserReactionComment) GetTextOk ¶

func (o *RestUserReactionComment) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetThreadResolved ¶

func (o *RestUserReactionComment) GetThreadResolved() bool

GetThreadResolved returns the ThreadResolved field value if set, zero value otherwise.

func (*RestUserReactionComment) GetThreadResolvedDate ¶

func (o *RestUserReactionComment) GetThreadResolvedDate() int64

GetThreadResolvedDate returns the ThreadResolvedDate field value if set, zero value otherwise.

func (*RestUserReactionComment) GetThreadResolvedDateOk ¶

func (o *RestUserReactionComment) GetThreadResolvedDateOk() (*int64, bool)

GetThreadResolvedDateOk returns a tuple with the ThreadResolvedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetThreadResolvedOk ¶

func (o *RestUserReactionComment) GetThreadResolvedOk() (*bool, bool)

GetThreadResolvedOk returns a tuple with the ThreadResolved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetThreadResolver ¶

GetThreadResolver returns the ThreadResolver field value if set, zero value otherwise.

func (*RestUserReactionComment) GetThreadResolverOk ¶

GetThreadResolverOk returns a tuple with the ThreadResolver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetUpdatedDate ¶

func (o *RestUserReactionComment) GetUpdatedDate() int64

GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.

func (*RestUserReactionComment) GetUpdatedDateOk ¶

func (o *RestUserReactionComment) GetUpdatedDateOk() (*int64, bool)

GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) GetVersion ¶

func (o *RestUserReactionComment) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestUserReactionComment) GetVersionOk ¶

func (o *RestUserReactionComment) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionComment) HasAnchor ¶

func (o *RestUserReactionComment) HasAnchor() bool

HasAnchor returns a boolean if a field has been set.

func (*RestUserReactionComment) HasAnchored ¶

func (o *RestUserReactionComment) HasAnchored() bool

HasAnchored returns a boolean if a field has been set.

func (*RestUserReactionComment) HasAuthor ¶

func (o *RestUserReactionComment) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*RestUserReactionComment) HasComments ¶

func (o *RestUserReactionComment) HasComments() bool

HasComments returns a boolean if a field has been set.

func (*RestUserReactionComment) HasCreatedDate ¶

func (o *RestUserReactionComment) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestUserReactionComment) HasHtml ¶

func (o *RestUserReactionComment) HasHtml() bool

HasHtml returns a boolean if a field has been set.

func (*RestUserReactionComment) HasId ¶

func (o *RestUserReactionComment) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestUserReactionComment) HasParent ¶

func (o *RestUserReactionComment) HasParent() bool

HasParent returns a boolean if a field has been set.

func (*RestUserReactionComment) HasPending ¶

func (o *RestUserReactionComment) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*RestUserReactionComment) HasProperties ¶

func (o *RestUserReactionComment) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*RestUserReactionComment) HasReply ¶

func (o *RestUserReactionComment) HasReply() bool

HasReply returns a boolean if a field has been set.

func (*RestUserReactionComment) HasResolvedDate ¶

func (o *RestUserReactionComment) HasResolvedDate() bool

HasResolvedDate returns a boolean if a field has been set.

func (*RestUserReactionComment) HasResolver ¶

func (o *RestUserReactionComment) HasResolver() bool

HasResolver returns a boolean if a field has been set.

func (*RestUserReactionComment) HasSeverity ¶

func (o *RestUserReactionComment) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*RestUserReactionComment) HasState ¶

func (o *RestUserReactionComment) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestUserReactionComment) HasText ¶

func (o *RestUserReactionComment) HasText() bool

HasText returns a boolean if a field has been set.

func (*RestUserReactionComment) HasThreadResolved ¶

func (o *RestUserReactionComment) HasThreadResolved() bool

HasThreadResolved returns a boolean if a field has been set.

func (*RestUserReactionComment) HasThreadResolvedDate ¶

func (o *RestUserReactionComment) HasThreadResolvedDate() bool

HasThreadResolvedDate returns a boolean if a field has been set.

func (*RestUserReactionComment) HasThreadResolver ¶

func (o *RestUserReactionComment) HasThreadResolver() bool

HasThreadResolver returns a boolean if a field has been set.

func (*RestUserReactionComment) HasUpdatedDate ¶

func (o *RestUserReactionComment) HasUpdatedDate() bool

HasUpdatedDate returns a boolean if a field has been set.

func (*RestUserReactionComment) HasVersion ¶

func (o *RestUserReactionComment) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestUserReactionComment) MarshalJSON ¶

func (o RestUserReactionComment) MarshalJSON() ([]byte, error)

func (*RestUserReactionComment) SetAnchor ¶

SetAnchor gets a reference to the given RestUserReactionCommentParentAnchor and assigns it to the Anchor field.

func (*RestUserReactionComment) SetAnchored ¶

func (o *RestUserReactionComment) SetAnchored(v bool)

SetAnchored gets a reference to the given bool and assigns it to the Anchored field.

func (*RestUserReactionComment) SetAuthor ¶

SetAuthor gets a reference to the given RestUserReactionCommentParentThreadResolver and assigns it to the Author field.

func (*RestUserReactionComment) SetComments ¶

func (o *RestUserReactionComment) SetComments(v []RestComment)

SetComments gets a reference to the given []RestComment and assigns it to the Comments field.

func (*RestUserReactionComment) SetCreatedDate ¶

func (o *RestUserReactionComment) SetCreatedDate(v int64)

SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.

func (*RestUserReactionComment) SetHtml ¶

func (o *RestUserReactionComment) SetHtml(v string)

SetHtml gets a reference to the given string and assigns it to the Html field.

func (*RestUserReactionComment) SetId ¶

func (o *RestUserReactionComment) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestUserReactionComment) SetParent ¶

SetParent gets a reference to the given RestUserReactionCommentParent and assigns it to the Parent field.

func (*RestUserReactionComment) SetPending ¶

func (o *RestUserReactionComment) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*RestUserReactionComment) SetProperties ¶

func (o *RestUserReactionComment) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given map[string]interface{} and assigns it to the Properties field.

func (*RestUserReactionComment) SetReply ¶

func (o *RestUserReactionComment) SetReply(v bool)

SetReply gets a reference to the given bool and assigns it to the Reply field.

func (*RestUserReactionComment) SetResolvedDate ¶

func (o *RestUserReactionComment) SetResolvedDate(v int64)

SetResolvedDate gets a reference to the given int64 and assigns it to the ResolvedDate field.

func (*RestUserReactionComment) SetResolver ¶

SetResolver gets a reference to the given RestUserReactionCommentParentThreadResolver and assigns it to the Resolver field.

func (*RestUserReactionComment) SetSeverity ¶

func (o *RestUserReactionComment) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*RestUserReactionComment) SetState ¶

func (o *RestUserReactionComment) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestUserReactionComment) SetText ¶

func (o *RestUserReactionComment) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (*RestUserReactionComment) SetThreadResolved ¶

func (o *RestUserReactionComment) SetThreadResolved(v bool)

SetThreadResolved gets a reference to the given bool and assigns it to the ThreadResolved field.

func (*RestUserReactionComment) SetThreadResolvedDate ¶

func (o *RestUserReactionComment) SetThreadResolvedDate(v int64)

SetThreadResolvedDate gets a reference to the given int64 and assigns it to the ThreadResolvedDate field.

func (*RestUserReactionComment) SetThreadResolver ¶

SetThreadResolver gets a reference to the given RestUserReactionCommentParentThreadResolver and assigns it to the ThreadResolver field.

func (*RestUserReactionComment) SetUpdatedDate ¶

func (o *RestUserReactionComment) SetUpdatedDate(v int64)

SetUpdatedDate gets a reference to the given int64 and assigns it to the UpdatedDate field.

func (*RestUserReactionComment) SetVersion ¶

func (o *RestUserReactionComment) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestUserReactionComment) ToMap ¶

func (o RestUserReactionComment) ToMap() (map[string]interface{}, error)

type RestUserReactionCommentParent ¶

type RestUserReactionCommentParent struct {
	Version            *int32                                       `json:"version,omitempty"`
	Id                 *int64                                       `json:"id,omitempty"`
	State              *string                                      `json:"state,omitempty"`
	Comments           []RestComment                                `json:"comments,omitempty"`
	Severity           *string                                      `json:"severity,omitempty"`
	UpdatedDate        *int64                                       `json:"updatedDate,omitempty"`
	ThreadResolvedDate *int64                                       `json:"threadResolvedDate,omitempty"`
	ThreadResolver     *RestUserReactionCommentParentThreadResolver `json:"threadResolver,omitempty"`
	Anchored           *bool                                        `json:"anchored,omitempty"`
	Pending            *bool                                        `json:"pending,omitempty"`
	// Indicates if this comment thread has been marked as resolved or not
	ThreadResolved *bool                                        `json:"threadResolved,omitempty"`
	Resolver       *RestUserReactionCommentParentThreadResolver `json:"resolver,omitempty"`
	ResolvedDate   *int64                                       `json:"resolvedDate,omitempty"`
	Author         *RestUserReactionCommentParentThreadResolver `json:"author,omitempty"`
	CreatedDate    *int64                                       `json:"createdDate,omitempty"`
	Anchor         *RestUserReactionCommentParentAnchor         `json:"anchor,omitempty"`
	Html           *string                                      `json:"html,omitempty"`
	Reply          *bool                                        `json:"reply,omitempty"`
	Text           *string                                      `json:"text,omitempty"`
	Properties     map[string]interface{}                       `json:"properties,omitempty"`
}

RestUserReactionCommentParent struct for RestUserReactionCommentParent

func NewRestUserReactionCommentParent ¶

func NewRestUserReactionCommentParent() *RestUserReactionCommentParent

NewRestUserReactionCommentParent instantiates a new RestUserReactionCommentParent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUserReactionCommentParentWithDefaults ¶

func NewRestUserReactionCommentParentWithDefaults() *RestUserReactionCommentParent

NewRestUserReactionCommentParentWithDefaults instantiates a new RestUserReactionCommentParent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUserReactionCommentParent) GetAnchor ¶

GetAnchor returns the Anchor field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetAnchorOk ¶

GetAnchorOk returns a tuple with the Anchor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetAnchored ¶

func (o *RestUserReactionCommentParent) GetAnchored() bool

GetAnchored returns the Anchored field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetAnchoredOk ¶

func (o *RestUserReactionCommentParent) GetAnchoredOk() (*bool, bool)

GetAnchoredOk returns a tuple with the Anchored field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetAuthor ¶

GetAuthor returns the Author field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetAuthorOk ¶

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetComments ¶

func (o *RestUserReactionCommentParent) GetComments() []RestComment

GetComments returns the Comments field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetCommentsOk ¶

func (o *RestUserReactionCommentParent) GetCommentsOk() ([]RestComment, bool)

GetCommentsOk returns a tuple with the Comments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetCreatedDate ¶

func (o *RestUserReactionCommentParent) GetCreatedDate() int64

GetCreatedDate returns the CreatedDate field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetCreatedDateOk ¶

func (o *RestUserReactionCommentParent) GetCreatedDateOk() (*int64, bool)

GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetHtml ¶

GetHtml returns the Html field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetHtmlOk ¶

func (o *RestUserReactionCommentParent) GetHtmlOk() (*string, bool)

GetHtmlOk returns a tuple with the Html field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetIdOk ¶

func (o *RestUserReactionCommentParent) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetPending ¶

func (o *RestUserReactionCommentParent) GetPending() bool

GetPending returns the Pending field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetPendingOk ¶

func (o *RestUserReactionCommentParent) GetPendingOk() (*bool, bool)

GetPendingOk returns a tuple with the Pending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetProperties ¶

func (o *RestUserReactionCommentParent) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetPropertiesOk ¶

func (o *RestUserReactionCommentParent) GetPropertiesOk() (map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetReply ¶

func (o *RestUserReactionCommentParent) GetReply() bool

GetReply returns the Reply field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetReplyOk ¶

func (o *RestUserReactionCommentParent) GetReplyOk() (*bool, bool)

GetReplyOk returns a tuple with the Reply field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetResolvedDate ¶

func (o *RestUserReactionCommentParent) GetResolvedDate() int64

GetResolvedDate returns the ResolvedDate field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetResolvedDateOk ¶

func (o *RestUserReactionCommentParent) GetResolvedDateOk() (*int64, bool)

GetResolvedDateOk returns a tuple with the ResolvedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetResolver ¶

GetResolver returns the Resolver field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetResolverOk ¶

GetResolverOk returns a tuple with the Resolver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetSeverity ¶

func (o *RestUserReactionCommentParent) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetSeverityOk ¶

func (o *RestUserReactionCommentParent) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetState ¶

func (o *RestUserReactionCommentParent) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetStateOk ¶

func (o *RestUserReactionCommentParent) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetText ¶

GetText returns the Text field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetTextOk ¶

func (o *RestUserReactionCommentParent) GetTextOk() (*string, bool)

GetTextOk returns a tuple with the Text field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetThreadResolved ¶

func (o *RestUserReactionCommentParent) GetThreadResolved() bool

GetThreadResolved returns the ThreadResolved field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetThreadResolvedDate ¶

func (o *RestUserReactionCommentParent) GetThreadResolvedDate() int64

GetThreadResolvedDate returns the ThreadResolvedDate field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetThreadResolvedDateOk ¶

func (o *RestUserReactionCommentParent) GetThreadResolvedDateOk() (*int64, bool)

GetThreadResolvedDateOk returns a tuple with the ThreadResolvedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetThreadResolvedOk ¶

func (o *RestUserReactionCommentParent) GetThreadResolvedOk() (*bool, bool)

GetThreadResolvedOk returns a tuple with the ThreadResolved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetThreadResolver ¶

GetThreadResolver returns the ThreadResolver field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetThreadResolverOk ¶

GetThreadResolverOk returns a tuple with the ThreadResolver field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetUpdatedDate ¶

func (o *RestUserReactionCommentParent) GetUpdatedDate() int64

GetUpdatedDate returns the UpdatedDate field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetUpdatedDateOk ¶

func (o *RestUserReactionCommentParent) GetUpdatedDateOk() (*int64, bool)

GetUpdatedDateOk returns a tuple with the UpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) GetVersion ¶

func (o *RestUserReactionCommentParent) GetVersion() int32

GetVersion returns the Version field value if set, zero value otherwise.

func (*RestUserReactionCommentParent) GetVersionOk ¶

func (o *RestUserReactionCommentParent) GetVersionOk() (*int32, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParent) HasAnchor ¶

func (o *RestUserReactionCommentParent) HasAnchor() bool

HasAnchor returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasAnchored ¶

func (o *RestUserReactionCommentParent) HasAnchored() bool

HasAnchored returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasAuthor ¶

func (o *RestUserReactionCommentParent) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasComments ¶

func (o *RestUserReactionCommentParent) HasComments() bool

HasComments returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasCreatedDate ¶

func (o *RestUserReactionCommentParent) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasHtml ¶

func (o *RestUserReactionCommentParent) HasHtml() bool

HasHtml returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasId ¶

HasId returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasPending ¶

func (o *RestUserReactionCommentParent) HasPending() bool

HasPending returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasProperties ¶

func (o *RestUserReactionCommentParent) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasReply ¶

func (o *RestUserReactionCommentParent) HasReply() bool

HasReply returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasResolvedDate ¶

func (o *RestUserReactionCommentParent) HasResolvedDate() bool

HasResolvedDate returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasResolver ¶

func (o *RestUserReactionCommentParent) HasResolver() bool

HasResolver returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasSeverity ¶

func (o *RestUserReactionCommentParent) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasState ¶

func (o *RestUserReactionCommentParent) HasState() bool

HasState returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasText ¶

func (o *RestUserReactionCommentParent) HasText() bool

HasText returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasThreadResolved ¶

func (o *RestUserReactionCommentParent) HasThreadResolved() bool

HasThreadResolved returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasThreadResolvedDate ¶

func (o *RestUserReactionCommentParent) HasThreadResolvedDate() bool

HasThreadResolvedDate returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasThreadResolver ¶

func (o *RestUserReactionCommentParent) HasThreadResolver() bool

HasThreadResolver returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasUpdatedDate ¶

func (o *RestUserReactionCommentParent) HasUpdatedDate() bool

HasUpdatedDate returns a boolean if a field has been set.

func (*RestUserReactionCommentParent) HasVersion ¶

func (o *RestUserReactionCommentParent) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RestUserReactionCommentParent) MarshalJSON ¶

func (o RestUserReactionCommentParent) MarshalJSON() ([]byte, error)

func (*RestUserReactionCommentParent) SetAnchor ¶

SetAnchor gets a reference to the given RestUserReactionCommentParentAnchor and assigns it to the Anchor field.

func (*RestUserReactionCommentParent) SetAnchored ¶

func (o *RestUserReactionCommentParent) SetAnchored(v bool)

SetAnchored gets a reference to the given bool and assigns it to the Anchored field.

func (*RestUserReactionCommentParent) SetAuthor ¶

SetAuthor gets a reference to the given RestUserReactionCommentParentThreadResolver and assigns it to the Author field.

func (*RestUserReactionCommentParent) SetComments ¶

func (o *RestUserReactionCommentParent) SetComments(v []RestComment)

SetComments gets a reference to the given []RestComment and assigns it to the Comments field.

func (*RestUserReactionCommentParent) SetCreatedDate ¶

func (o *RestUserReactionCommentParent) SetCreatedDate(v int64)

SetCreatedDate gets a reference to the given int64 and assigns it to the CreatedDate field.

func (*RestUserReactionCommentParent) SetHtml ¶

func (o *RestUserReactionCommentParent) SetHtml(v string)

SetHtml gets a reference to the given string and assigns it to the Html field.

func (*RestUserReactionCommentParent) SetId ¶

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*RestUserReactionCommentParent) SetPending ¶

func (o *RestUserReactionCommentParent) SetPending(v bool)

SetPending gets a reference to the given bool and assigns it to the Pending field.

func (*RestUserReactionCommentParent) SetProperties ¶

func (o *RestUserReactionCommentParent) SetProperties(v map[string]interface{})

SetProperties gets a reference to the given map[string]interface{} and assigns it to the Properties field.

func (*RestUserReactionCommentParent) SetReply ¶

func (o *RestUserReactionCommentParent) SetReply(v bool)

SetReply gets a reference to the given bool and assigns it to the Reply field.

func (*RestUserReactionCommentParent) SetResolvedDate ¶

func (o *RestUserReactionCommentParent) SetResolvedDate(v int64)

SetResolvedDate gets a reference to the given int64 and assigns it to the ResolvedDate field.

func (*RestUserReactionCommentParent) SetResolver ¶

SetResolver gets a reference to the given RestUserReactionCommentParentThreadResolver and assigns it to the Resolver field.

func (*RestUserReactionCommentParent) SetSeverity ¶

func (o *RestUserReactionCommentParent) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*RestUserReactionCommentParent) SetState ¶

func (o *RestUserReactionCommentParent) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*RestUserReactionCommentParent) SetText ¶

func (o *RestUserReactionCommentParent) SetText(v string)

SetText gets a reference to the given string and assigns it to the Text field.

func (*RestUserReactionCommentParent) SetThreadResolved ¶

func (o *RestUserReactionCommentParent) SetThreadResolved(v bool)

SetThreadResolved gets a reference to the given bool and assigns it to the ThreadResolved field.

func (*RestUserReactionCommentParent) SetThreadResolvedDate ¶

func (o *RestUserReactionCommentParent) SetThreadResolvedDate(v int64)

SetThreadResolvedDate gets a reference to the given int64 and assigns it to the ThreadResolvedDate field.

func (*RestUserReactionCommentParent) SetThreadResolver ¶

SetThreadResolver gets a reference to the given RestUserReactionCommentParentThreadResolver and assigns it to the ThreadResolver field.

func (*RestUserReactionCommentParent) SetUpdatedDate ¶

func (o *RestUserReactionCommentParent) SetUpdatedDate(v int64)

SetUpdatedDate gets a reference to the given int64 and assigns it to the UpdatedDate field.

func (*RestUserReactionCommentParent) SetVersion ¶

func (o *RestUserReactionCommentParent) SetVersion(v int32)

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (RestUserReactionCommentParent) ToMap ¶

func (o RestUserReactionCommentParent) ToMap() (map[string]interface{}, error)

type RestUserReactionCommentParentAnchor ¶

type RestUserReactionCommentParentAnchor struct {
	Path        *RestCommentThreadDiffAnchorPath        `json:"path,omitempty"`
	LineType    *string                                 `json:"lineType,omitempty"`
	FromHash    *string                                 `json:"fromHash,omitempty"`
	FileType    *string                                 `json:"fileType,omitempty"`
	DiffType    *string                                 `json:"diffType,omitempty"`
	PullRequest *RestCommentThreadDiffAnchorPullRequest `json:"pullRequest,omitempty"`
	SrcPath     *RestCommentThreadDiffAnchorPath        `json:"srcPath,omitempty"`
	ToHash      *string                                 `json:"toHash,omitempty"`
	LineComment *bool                                   `json:"lineComment,omitempty"`
	Line        *int32                                  `json:"line,omitempty"`
}

RestUserReactionCommentParentAnchor struct for RestUserReactionCommentParentAnchor

func NewRestUserReactionCommentParentAnchor ¶

func NewRestUserReactionCommentParentAnchor() *RestUserReactionCommentParentAnchor

NewRestUserReactionCommentParentAnchor instantiates a new RestUserReactionCommentParentAnchor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUserReactionCommentParentAnchorWithDefaults ¶

func NewRestUserReactionCommentParentAnchorWithDefaults() *RestUserReactionCommentParentAnchor

NewRestUserReactionCommentParentAnchorWithDefaults instantiates a new RestUserReactionCommentParentAnchor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUserReactionCommentParentAnchor) GetDiffType ¶

GetDiffType returns the DiffType field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetDiffTypeOk ¶

func (o *RestUserReactionCommentParentAnchor) GetDiffTypeOk() (*string, bool)

GetDiffTypeOk returns a tuple with the DiffType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) GetFileType ¶

GetFileType returns the FileType field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetFileTypeOk ¶

func (o *RestUserReactionCommentParentAnchor) GetFileTypeOk() (*string, bool)

GetFileTypeOk returns a tuple with the FileType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) GetFromHash ¶

GetFromHash returns the FromHash field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetFromHashOk ¶

func (o *RestUserReactionCommentParentAnchor) GetFromHashOk() (*string, bool)

GetFromHashOk returns a tuple with the FromHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) GetLine ¶

GetLine returns the Line field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetLineComment ¶

func (o *RestUserReactionCommentParentAnchor) GetLineComment() bool

GetLineComment returns the LineComment field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetLineCommentOk ¶

func (o *RestUserReactionCommentParentAnchor) GetLineCommentOk() (*bool, bool)

GetLineCommentOk returns a tuple with the LineComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) GetLineOk ¶

func (o *RestUserReactionCommentParentAnchor) GetLineOk() (*int32, bool)

GetLineOk returns a tuple with the Line field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) GetLineType ¶

GetLineType returns the LineType field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetLineTypeOk ¶

func (o *RestUserReactionCommentParentAnchor) GetLineTypeOk() (*string, bool)

GetLineTypeOk returns a tuple with the LineType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) GetPath ¶

GetPath returns the Path field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetPathOk ¶

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) GetPullRequest ¶

GetPullRequest returns the PullRequest field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetPullRequestOk ¶

GetPullRequestOk returns a tuple with the PullRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) GetSrcPath ¶

GetSrcPath returns the SrcPath field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetSrcPathOk ¶

GetSrcPathOk returns a tuple with the SrcPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) GetToHash ¶

GetToHash returns the ToHash field value if set, zero value otherwise.

func (*RestUserReactionCommentParentAnchor) GetToHashOk ¶

func (o *RestUserReactionCommentParentAnchor) GetToHashOk() (*string, bool)

GetToHashOk returns a tuple with the ToHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentAnchor) HasDiffType ¶

func (o *RestUserReactionCommentParentAnchor) HasDiffType() bool

HasDiffType returns a boolean if a field has been set.

func (*RestUserReactionCommentParentAnchor) HasFileType ¶

func (o *RestUserReactionCommentParentAnchor) HasFileType() bool

HasFileType returns a boolean if a field has been set.

func (*RestUserReactionCommentParentAnchor) HasFromHash ¶

func (o *RestUserReactionCommentParentAnchor) HasFromHash() bool

HasFromHash returns a boolean if a field has been set.

func (*RestUserReactionCommentParentAnchor) HasLine ¶

HasLine returns a boolean if a field has been set.

func (*RestUserReactionCommentParentAnchor) HasLineComment ¶

func (o *RestUserReactionCommentParentAnchor) HasLineComment() bool

HasLineComment returns a boolean if a field has been set.

func (*RestUserReactionCommentParentAnchor) HasLineType ¶

func (o *RestUserReactionCommentParentAnchor) HasLineType() bool

HasLineType returns a boolean if a field has been set.

func (*RestUserReactionCommentParentAnchor) HasPath ¶

HasPath returns a boolean if a field has been set.

func (*RestUserReactionCommentParentAnchor) HasPullRequest ¶

func (o *RestUserReactionCommentParentAnchor) HasPullRequest() bool

HasPullRequest returns a boolean if a field has been set.

func (*RestUserReactionCommentParentAnchor) HasSrcPath ¶

func (o *RestUserReactionCommentParentAnchor) HasSrcPath() bool

HasSrcPath returns a boolean if a field has been set.

func (*RestUserReactionCommentParentAnchor) HasToHash ¶

HasToHash returns a boolean if a field has been set.

func (RestUserReactionCommentParentAnchor) MarshalJSON ¶

func (o RestUserReactionCommentParentAnchor) MarshalJSON() ([]byte, error)

func (*RestUserReactionCommentParentAnchor) SetDiffType ¶

func (o *RestUserReactionCommentParentAnchor) SetDiffType(v string)

SetDiffType gets a reference to the given string and assigns it to the DiffType field.

func (*RestUserReactionCommentParentAnchor) SetFileType ¶

func (o *RestUserReactionCommentParentAnchor) SetFileType(v string)

SetFileType gets a reference to the given string and assigns it to the FileType field.

func (*RestUserReactionCommentParentAnchor) SetFromHash ¶

func (o *RestUserReactionCommentParentAnchor) SetFromHash(v string)

SetFromHash gets a reference to the given string and assigns it to the FromHash field.

func (*RestUserReactionCommentParentAnchor) SetLine ¶

SetLine gets a reference to the given int32 and assigns it to the Line field.

func (*RestUserReactionCommentParentAnchor) SetLineComment ¶

func (o *RestUserReactionCommentParentAnchor) SetLineComment(v bool)

SetLineComment gets a reference to the given bool and assigns it to the LineComment field.

func (*RestUserReactionCommentParentAnchor) SetLineType ¶

func (o *RestUserReactionCommentParentAnchor) SetLineType(v string)

SetLineType gets a reference to the given string and assigns it to the LineType field.

func (*RestUserReactionCommentParentAnchor) SetPath ¶

SetPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the Path field.

func (*RestUserReactionCommentParentAnchor) SetPullRequest ¶

SetPullRequest gets a reference to the given RestCommentThreadDiffAnchorPullRequest and assigns it to the PullRequest field.

func (*RestUserReactionCommentParentAnchor) SetSrcPath ¶

SetSrcPath gets a reference to the given RestCommentThreadDiffAnchorPath and assigns it to the SrcPath field.

func (*RestUserReactionCommentParentAnchor) SetToHash ¶

SetToHash gets a reference to the given string and assigns it to the ToHash field.

func (RestUserReactionCommentParentAnchor) ToMap ¶

func (o RestUserReactionCommentParentAnchor) ToMap() (map[string]interface{}, error)

type RestUserReactionCommentParentThreadResolver ¶

type RestUserReactionCommentParentThreadResolver struct {
	Name         *string                `json:"name,omitempty"`
	Id           *int32                 `json:"id,omitempty"`
	Type         *string                `json:"type,omitempty"`
	DisplayName  *string                `json:"displayName,omitempty"`
	EmailAddress *string                `json:"emailAddress,omitempty"`
	Slug         *string                `json:"slug,omitempty"`
	Links        map[string]interface{} `json:"links,omitempty"`
	Active       *bool                  `json:"active,omitempty"`
	AvatarUrl    *string                `json:"avatarUrl,omitempty"`
}

RestUserReactionCommentParentThreadResolver struct for RestUserReactionCommentParentThreadResolver

func NewRestUserReactionCommentParentThreadResolver ¶

func NewRestUserReactionCommentParentThreadResolver() *RestUserReactionCommentParentThreadResolver

NewRestUserReactionCommentParentThreadResolver instantiates a new RestUserReactionCommentParentThreadResolver object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUserReactionCommentParentThreadResolverWithDefaults ¶

func NewRestUserReactionCommentParentThreadResolverWithDefaults() *RestUserReactionCommentParentThreadResolver

NewRestUserReactionCommentParentThreadResolverWithDefaults instantiates a new RestUserReactionCommentParentThreadResolver object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUserReactionCommentParentThreadResolver) GetActive ¶

GetActive returns the Active field value if set, zero value otherwise.

func (*RestUserReactionCommentParentThreadResolver) GetActiveOk ¶

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentThreadResolver) GetAvatarUrl ¶

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*RestUserReactionCommentParentThreadResolver) GetAvatarUrlOk ¶

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentThreadResolver) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*RestUserReactionCommentParentThreadResolver) GetDisplayNameOk ¶

func (o *RestUserReactionCommentParentThreadResolver) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentThreadResolver) GetEmailAddress ¶

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*RestUserReactionCommentParentThreadResolver) GetEmailAddressOk ¶

func (o *RestUserReactionCommentParentThreadResolver) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentThreadResolver) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RestUserReactionCommentParentThreadResolver) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *RestUserReactionCommentParentThreadResolver) GetLinks() map[string]interface{}

GetLinks returns the Links field value if set, zero value otherwise.

func (*RestUserReactionCommentParentThreadResolver) GetLinksOk ¶

func (o *RestUserReactionCommentParentThreadResolver) GetLinksOk() (map[string]interface{}, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentThreadResolver) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*RestUserReactionCommentParentThreadResolver) GetNameOk ¶

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentThreadResolver) GetSlug ¶

GetSlug returns the Slug field value if set, zero value otherwise.

func (*RestUserReactionCommentParentThreadResolver) GetSlugOk ¶

GetSlugOk returns a tuple with the Slug field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentThreadResolver) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RestUserReactionCommentParentThreadResolver) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionCommentParentThreadResolver) HasActive ¶

HasActive returns a boolean if a field has been set.

func (*RestUserReactionCommentParentThreadResolver) HasAvatarUrl ¶

HasAvatarUrl returns a boolean if a field has been set.

func (*RestUserReactionCommentParentThreadResolver) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*RestUserReactionCommentParentThreadResolver) HasEmailAddress ¶

HasEmailAddress returns a boolean if a field has been set.

func (*RestUserReactionCommentParentThreadResolver) HasId ¶

HasId returns a boolean if a field has been set.

HasLinks returns a boolean if a field has been set.

func (*RestUserReactionCommentParentThreadResolver) HasName ¶

HasName returns a boolean if a field has been set.

func (*RestUserReactionCommentParentThreadResolver) HasSlug ¶

HasSlug returns a boolean if a field has been set.

func (*RestUserReactionCommentParentThreadResolver) HasType ¶

HasType returns a boolean if a field has been set.

func (RestUserReactionCommentParentThreadResolver) MarshalJSON ¶

func (*RestUserReactionCommentParentThreadResolver) SetActive ¶

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*RestUserReactionCommentParentThreadResolver) SetAvatarUrl ¶

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*RestUserReactionCommentParentThreadResolver) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*RestUserReactionCommentParentThreadResolver) SetEmailAddress ¶

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*RestUserReactionCommentParentThreadResolver) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (o *RestUserReactionCommentParentThreadResolver) SetLinks(v map[string]interface{})

SetLinks gets a reference to the given map[string]interface{} and assigns it to the Links field.

func (*RestUserReactionCommentParentThreadResolver) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestUserReactionCommentParentThreadResolver) SetSlug ¶

SetSlug gets a reference to the given string and assigns it to the Slug field.

func (*RestUserReactionCommentParentThreadResolver) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (RestUserReactionCommentParentThreadResolver) ToMap ¶

func (o RestUserReactionCommentParentThreadResolver) ToMap() (map[string]interface{}, error)

type RestUserReactionEmoticon ¶

type RestUserReactionEmoticon struct {
	Value    *string `json:"value,omitempty"`
	Shortcut *string `json:"shortcut,omitempty"`
	Url      *string `json:"url,omitempty"`
}

RestUserReactionEmoticon struct for RestUserReactionEmoticon

func NewRestUserReactionEmoticon ¶

func NewRestUserReactionEmoticon() *RestUserReactionEmoticon

NewRestUserReactionEmoticon instantiates a new RestUserReactionEmoticon object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUserReactionEmoticonWithDefaults ¶

func NewRestUserReactionEmoticonWithDefaults() *RestUserReactionEmoticon

NewRestUserReactionEmoticonWithDefaults instantiates a new RestUserReactionEmoticon object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUserReactionEmoticon) GetShortcut ¶

func (o *RestUserReactionEmoticon) GetShortcut() string

GetShortcut returns the Shortcut field value if set, zero value otherwise.

func (*RestUserReactionEmoticon) GetShortcutOk ¶

func (o *RestUserReactionEmoticon) GetShortcutOk() (*string, bool)

GetShortcutOk returns a tuple with the Shortcut field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionEmoticon) GetUrl ¶

func (o *RestUserReactionEmoticon) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*RestUserReactionEmoticon) GetUrlOk ¶

func (o *RestUserReactionEmoticon) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionEmoticon) GetValue ¶

func (o *RestUserReactionEmoticon) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*RestUserReactionEmoticon) GetValueOk ¶

func (o *RestUserReactionEmoticon) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestUserReactionEmoticon) HasShortcut ¶

func (o *RestUserReactionEmoticon) HasShortcut() bool

HasShortcut returns a boolean if a field has been set.

func (*RestUserReactionEmoticon) HasUrl ¶

func (o *RestUserReactionEmoticon) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*RestUserReactionEmoticon) HasValue ¶

func (o *RestUserReactionEmoticon) HasValue() bool

HasValue returns a boolean if a field has been set.

func (RestUserReactionEmoticon) MarshalJSON ¶

func (o RestUserReactionEmoticon) MarshalJSON() ([]byte, error)

func (*RestUserReactionEmoticon) SetShortcut ¶

func (o *RestUserReactionEmoticon) SetShortcut(v string)

SetShortcut gets a reference to the given string and assigns it to the Shortcut field.

func (*RestUserReactionEmoticon) SetUrl ¶

func (o *RestUserReactionEmoticon) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*RestUserReactionEmoticon) SetValue ¶

func (o *RestUserReactionEmoticon) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (RestUserReactionEmoticon) ToMap ¶

func (o RestUserReactionEmoticon) ToMap() (map[string]interface{}, error)

type RestUsernamePasswordCredentials ¶

type RestUsernamePasswordCredentials struct {
	Password string `json:"password"`
	Username string `json:"username"`
}

RestUsernamePasswordCredentials struct for RestUsernamePasswordCredentials

func NewRestUsernamePasswordCredentials ¶

func NewRestUsernamePasswordCredentials(password string, username string) *RestUsernamePasswordCredentials

NewRestUsernamePasswordCredentials instantiates a new RestUsernamePasswordCredentials object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestUsernamePasswordCredentialsWithDefaults ¶

func NewRestUsernamePasswordCredentialsWithDefaults() *RestUsernamePasswordCredentials

NewRestUsernamePasswordCredentialsWithDefaults instantiates a new RestUsernamePasswordCredentials object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestUsernamePasswordCredentials) GetPassword ¶

func (o *RestUsernamePasswordCredentials) GetPassword() string

GetPassword returns the Password field value

func (*RestUsernamePasswordCredentials) GetPasswordOk ¶

func (o *RestUsernamePasswordCredentials) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*RestUsernamePasswordCredentials) GetUsername ¶

func (o *RestUsernamePasswordCredentials) GetUsername() string

GetUsername returns the Username field value

func (*RestUsernamePasswordCredentials) GetUsernameOk ¶

func (o *RestUsernamePasswordCredentials) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (RestUsernamePasswordCredentials) MarshalJSON ¶

func (o RestUsernamePasswordCredentials) MarshalJSON() ([]byte, error)

func (*RestUsernamePasswordCredentials) SetPassword ¶

func (o *RestUsernamePasswordCredentials) SetPassword(v string)

SetPassword sets field value

func (*RestUsernamePasswordCredentials) SetUsername ¶

func (o *RestUsernamePasswordCredentials) SetUsername(v string)

SetUsername sets field value

func (RestUsernamePasswordCredentials) ToMap ¶

func (o RestUsernamePasswordCredentials) ToMap() (map[string]interface{}, error)

type RestWebhook ¶

type RestWebhook struct {
	Name                    *string                 `json:"name,omitempty"`
	SslVerificationRequired *bool                   `json:"sslVerificationRequired,omitempty"`
	Events                  []string                `json:"events,omitempty"`
	Active                  *bool                   `json:"active,omitempty"`
	Statistics              map[string]interface{}  `json:"statistics,omitempty"`
	ScopeType               *string                 `json:"scopeType,omitempty"`
	Credentials             *RestWebhookCredentials `json:"credentials,omitempty"`
	Configuration           map[string]interface{}  `json:"configuration,omitempty"`
	Url                     *string                 `json:"url,omitempty"`
}

RestWebhook struct for RestWebhook

func NewRestWebhook ¶

func NewRestWebhook() *RestWebhook

NewRestWebhook instantiates a new RestWebhook object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestWebhookWithDefaults ¶

func NewRestWebhookWithDefaults() *RestWebhook

NewRestWebhookWithDefaults instantiates a new RestWebhook object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestWebhook) GetActive ¶

func (o *RestWebhook) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise.

func (*RestWebhook) GetActiveOk ¶

func (o *RestWebhook) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhook) GetConfiguration ¶

func (o *RestWebhook) GetConfiguration() map[string]interface{}

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*RestWebhook) GetConfigurationOk ¶

func (o *RestWebhook) GetConfigurationOk() (map[string]interface{}, bool)

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhook) GetCredentials ¶

func (o *RestWebhook) GetCredentials() RestWebhookCredentials

GetCredentials returns the Credentials field value if set, zero value otherwise.

func (*RestWebhook) GetCredentialsOk ¶

func (o *RestWebhook) GetCredentialsOk() (*RestWebhookCredentials, bool)

GetCredentialsOk returns a tuple with the Credentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhook) GetEvents ¶

func (o *RestWebhook) GetEvents() []string

GetEvents returns the Events field value if set, zero value otherwise.

func (*RestWebhook) GetEventsOk ¶

func (o *RestWebhook) GetEventsOk() ([]string, bool)

GetEventsOk returns a tuple with the Events field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhook) GetName ¶

func (o *RestWebhook) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RestWebhook) GetNameOk ¶

func (o *RestWebhook) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhook) GetScopeType ¶

func (o *RestWebhook) GetScopeType() string

GetScopeType returns the ScopeType field value if set, zero value otherwise.

func (*RestWebhook) GetScopeTypeOk ¶

func (o *RestWebhook) GetScopeTypeOk() (*string, bool)

GetScopeTypeOk returns a tuple with the ScopeType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhook) GetSslVerificationRequired ¶

func (o *RestWebhook) GetSslVerificationRequired() bool

GetSslVerificationRequired returns the SslVerificationRequired field value if set, zero value otherwise.

func (*RestWebhook) GetSslVerificationRequiredOk ¶

func (o *RestWebhook) GetSslVerificationRequiredOk() (*bool, bool)

GetSslVerificationRequiredOk returns a tuple with the SslVerificationRequired field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhook) GetStatistics ¶

func (o *RestWebhook) GetStatistics() map[string]interface{}

GetStatistics returns the Statistics field value if set, zero value otherwise.

func (*RestWebhook) GetStatisticsOk ¶

func (o *RestWebhook) GetStatisticsOk() (map[string]interface{}, bool)

GetStatisticsOk returns a tuple with the Statistics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhook) GetUrl ¶

func (o *RestWebhook) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*RestWebhook) GetUrlOk ¶

func (o *RestWebhook) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhook) HasActive ¶

func (o *RestWebhook) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*RestWebhook) HasConfiguration ¶

func (o *RestWebhook) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*RestWebhook) HasCredentials ¶

func (o *RestWebhook) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*RestWebhook) HasEvents ¶

func (o *RestWebhook) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*RestWebhook) HasName ¶

func (o *RestWebhook) HasName() bool

HasName returns a boolean if a field has been set.

func (*RestWebhook) HasScopeType ¶

func (o *RestWebhook) HasScopeType() bool

HasScopeType returns a boolean if a field has been set.

func (*RestWebhook) HasSslVerificationRequired ¶

func (o *RestWebhook) HasSslVerificationRequired() bool

HasSslVerificationRequired returns a boolean if a field has been set.

func (*RestWebhook) HasStatistics ¶

func (o *RestWebhook) HasStatistics() bool

HasStatistics returns a boolean if a field has been set.

func (*RestWebhook) HasUrl ¶

func (o *RestWebhook) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (RestWebhook) MarshalJSON ¶

func (o RestWebhook) MarshalJSON() ([]byte, error)

func (*RestWebhook) SetActive ¶

func (o *RestWebhook) SetActive(v bool)

SetActive gets a reference to the given bool and assigns it to the Active field.

func (*RestWebhook) SetConfiguration ¶

func (o *RestWebhook) SetConfiguration(v map[string]interface{})

SetConfiguration gets a reference to the given map[string]interface{} and assigns it to the Configuration field.

func (*RestWebhook) SetCredentials ¶

func (o *RestWebhook) SetCredentials(v RestWebhookCredentials)

SetCredentials gets a reference to the given RestWebhookCredentials and assigns it to the Credentials field.

func (*RestWebhook) SetEvents ¶

func (o *RestWebhook) SetEvents(v []string)

SetEvents gets a reference to the given []string and assigns it to the Events field.

func (*RestWebhook) SetName ¶

func (o *RestWebhook) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RestWebhook) SetScopeType ¶

func (o *RestWebhook) SetScopeType(v string)

SetScopeType gets a reference to the given string and assigns it to the ScopeType field.

func (*RestWebhook) SetSslVerificationRequired ¶

func (o *RestWebhook) SetSslVerificationRequired(v bool)

SetSslVerificationRequired gets a reference to the given bool and assigns it to the SslVerificationRequired field.

func (*RestWebhook) SetStatistics ¶

func (o *RestWebhook) SetStatistics(v map[string]interface{})

SetStatistics gets a reference to the given map[string]interface{} and assigns it to the Statistics field.

func (*RestWebhook) SetUrl ¶

func (o *RestWebhook) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (RestWebhook) ToMap ¶

func (o RestWebhook) ToMap() (map[string]interface{}, error)

type RestWebhookCredentials ¶

type RestWebhookCredentials struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

RestWebhookCredentials struct for RestWebhookCredentials

func NewRestWebhookCredentials ¶

func NewRestWebhookCredentials() *RestWebhookCredentials

NewRestWebhookCredentials instantiates a new RestWebhookCredentials object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestWebhookCredentialsWithDefaults ¶

func NewRestWebhookCredentialsWithDefaults() *RestWebhookCredentials

NewRestWebhookCredentialsWithDefaults instantiates a new RestWebhookCredentials object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestWebhookCredentials) GetPassword ¶

func (o *RestWebhookCredentials) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*RestWebhookCredentials) GetPasswordOk ¶

func (o *RestWebhookCredentials) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhookCredentials) GetUsername ¶

func (o *RestWebhookCredentials) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*RestWebhookCredentials) GetUsernameOk ¶

func (o *RestWebhookCredentials) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhookCredentials) HasPassword ¶

func (o *RestWebhookCredentials) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*RestWebhookCredentials) HasUsername ¶

func (o *RestWebhookCredentials) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (RestWebhookCredentials) MarshalJSON ¶

func (o RestWebhookCredentials) MarshalJSON() ([]byte, error)

func (*RestWebhookCredentials) SetPassword ¶

func (o *RestWebhookCredentials) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*RestWebhookCredentials) SetUsername ¶

func (o *RestWebhookCredentials) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (RestWebhookCredentials) ToMap ¶

func (o RestWebhookCredentials) ToMap() (map[string]interface{}, error)

type RestWebhookScope ¶

type RestWebhookScope struct {
	Id   *string `json:"id,omitempty"`
	Type *string `json:"type,omitempty"`
}

RestWebhookScope struct for RestWebhookScope

func NewRestWebhookScope ¶

func NewRestWebhookScope() *RestWebhookScope

NewRestWebhookScope instantiates a new RestWebhookScope object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRestWebhookScopeWithDefaults ¶

func NewRestWebhookScopeWithDefaults() *RestWebhookScope

NewRestWebhookScopeWithDefaults instantiates a new RestWebhookScope object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RestWebhookScope) GetId ¶

func (o *RestWebhookScope) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RestWebhookScope) GetIdOk ¶

func (o *RestWebhookScope) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhookScope) GetType ¶

func (o *RestWebhookScope) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RestWebhookScope) GetTypeOk ¶

func (o *RestWebhookScope) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RestWebhookScope) HasId ¶

func (o *RestWebhookScope) HasId() bool

HasId returns a boolean if a field has been set.

func (*RestWebhookScope) HasType ¶

func (o *RestWebhookScope) HasType() bool

HasType returns a boolean if a field has been set.

func (RestWebhookScope) MarshalJSON ¶

func (o RestWebhookScope) MarshalJSON() ([]byte, error)

func (*RestWebhookScope) SetId ¶

func (o *RestWebhookScope) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RestWebhookScope) SetType ¶

func (o *RestWebhookScope) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RestWebhookScope) ToMap ¶

func (o RestWebhookScope) ToMap() (map[string]interface{}, error)

type RevokeManyRequest ¶

type RevokeManyRequest struct {
	Projects     *RestProject    `json:"projects,omitempty"`
	Repositories *RestRepository `json:"repositories,omitempty"`
}

RevokeManyRequest struct for RevokeManyRequest

func NewRevokeManyRequest ¶

func NewRevokeManyRequest() *RevokeManyRequest

NewRevokeManyRequest instantiates a new RevokeManyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRevokeManyRequestWithDefaults ¶

func NewRevokeManyRequestWithDefaults() *RevokeManyRequest

NewRevokeManyRequestWithDefaults instantiates a new RevokeManyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RevokeManyRequest) GetProjects ¶

func (o *RevokeManyRequest) GetProjects() RestProject

GetProjects returns the Projects field value if set, zero value otherwise.

func (*RevokeManyRequest) GetProjectsOk ¶

func (o *RevokeManyRequest) GetProjectsOk() (*RestProject, bool)

GetProjectsOk returns a tuple with the Projects field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RevokeManyRequest) GetRepositories ¶

func (o *RevokeManyRequest) GetRepositories() RestRepository

GetRepositories returns the Repositories field value if set, zero value otherwise.

func (*RevokeManyRequest) GetRepositoriesOk ¶

func (o *RevokeManyRequest) GetRepositoriesOk() (*RestRepository, bool)

GetRepositoriesOk returns a tuple with the Repositories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RevokeManyRequest) HasProjects ¶

func (o *RevokeManyRequest) HasProjects() bool

HasProjects returns a boolean if a field has been set.

func (*RevokeManyRequest) HasRepositories ¶

func (o *RevokeManyRequest) HasRepositories() bool

HasRepositories returns a boolean if a field has been set.

func (RevokeManyRequest) MarshalJSON ¶

func (o RevokeManyRequest) MarshalJSON() ([]byte, error)

func (*RevokeManyRequest) SetProjects ¶

func (o *RevokeManyRequest) SetProjects(v RestProject)

SetProjects gets a reference to the given RestProject and assigns it to the Projects field.

func (*RevokeManyRequest) SetRepositories ¶

func (o *RevokeManyRequest) SetRepositories(v RestRepository)

SetRepositories gets a reference to the given RestRepository and assigns it to the Repositories field.

func (RevokeManyRequest) ToMap ¶

func (o RevokeManyRequest) ToMap() (map[string]interface{}, error)

type Search2200Response ¶

type Search2200Response struct {
	Values        []RestSecretScanningAllowlistRule `json:"values,omitempty"`
	Size          *float32                          `json:"size,omitempty"`
	Limit         *float32                          `json:"limit,omitempty"`
	IsLastPage    *bool                             `json:"isLastPage,omitempty"`
	NextPageStart *int32                            `json:"nextPageStart,omitempty"`
	Start         *int32                            `json:"start,omitempty"`
}

Search2200Response struct for Search2200Response

func NewSearch2200Response ¶

func NewSearch2200Response() *Search2200Response

NewSearch2200Response instantiates a new Search2200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearch2200ResponseWithDefaults ¶

func NewSearch2200ResponseWithDefaults() *Search2200Response

NewSearch2200ResponseWithDefaults instantiates a new Search2200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Search2200Response) GetIsLastPage ¶

func (o *Search2200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*Search2200Response) GetIsLastPageOk ¶

func (o *Search2200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search2200Response) GetLimit ¶

func (o *Search2200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*Search2200Response) GetLimitOk ¶

func (o *Search2200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search2200Response) GetNextPageStart ¶

func (o *Search2200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*Search2200Response) GetNextPageStartOk ¶

func (o *Search2200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search2200Response) GetSize ¶

func (o *Search2200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*Search2200Response) GetSizeOk ¶

func (o *Search2200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search2200Response) GetStart ¶

func (o *Search2200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*Search2200Response) GetStartOk ¶

func (o *Search2200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search2200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*Search2200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search2200Response) HasIsLastPage ¶

func (o *Search2200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*Search2200Response) HasLimit ¶

func (o *Search2200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*Search2200Response) HasNextPageStart ¶

func (o *Search2200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*Search2200Response) HasSize ¶

func (o *Search2200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*Search2200Response) HasStart ¶

func (o *Search2200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*Search2200Response) HasValues ¶

func (o *Search2200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (Search2200Response) MarshalJSON ¶

func (o Search2200Response) MarshalJSON() ([]byte, error)

func (*Search2200Response) SetIsLastPage ¶

func (o *Search2200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*Search2200Response) SetLimit ¶

func (o *Search2200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*Search2200Response) SetNextPageStart ¶

func (o *Search2200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*Search2200Response) SetSize ¶

func (o *Search2200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*Search2200Response) SetStart ¶

func (o *Search2200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*Search2200Response) SetValues ¶

SetValues gets a reference to the given []RestSecretScanningAllowlistRule and assigns it to the Values field.

func (Search2200Response) ToMap ¶

func (o Search2200Response) ToMap() (map[string]interface{}, error)

type Search3200Response ¶

type Search3200Response struct {
	Values        []RestSecretScanningRule `json:"values,omitempty"`
	Size          *float32                 `json:"size,omitempty"`
	Limit         *float32                 `json:"limit,omitempty"`
	IsLastPage    *bool                    `json:"isLastPage,omitempty"`
	NextPageStart *int32                   `json:"nextPageStart,omitempty"`
	Start         *int32                   `json:"start,omitempty"`
}

Search3200Response struct for Search3200Response

func NewSearch3200Response ¶

func NewSearch3200Response() *Search3200Response

NewSearch3200Response instantiates a new Search3200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearch3200ResponseWithDefaults ¶

func NewSearch3200ResponseWithDefaults() *Search3200Response

NewSearch3200ResponseWithDefaults instantiates a new Search3200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Search3200Response) GetIsLastPage ¶

func (o *Search3200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*Search3200Response) GetIsLastPageOk ¶

func (o *Search3200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search3200Response) GetLimit ¶

func (o *Search3200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*Search3200Response) GetLimitOk ¶

func (o *Search3200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search3200Response) GetNextPageStart ¶

func (o *Search3200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*Search3200Response) GetNextPageStartOk ¶

func (o *Search3200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search3200Response) GetSize ¶

func (o *Search3200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*Search3200Response) GetSizeOk ¶

func (o *Search3200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search3200Response) GetStart ¶

func (o *Search3200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*Search3200Response) GetStartOk ¶

func (o *Search3200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search3200Response) GetValues ¶

func (o *Search3200Response) GetValues() []RestSecretScanningRule

GetValues returns the Values field value if set, zero value otherwise.

func (*Search3200Response) GetValuesOk ¶

func (o *Search3200Response) GetValuesOk() ([]RestSecretScanningRule, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Search3200Response) HasIsLastPage ¶

func (o *Search3200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*Search3200Response) HasLimit ¶

func (o *Search3200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*Search3200Response) HasNextPageStart ¶

func (o *Search3200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*Search3200Response) HasSize ¶

func (o *Search3200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*Search3200Response) HasStart ¶

func (o *Search3200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*Search3200Response) HasValues ¶

func (o *Search3200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (Search3200Response) MarshalJSON ¶

func (o Search3200Response) MarshalJSON() ([]byte, error)

func (*Search3200Response) SetIsLastPage ¶

func (o *Search3200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*Search3200Response) SetLimit ¶

func (o *Search3200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*Search3200Response) SetNextPageStart ¶

func (o *Search3200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*Search3200Response) SetSize ¶

func (o *Search3200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*Search3200Response) SetStart ¶

func (o *Search3200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*Search3200Response) SetValues ¶

func (o *Search3200Response) SetValues(v []RestSecretScanningRule)

SetValues gets a reference to the given []RestSecretScanningRule and assigns it to the Values field.

func (Search3200Response) ToMap ¶

func (o Search3200Response) ToMap() (map[string]interface{}, error)

type SearchMeshMigrationRepos200Response ¶

type SearchMeshMigrationRepos200Response struct {
	Values        []RestMigrationRepository `json:"values,omitempty"`
	Size          *float32                  `json:"size,omitempty"`
	Limit         *float32                  `json:"limit,omitempty"`
	IsLastPage    *bool                     `json:"isLastPage,omitempty"`
	NextPageStart *int32                    `json:"nextPageStart,omitempty"`
	Start         *int32                    `json:"start,omitempty"`
}

SearchMeshMigrationRepos200Response struct for SearchMeshMigrationRepos200Response

func NewSearchMeshMigrationRepos200Response ¶

func NewSearchMeshMigrationRepos200Response() *SearchMeshMigrationRepos200Response

NewSearchMeshMigrationRepos200Response instantiates a new SearchMeshMigrationRepos200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSearchMeshMigrationRepos200ResponseWithDefaults ¶

func NewSearchMeshMigrationRepos200ResponseWithDefaults() *SearchMeshMigrationRepos200Response

NewSearchMeshMigrationRepos200ResponseWithDefaults instantiates a new SearchMeshMigrationRepos200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SearchMeshMigrationRepos200Response) GetIsLastPage ¶

func (o *SearchMeshMigrationRepos200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*SearchMeshMigrationRepos200Response) GetIsLastPageOk ¶

func (o *SearchMeshMigrationRepos200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMeshMigrationRepos200Response) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*SearchMeshMigrationRepos200Response) GetLimitOk ¶

func (o *SearchMeshMigrationRepos200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMeshMigrationRepos200Response) GetNextPageStart ¶

func (o *SearchMeshMigrationRepos200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*SearchMeshMigrationRepos200Response) GetNextPageStartOk ¶

func (o *SearchMeshMigrationRepos200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMeshMigrationRepos200Response) GetSize ¶

GetSize returns the Size field value if set, zero value otherwise.

func (*SearchMeshMigrationRepos200Response) GetSizeOk ¶

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMeshMigrationRepos200Response) GetStart ¶

GetStart returns the Start field value if set, zero value otherwise.

func (*SearchMeshMigrationRepos200Response) GetStartOk ¶

func (o *SearchMeshMigrationRepos200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMeshMigrationRepos200Response) GetValues ¶

GetValues returns the Values field value if set, zero value otherwise.

func (*SearchMeshMigrationRepos200Response) GetValuesOk ¶

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchMeshMigrationRepos200Response) HasIsLastPage ¶

func (o *SearchMeshMigrationRepos200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*SearchMeshMigrationRepos200Response) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*SearchMeshMigrationRepos200Response) HasNextPageStart ¶

func (o *SearchMeshMigrationRepos200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*SearchMeshMigrationRepos200Response) HasSize ¶

HasSize returns a boolean if a field has been set.

func (*SearchMeshMigrationRepos200Response) HasStart ¶

HasStart returns a boolean if a field has been set.

func (*SearchMeshMigrationRepos200Response) HasValues ¶

HasValues returns a boolean if a field has been set.

func (SearchMeshMigrationRepos200Response) MarshalJSON ¶

func (o SearchMeshMigrationRepos200Response) MarshalJSON() ([]byte, error)

func (*SearchMeshMigrationRepos200Response) SetIsLastPage ¶

func (o *SearchMeshMigrationRepos200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*SearchMeshMigrationRepos200Response) SetLimit ¶

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*SearchMeshMigrationRepos200Response) SetNextPageStart ¶

func (o *SearchMeshMigrationRepos200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*SearchMeshMigrationRepos200Response) SetSize ¶

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*SearchMeshMigrationRepos200Response) SetStart ¶

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*SearchMeshMigrationRepos200Response) SetValues ¶

SetValues gets a reference to the given []RestMigrationRepository and assigns it to the Values field.

func (SearchMeshMigrationRepos200Response) ToMap ¶

func (o SearchMeshMigrationRepos200Response) ToMap() (map[string]interface{}, error)

type SecurityAPIAddKeyRequest ¶

type SecurityAPIAddKeyRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIAddKeyRequest) Execute ¶

func (SecurityAPIAddKeyRequest) RestGpgKey ¶

The request body.

func (SecurityAPIAddKeyRequest) User ¶

The name of the user to add a key for (optional; requires ADMIN permission or higher).

type SecurityAPIBulkAddExemptRepositoriesRequest ¶

type SecurityAPIBulkAddExemptRepositoriesRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIBulkAddExemptRepositoriesRequest) Execute ¶

func (SecurityAPIBulkAddExemptRepositoriesRequest) RestRepositorySelector ¶

type SecurityAPICreateAllowlistRule1Request ¶

type SecurityAPICreateAllowlistRule1Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPICreateAllowlistRule1Request) Execute ¶

func (SecurityAPICreateAllowlistRule1Request) RestSecretScanningAllowlistRuleSetRequest ¶

func (r SecurityAPICreateAllowlistRule1Request) RestSecretScanningAllowlistRuleSetRequest(restSecretScanningAllowlistRuleSetRequest RestSecretScanningAllowlistRuleSetRequest) SecurityAPICreateAllowlistRule1Request

Allowlist rule to create, either the line regular expression or the path regular expression must be present

type SecurityAPICreateAllowlistRuleRequest ¶

type SecurityAPICreateAllowlistRuleRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPICreateAllowlistRuleRequest) Execute ¶

func (SecurityAPICreateAllowlistRuleRequest) RestSecretScanningAllowlistRuleSetRequest ¶

func (r SecurityAPICreateAllowlistRuleRequest) RestSecretScanningAllowlistRuleSetRequest(restSecretScanningAllowlistRuleSetRequest RestSecretScanningAllowlistRuleSetRequest) SecurityAPICreateAllowlistRuleRequest

Allowlist rule to create, either the line regular expression or the path regular expression must be present

type SecurityAPICreateRule1Request ¶

type SecurityAPICreateRule1Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPICreateRule1Request) Execute ¶

func (SecurityAPICreateRule1Request) RestSecretScanningRuleSetRequest ¶

func (r SecurityAPICreateRule1Request) RestSecretScanningRuleSetRequest(restSecretScanningRuleSetRequest RestSecretScanningRuleSetRequest) SecurityAPICreateRule1Request

Rule to create, either the line regular expression or the path regular expression must be present

type SecurityAPICreateRule2Request ¶

type SecurityAPICreateRule2Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPICreateRule2Request) Execute ¶

func (SecurityAPICreateRule2Request) RestSecretScanningRuleSetRequest ¶

func (r SecurityAPICreateRule2Request) RestSecretScanningRuleSetRequest(restSecretScanningRuleSetRequest RestSecretScanningRuleSetRequest) SecurityAPICreateRule2Request

Rule to create, either the line regular expression or the path regular expression must be present

type SecurityAPICreateRuleRequest ¶

type SecurityAPICreateRuleRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPICreateRuleRequest) Execute ¶

func (SecurityAPICreateRuleRequest) RestSecretScanningRuleSetRequest ¶

func (r SecurityAPICreateRuleRequest) RestSecretScanningRuleSetRequest(restSecretScanningRuleSetRequest RestSecretScanningRuleSetRequest) SecurityAPICreateRuleRequest

Rule to create, either the line regular expression or the path regular expression must be present

type SecurityAPIDeleteAllowlistRule1Request ¶

type SecurityAPIDeleteAllowlistRule1Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIDeleteAllowlistRule1Request) Execute ¶

type SecurityAPIDeleteAllowlistRuleRequest ¶

type SecurityAPIDeleteAllowlistRuleRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIDeleteAllowlistRuleRequest) Execute ¶

type SecurityAPIDeleteForUserRequest ¶

type SecurityAPIDeleteForUserRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIDeleteForUserRequest) Execute ¶

func (SecurityAPIDeleteForUserRequest) User ¶

The username of the user to delete the keys for. If no username is specified, the GPG keys will be deleted for the currently authenticated user.

type SecurityAPIDeleteKeyRequest ¶

type SecurityAPIDeleteKeyRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIDeleteKeyRequest) Execute ¶

type SecurityAPIDeleteRule1Request ¶

type SecurityAPIDeleteRule1Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIDeleteRule1Request) Execute ¶

type SecurityAPIDeleteRule2Request ¶

type SecurityAPIDeleteRule2Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIDeleteRule2Request) Execute ¶

type SecurityAPIDeleteRuleRequest ¶

type SecurityAPIDeleteRuleRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIDeleteRuleRequest) Execute ¶

type SecurityAPIEditAllowlistRule1Request ¶

type SecurityAPIEditAllowlistRule1Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIEditAllowlistRule1Request) Execute ¶

func (SecurityAPIEditAllowlistRule1Request) RestSecretScanningAllowlistRuleSetRequest ¶

func (r SecurityAPIEditAllowlistRule1Request) RestSecretScanningAllowlistRuleSetRequest(restSecretScanningAllowlistRuleSetRequest RestSecretScanningAllowlistRuleSetRequest) SecurityAPIEditAllowlistRule1Request

type SecurityAPIEditAllowlistRuleRequest ¶

type SecurityAPIEditAllowlistRuleRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIEditAllowlistRuleRequest) Execute ¶

func (SecurityAPIEditAllowlistRuleRequest) RestSecretScanningAllowlistRuleSetRequest ¶

func (r SecurityAPIEditAllowlistRuleRequest) RestSecretScanningAllowlistRuleSetRequest(restSecretScanningAllowlistRuleSetRequest RestSecretScanningAllowlistRuleSetRequest) SecurityAPIEditAllowlistRuleRequest

type SecurityAPIEditRule1Request ¶

type SecurityAPIEditRule1Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIEditRule1Request) Execute ¶

func (SecurityAPIEditRule1Request) RestSecretScanningRuleSetRequest ¶

func (r SecurityAPIEditRule1Request) RestSecretScanningRuleSetRequest(restSecretScanningRuleSetRequest RestSecretScanningRuleSetRequest) SecurityAPIEditRule1Request

type SecurityAPIEditRule2Request ¶

type SecurityAPIEditRule2Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIEditRule2Request) Execute ¶

func (SecurityAPIEditRule2Request) RestSecretScanningRuleSetRequest ¶

func (r SecurityAPIEditRule2Request) RestSecretScanningRuleSetRequest(restSecretScanningRuleSetRequest RestSecretScanningRuleSetRequest) SecurityAPIEditRule2Request

type SecurityAPIEditRuleRequest ¶

type SecurityAPIEditRuleRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIEditRuleRequest) Execute ¶

func (SecurityAPIEditRuleRequest) RestSecretScanningRuleSetRequest ¶

func (r SecurityAPIEditRuleRequest) RestSecretScanningRuleSetRequest(restSecretScanningRuleSetRequest RestSecretScanningRuleSetRequest) SecurityAPIEditRuleRequest

type SecurityAPIFindExemptReposByScopeRequest ¶

type SecurityAPIFindExemptReposByScopeRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIFindExemptReposByScopeRequest) Execute ¶

func (SecurityAPIFindExemptReposByScopeRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SecurityAPIFindExemptReposByScopeRequest) Order ¶

Order by project name followed by repository name either ascending or descending, defaults to ascending.

func (SecurityAPIFindExemptReposByScopeRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SecurityAPIGetAllowlistRule1Request ¶

type SecurityAPIGetAllowlistRule1Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIGetAllowlistRule1Request) Execute ¶

type SecurityAPIGetAllowlistRuleRequest ¶

type SecurityAPIGetAllowlistRuleRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIGetAllowlistRuleRequest) Execute ¶

type SecurityAPIGetKeysForUserRequest ¶

type SecurityAPIGetKeysForUserRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIGetKeysForUserRequest) Execute ¶

func (SecurityAPIGetKeysForUserRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SecurityAPIGetKeysForUserRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (SecurityAPIGetKeysForUserRequest) User ¶

The name of the user to get keys for (optional; requires ADMIN permission or higher).

type SecurityAPIGetRule1Request ¶

type SecurityAPIGetRule1Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIGetRule1Request) Execute ¶

type SecurityAPIGetRule2Request ¶

type SecurityAPIGetRule2Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIGetRule2Request) Execute ¶

type SecurityAPIGetRuleRequest ¶

type SecurityAPIGetRuleRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPIGetRuleRequest) Execute ¶

type SecurityAPISearch1Request ¶

type SecurityAPISearch1Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPISearch1Request) Execute ¶

func (SecurityAPISearch1Request) Filter ¶

Filter names by the provided text

func (SecurityAPISearch1Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SecurityAPISearch1Request) Order ¶

Order by

func (SecurityAPISearch1Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SecurityAPISearch2Request ¶

type SecurityAPISearch2Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPISearch2Request) Execute ¶

func (SecurityAPISearch2Request) Filter ¶

Filter names by the provided text

func (SecurityAPISearch2Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SecurityAPISearch2Request) Order ¶

Order by

func (SecurityAPISearch2Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SecurityAPISearch3Request ¶

type SecurityAPISearch3Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPISearch3Request) Execute ¶

func (SecurityAPISearch3Request) Filter ¶

Filter names by the provided text

func (SecurityAPISearch3Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SecurityAPISearch3Request) Order ¶

Order by

func (SecurityAPISearch3Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SecurityAPISearch4Request ¶

type SecurityAPISearch4Request struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPISearch4Request) Execute ¶

func (SecurityAPISearch4Request) Filter ¶

Filter by rule name

func (SecurityAPISearch4Request) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SecurityAPISearch4Request) Order ¶

Order by

func (SecurityAPISearch4Request) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SecurityAPISearchAllowlistRuleRequest ¶

type SecurityAPISearchAllowlistRuleRequest struct {
	ApiService *SecurityAPIService
	// contains filtered or unexported fields
}

func (SecurityAPISearchAllowlistRuleRequest) Execute ¶

func (SecurityAPISearchAllowlistRuleRequest) Filter ¶

Filter names by the provided text

func (SecurityAPISearchAllowlistRuleRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SecurityAPISearchAllowlistRuleRequest) Order ¶

Order by

func (SecurityAPISearchAllowlistRuleRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SecurityAPIService ¶

type SecurityAPIService service

SecurityAPIService SecurityAPI service

func (*SecurityAPIService) AddKey ¶

AddKey Create a GPG key

Add a GPG key to the authenticated user's account. Optionally, users with ADMIN and higher permissions may choose to specify the <code>user</code> parameter to add a GPG key for another user.

Only authenticated users may call this endpoint.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SecurityAPIAddKeyRequest

func (*SecurityAPIService) AddKeyExecute ¶

Execute executes the request

@return RestGpgKey

func (*SecurityAPIService) BulkAddExemptRepositories ¶

BulkAddExemptRepositories Bulk exempt repos from secret scanning

Bulk exempt a list of repositories from being scanned for secrets. User must be have global **ADMIN** permissions.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SecurityAPIBulkAddExemptRepositoriesRequest

func (*SecurityAPIService) BulkAddExemptRepositoriesExecute ¶

func (a *SecurityAPIService) BulkAddExemptRepositoriesExecute(r SecurityAPIBulkAddExemptRepositoriesRequest) (*http.Response, error)

Execute executes the request

func (*SecurityAPIService) CreateAllowlistRule ¶

func (a *SecurityAPIService) CreateAllowlistRule(ctx context.Context, projectKey string) SecurityAPICreateAllowlistRuleRequest

CreateAllowlistRule Create project secret scanning allowlist rule

Create a new project level secret scanning allowlist rule. Project allowlist rules are used when scanning all non exempt repositories in the provided project.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return SecurityAPICreateAllowlistRuleRequest

func (*SecurityAPIService) CreateAllowlistRule1 ¶

func (a *SecurityAPIService) CreateAllowlistRule1(ctx context.Context, projectKey string, repositorySlug string) SecurityAPICreateAllowlistRule1Request

CreateAllowlistRule1 Create repository secret scanning allowlist rule

Create a new repository secret scanning allowlist rule. Repository allowlist rules are used when scanning the given repository.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return SecurityAPICreateAllowlistRule1Request

func (*SecurityAPIService) CreateAllowlistRule1Execute ¶

Execute executes the request

@return RestSecretScanningAllowlistRule

func (*SecurityAPIService) CreateAllowlistRuleExecute ¶

Execute executes the request

@return RestSecretScanningAllowlistRule

func (*SecurityAPIService) CreateRule ¶

func (a *SecurityAPIService) CreateRule(ctx context.Context, projectKey string) SecurityAPICreateRuleRequest

CreateRule Create project secret scanning rule

Create a new project level secret scanning rule. Project rules are used when scanning all non exempt repositories in the provided project.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return SecurityAPICreateRuleRequest

func (*SecurityAPIService) CreateRule1 ¶

func (a *SecurityAPIService) CreateRule1(ctx context.Context, projectKey string, repositorySlug string) SecurityAPICreateRule1Request

CreateRule1 Create repository secret scanning rule

Create a new repository secret scanning rule. Repository rules are used when scanning the given repository.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return SecurityAPICreateRule1Request

func (*SecurityAPIService) CreateRule1Execute ¶

Execute executes the request

@return RestSecretScanningRule

func (*SecurityAPIService) CreateRule2 ¶

CreateRule2 Create global secret scanning rule

Create a new global secret scanning rule. Global rules are used when scanning all non exempt repositories.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SecurityAPICreateRule2Request

func (*SecurityAPIService) CreateRule2Execute ¶

Execute executes the request

@return RestSecretScanningRule

func (*SecurityAPIService) CreateRuleExecute ¶

Execute executes the request

@return RestSecretScanningRule

func (*SecurityAPIService) DeleteAllowlistRule ¶

func (a *SecurityAPIService) DeleteAllowlistRule(ctx context.Context, projectKey string, id string) SecurityAPIDeleteAllowlistRuleRequest

DeleteAllowlistRule Delete a project secret scanning allowlist rule

Delete a project secret scanning allowlist rule with the provided ID.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The allowlist rule id.
@return SecurityAPIDeleteAllowlistRuleRequest

func (*SecurityAPIService) DeleteAllowlistRule1 ¶

func (a *SecurityAPIService) DeleteAllowlistRule1(ctx context.Context, projectKey string, id string, repositorySlug string) SecurityAPIDeleteAllowlistRule1Request

DeleteAllowlistRule1 Delete a repository secret scanning allowlist rule

Delete a repository secret scanning allowlist rule with the provided ID.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The allowlist rule id.
@param repositorySlug The repository slug.
@return SecurityAPIDeleteAllowlistRule1Request

func (*SecurityAPIService) DeleteAllowlistRule1Execute ¶

func (a *SecurityAPIService) DeleteAllowlistRule1Execute(r SecurityAPIDeleteAllowlistRule1Request) (*http.Response, error)

Execute executes the request

func (*SecurityAPIService) DeleteAllowlistRuleExecute ¶

func (a *SecurityAPIService) DeleteAllowlistRuleExecute(r SecurityAPIDeleteAllowlistRuleRequest) (*http.Response, error)

Execute executes the request

func (*SecurityAPIService) DeleteForUser ¶

DeleteForUser Delete all GPG keys for user

Delete all GPG keys for a supplied user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SecurityAPIDeleteForUserRequest

func (*SecurityAPIService) DeleteForUserExecute ¶

func (a *SecurityAPIService) DeleteForUserExecute(r SecurityAPIDeleteForUserRequest) (*http.Response, error)

Execute executes the request

func (*SecurityAPIService) DeleteKey ¶

func (a *SecurityAPIService) DeleteKey(ctx context.Context, fingerprintOrId string) SecurityAPIDeleteKeyRequest

DeleteKey Delete a GPG key

Delete the GPG key with the specified ID or Key Fingerprint.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param fingerprintOrId The GPG fingerprint or ID.
@return SecurityAPIDeleteKeyRequest

func (*SecurityAPIService) DeleteKeyExecute ¶

Execute executes the request

func (*SecurityAPIService) DeleteRule ¶

func (a *SecurityAPIService) DeleteRule(ctx context.Context, projectKey string, id string) SecurityAPIDeleteRuleRequest

DeleteRule Delete a project secret scanning rule

Delete a project secret scanning rule with the provided ID.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The rule id.
@return SecurityAPIDeleteRuleRequest

func (*SecurityAPIService) DeleteRule1 ¶

func (a *SecurityAPIService) DeleteRule1(ctx context.Context, projectKey string, id string, repositorySlug string) SecurityAPIDeleteRule1Request

DeleteRule1 Delete a repository secret scanning rule

Delete a repository secret scanning rule with the provided ID.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The rule id.
@param repositorySlug The repository slug.
@return SecurityAPIDeleteRule1Request

func (*SecurityAPIService) DeleteRule1Execute ¶

Execute executes the request

func (*SecurityAPIService) DeleteRule2 ¶

DeleteRule2 Delete a global secret scanning rule

Delete a global secret scanning rule with the provided ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The rule id.
@return SecurityAPIDeleteRule2Request

func (*SecurityAPIService) DeleteRule2Execute ¶

Execute executes the request

func (*SecurityAPIService) DeleteRuleExecute ¶

Execute executes the request

func (*SecurityAPIService) EditAllowlistRule ¶

func (a *SecurityAPIService) EditAllowlistRule(ctx context.Context, projectKey string, id string) SecurityAPIEditAllowlistRuleRequest

EditAllowlistRule Edit an existing project secret scanning allowlist rule

Edit a project secret scanning allowlist rule.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The allowlist rule id.
@return SecurityAPIEditAllowlistRuleRequest

func (*SecurityAPIService) EditAllowlistRule1 ¶

func (a *SecurityAPIService) EditAllowlistRule1(ctx context.Context, projectKey string, id string, repositorySlug string) SecurityAPIEditAllowlistRule1Request

EditAllowlistRule1 Edit an existing repository secret scanning allowlist rule

Edit a repository secret scanning allowlist rule.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The allowlist rule id.
@param repositorySlug The repository slug.
@return SecurityAPIEditAllowlistRule1Request

func (*SecurityAPIService) EditAllowlistRule1Execute ¶

Execute executes the request

@return RestSecretScanningAllowlistRule

func (*SecurityAPIService) EditAllowlistRuleExecute ¶

Execute executes the request

@return RestSecretScanningAllowlistRule

func (*SecurityAPIService) EditRule ¶

func (a *SecurityAPIService) EditRule(ctx context.Context, projectKey string, id string) SecurityAPIEditRuleRequest

EditRule Edit an existing project secret scanning rule

Edit a project secret scanning rule.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The rule id.
@return SecurityAPIEditRuleRequest

func (*SecurityAPIService) EditRule1 ¶

func (a *SecurityAPIService) EditRule1(ctx context.Context, projectKey string, id string, repositorySlug string) SecurityAPIEditRule1Request

EditRule1 Edit an existing repository secret scanning rule

Edit a repository secret scanning rule.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The rule id.
@param repositorySlug The repository slug.
@return SecurityAPIEditRule1Request

func (*SecurityAPIService) EditRule1Execute ¶

Execute executes the request

@return RestSecretScanningRule

func (*SecurityAPIService) EditRule2 ¶

EditRule2 Edit a global secret scanning rule.

Edit an existing global secret scanning rule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The rule id.
@return SecurityAPIEditRule2Request

func (*SecurityAPIService) EditRule2Execute ¶

Execute executes the request

@return RestSecretScanningRule

func (*SecurityAPIService) EditRuleExecute ¶

Execute executes the request

@return RestSecretScanningRule

func (*SecurityAPIService) FindExemptReposByScope ¶

FindExemptReposByScope Find all repos exempt from secret scan

Find all repositories exempt from secret scanning

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SecurityAPIFindExemptReposByScopeRequest

func (*SecurityAPIService) FindExemptReposByScopeExecute ¶

Execute executes the request

@return GetRepositoriesRecentlyAccessed200Response

func (*SecurityAPIService) GetAllowlistRule ¶

func (a *SecurityAPIService) GetAllowlistRule(ctx context.Context, projectKey string, id string) SecurityAPIGetAllowlistRuleRequest

GetAllowlistRule Get a project secret scanning allowlist rule

Get a project secret scanning allowlist rule by ID.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The allowlist rule id.
@return SecurityAPIGetAllowlistRuleRequest

func (*SecurityAPIService) GetAllowlistRule1 ¶

func (a *SecurityAPIService) GetAllowlistRule1(ctx context.Context, projectKey string, id string, repositorySlug string) SecurityAPIGetAllowlistRule1Request

GetAllowlistRule1 Get a repository secret scanning allowlist rule

Get a repository secret scanning allowlist rule by ID.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The allowlist rule id.
@param repositorySlug The repository slug.
@return SecurityAPIGetAllowlistRule1Request

func (*SecurityAPIService) GetAllowlistRule1Execute ¶

Execute executes the request

@return RestSecretScanningAllowlistRule

func (*SecurityAPIService) GetAllowlistRuleExecute ¶

Execute executes the request

@return RestSecretScanningAllowlistRule

func (*SecurityAPIService) GetKeysForUser ¶

GetKeysForUser Get all GPG keys

Find all the keys for the currently authenticated user. Optionally, users with ADMIN and higher permissions may choose to specify the <code>user</code> parameter to retrieve GPG keys for another user.

Only authenticated users may call this endpoint.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SecurityAPIGetKeysForUserRequest

func (*SecurityAPIService) GetKeysForUserExecute ¶

Execute executes the request

@return GetKeysForUser200Response

func (*SecurityAPIService) GetRule ¶

func (a *SecurityAPIService) GetRule(ctx context.Context, projectKey string, id string) SecurityAPIGetRuleRequest

GetRule Get a project secret scanning rule

Get a project secret scanning rule by ID.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The rule id.
@return SecurityAPIGetRuleRequest

func (*SecurityAPIService) GetRule1 ¶

func (a *SecurityAPIService) GetRule1(ctx context.Context, projectKey string, id string, repositorySlug string) SecurityAPIGetRule1Request

GetRule1 Get a repository secret scanning rule

Get a repository secret scanning rule by ID.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param id The rule id.
@param repositorySlug The repository slug.
@return SecurityAPIGetRule1Request

func (*SecurityAPIService) GetRule1Execute ¶

Execute executes the request

@return RestSecretScanningRule

func (*SecurityAPIService) GetRule2 ¶

GetRule2 Get a global secret scanning rule

Get a global secret scanning rule by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The rule id.
@return SecurityAPIGetRule2Request

func (*SecurityAPIService) GetRule2Execute ¶

Execute executes the request

@return RestSecretScanningRule

func (*SecurityAPIService) GetRuleExecute ¶

Execute executes the request

@return RestSecretScanningRule

func (*SecurityAPIService) Search1 ¶

Search1 Find project secret scanning rules

Find project secret scanning rules by filtering.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return SecurityAPISearch1Request

func (*SecurityAPIService) Search1Execute ¶

Execute executes the request

@return Search3200Response

func (*SecurityAPIService) Search2 ¶

func (a *SecurityAPIService) Search2(ctx context.Context, projectKey string, repositorySlug string) SecurityAPISearch2Request

Search2 Find repository secret scanning allowlist rules

Find repository secret scanning allowlist rules by filtering.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return SecurityAPISearch2Request

func (*SecurityAPIService) Search2Execute ¶

Execute executes the request

@return Search2200Response

func (*SecurityAPIService) Search3 ¶

func (a *SecurityAPIService) Search3(ctx context.Context, projectKey string, repositorySlug string) SecurityAPISearch3Request

Search3 Find repository secret scanning rules

Find repository secret scanning rules by filtering.

Repository **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@param repositorySlug The repository slug.
@return SecurityAPISearch3Request

func (*SecurityAPIService) Search3Execute ¶

Execute executes the request

@return Search3200Response

func (*SecurityAPIService) Search4 ¶

Search4 Find global secret scanning rules

Find global secret scanning rules by filtering.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SecurityAPISearch4Request

func (*SecurityAPIService) Search4Execute ¶

Execute executes the request

@return Search3200Response

func (*SecurityAPIService) SearchAllowlistRule ¶

func (a *SecurityAPIService) SearchAllowlistRule(ctx context.Context, projectKey string) SecurityAPISearchAllowlistRuleRequest

SearchAllowlistRule Find project secret scanning allowlist rules

Find project secret scanning allowlist rules by filtering.

Project **Admin** is required

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectKey The project key.
@return SecurityAPISearchAllowlistRuleRequest

func (*SecurityAPIService) SearchAllowlistRuleExecute ¶

Execute executes the request

@return Search2200Response

type ServerConfiguration ¶

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations ¶

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL ¶

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable ¶

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SetBannerRequest ¶

type SetBannerRequest struct {
	Audience string  `json:"audience"`
	Enabled  *bool   `json:"enabled,omitempty"`
	Message  *string `json:"message,omitempty"`
}

SetBannerRequest struct for SetBannerRequest

func NewSetBannerRequest ¶

func NewSetBannerRequest(audience string) *SetBannerRequest

NewSetBannerRequest instantiates a new SetBannerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSetBannerRequestWithDefaults ¶

func NewSetBannerRequestWithDefaults() *SetBannerRequest

NewSetBannerRequestWithDefaults instantiates a new SetBannerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SetBannerRequest) GetAudience ¶

func (o *SetBannerRequest) GetAudience() string

GetAudience returns the Audience field value

func (*SetBannerRequest) GetAudienceOk ¶

func (o *SetBannerRequest) GetAudienceOk() (*string, bool)

GetAudienceOk returns a tuple with the Audience field value and a boolean to check if the value has been set.

func (*SetBannerRequest) GetEnabled ¶

func (o *SetBannerRequest) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*SetBannerRequest) GetEnabledOk ¶

func (o *SetBannerRequest) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetBannerRequest) GetMessage ¶

func (o *SetBannerRequest) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*SetBannerRequest) GetMessageOk ¶

func (o *SetBannerRequest) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetBannerRequest) HasEnabled ¶

func (o *SetBannerRequest) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*SetBannerRequest) HasMessage ¶

func (o *SetBannerRequest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (SetBannerRequest) MarshalJSON ¶

func (o SetBannerRequest) MarshalJSON() ([]byte, error)

func (*SetBannerRequest) SetAudience ¶

func (o *SetBannerRequest) SetAudience(v string)

SetAudience sets field value

func (*SetBannerRequest) SetEnabled ¶

func (o *SetBannerRequest) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*SetBannerRequest) SetMessage ¶

func (o *SetBannerRequest) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (SetBannerRequest) ToMap ¶

func (o SetBannerRequest) ToMap() (map[string]interface{}, error)

type SetDefaultBranchRequest ¶

type SetDefaultBranchRequest struct {
	Id *string `json:"id,omitempty"`
}

SetDefaultBranchRequest struct for SetDefaultBranchRequest

func NewSetDefaultBranchRequest ¶

func NewSetDefaultBranchRequest() *SetDefaultBranchRequest

NewSetDefaultBranchRequest instantiates a new SetDefaultBranchRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSetDefaultBranchRequestWithDefaults ¶

func NewSetDefaultBranchRequestWithDefaults() *SetDefaultBranchRequest

NewSetDefaultBranchRequestWithDefaults instantiates a new SetDefaultBranchRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SetDefaultBranchRequest) GetId ¶

func (o *SetDefaultBranchRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*SetDefaultBranchRequest) GetIdOk ¶

func (o *SetDefaultBranchRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetDefaultBranchRequest) HasId ¶

func (o *SetDefaultBranchRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (SetDefaultBranchRequest) MarshalJSON ¶

func (o SetDefaultBranchRequest) MarshalJSON() ([]byte, error)

func (*SetDefaultBranchRequest) SetId ¶

func (o *SetDefaultBranchRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (SetDefaultBranchRequest) ToMap ¶

func (o SetDefaultBranchRequest) ToMap() (map[string]interface{}, error)

type SetMailConfigRequest ¶

type SetMailConfigRequest struct {
	Hostname        *string `json:"hostname,omitempty"`
	Password        *string `json:"password,omitempty"`
	Port            *int32  `json:"port,omitempty"`
	Protocol        *string `json:"protocol,omitempty"`
	RequireStartTls *bool   `json:"requireStartTls,omitempty"`
	SenderAddress   *string `json:"senderAddress,omitempty"`
	UseStartTls     *bool   `json:"useStartTls,omitempty"`
	Username        *string `json:"username,omitempty"`
}

SetMailConfigRequest struct for SetMailConfigRequest

func NewSetMailConfigRequest ¶

func NewSetMailConfigRequest() *SetMailConfigRequest

NewSetMailConfigRequest instantiates a new SetMailConfigRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSetMailConfigRequestWithDefaults ¶

func NewSetMailConfigRequestWithDefaults() *SetMailConfigRequest

NewSetMailConfigRequestWithDefaults instantiates a new SetMailConfigRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SetMailConfigRequest) GetHostname ¶

func (o *SetMailConfigRequest) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*SetMailConfigRequest) GetHostnameOk ¶

func (o *SetMailConfigRequest) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetMailConfigRequest) GetPassword ¶

func (o *SetMailConfigRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*SetMailConfigRequest) GetPasswordOk ¶

func (o *SetMailConfigRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetMailConfigRequest) GetPort ¶

func (o *SetMailConfigRequest) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*SetMailConfigRequest) GetPortOk ¶

func (o *SetMailConfigRequest) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetMailConfigRequest) GetProtocol ¶

func (o *SetMailConfigRequest) GetProtocol() string

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*SetMailConfigRequest) GetProtocolOk ¶

func (o *SetMailConfigRequest) GetProtocolOk() (*string, bool)

GetProtocolOk returns a tuple with the Protocol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetMailConfigRequest) GetRequireStartTls ¶

func (o *SetMailConfigRequest) GetRequireStartTls() bool

GetRequireStartTls returns the RequireStartTls field value if set, zero value otherwise.

func (*SetMailConfigRequest) GetRequireStartTlsOk ¶

func (o *SetMailConfigRequest) GetRequireStartTlsOk() (*bool, bool)

GetRequireStartTlsOk returns a tuple with the RequireStartTls field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetMailConfigRequest) GetSenderAddress ¶

func (o *SetMailConfigRequest) GetSenderAddress() string

GetSenderAddress returns the SenderAddress field value if set, zero value otherwise.

func (*SetMailConfigRequest) GetSenderAddressOk ¶

func (o *SetMailConfigRequest) GetSenderAddressOk() (*string, bool)

GetSenderAddressOk returns a tuple with the SenderAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetMailConfigRequest) GetUseStartTls ¶

func (o *SetMailConfigRequest) GetUseStartTls() bool

GetUseStartTls returns the UseStartTls field value if set, zero value otherwise.

func (*SetMailConfigRequest) GetUseStartTlsOk ¶

func (o *SetMailConfigRequest) GetUseStartTlsOk() (*bool, bool)

GetUseStartTlsOk returns a tuple with the UseStartTls field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetMailConfigRequest) GetUsername ¶

func (o *SetMailConfigRequest) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*SetMailConfigRequest) GetUsernameOk ¶

func (o *SetMailConfigRequest) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SetMailConfigRequest) HasHostname ¶

func (o *SetMailConfigRequest) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*SetMailConfigRequest) HasPassword ¶

func (o *SetMailConfigRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*SetMailConfigRequest) HasPort ¶

func (o *SetMailConfigRequest) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*SetMailConfigRequest) HasProtocol ¶

func (o *SetMailConfigRequest) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*SetMailConfigRequest) HasRequireStartTls ¶

func (o *SetMailConfigRequest) HasRequireStartTls() bool

HasRequireStartTls returns a boolean if a field has been set.

func (*SetMailConfigRequest) HasSenderAddress ¶

func (o *SetMailConfigRequest) HasSenderAddress() bool

HasSenderAddress returns a boolean if a field has been set.

func (*SetMailConfigRequest) HasUseStartTls ¶

func (o *SetMailConfigRequest) HasUseStartTls() bool

HasUseStartTls returns a boolean if a field has been set.

func (*SetMailConfigRequest) HasUsername ¶

func (o *SetMailConfigRequest) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (SetMailConfigRequest) MarshalJSON ¶

func (o SetMailConfigRequest) MarshalJSON() ([]byte, error)

func (*SetMailConfigRequest) SetHostname ¶

func (o *SetMailConfigRequest) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*SetMailConfigRequest) SetPassword ¶

func (o *SetMailConfigRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*SetMailConfigRequest) SetPort ¶

func (o *SetMailConfigRequest) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*SetMailConfigRequest) SetProtocol ¶

func (o *SetMailConfigRequest) SetProtocol(v string)

SetProtocol gets a reference to the given string and assigns it to the Protocol field.

func (*SetMailConfigRequest) SetRequireStartTls ¶

func (o *SetMailConfigRequest) SetRequireStartTls(v bool)

SetRequireStartTls gets a reference to the given bool and assigns it to the RequireStartTls field.

func (*SetMailConfigRequest) SetSenderAddress ¶

func (o *SetMailConfigRequest) SetSenderAddress(v string)

SetSenderAddress gets a reference to the given string and assigns it to the SenderAddress field.

func (*SetMailConfigRequest) SetUseStartTls ¶

func (o *SetMailConfigRequest) SetUseStartTls(v bool)

SetUseStartTls gets a reference to the given bool and assigns it to the UseStartTls field.

func (*SetMailConfigRequest) SetUsername ¶

func (o *SetMailConfigRequest) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (SetMailConfigRequest) ToMap ¶

func (o SetMailConfigRequest) ToMap() (map[string]interface{}, error)

type SimpleSshKeyFingerprint ¶

type SimpleSshKeyFingerprint struct {
	Algorithm *string `json:"algorithm,omitempty"`
	Value     *string `json:"value,omitempty"`
}

SimpleSshKeyFingerprint struct for SimpleSshKeyFingerprint

func NewSimpleSshKeyFingerprint ¶

func NewSimpleSshKeyFingerprint() *SimpleSshKeyFingerprint

NewSimpleSshKeyFingerprint instantiates a new SimpleSshKeyFingerprint object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSimpleSshKeyFingerprintWithDefaults ¶

func NewSimpleSshKeyFingerprintWithDefaults() *SimpleSshKeyFingerprint

NewSimpleSshKeyFingerprintWithDefaults instantiates a new SimpleSshKeyFingerprint object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SimpleSshKeyFingerprint) GetAlgorithm ¶

func (o *SimpleSshKeyFingerprint) GetAlgorithm() string

GetAlgorithm returns the Algorithm field value if set, zero value otherwise.

func (*SimpleSshKeyFingerprint) GetAlgorithmOk ¶

func (o *SimpleSshKeyFingerprint) GetAlgorithmOk() (*string, bool)

GetAlgorithmOk returns a tuple with the Algorithm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SimpleSshKeyFingerprint) GetValue ¶

func (o *SimpleSshKeyFingerprint) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*SimpleSshKeyFingerprint) GetValueOk ¶

func (o *SimpleSshKeyFingerprint) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SimpleSshKeyFingerprint) HasAlgorithm ¶

func (o *SimpleSshKeyFingerprint) HasAlgorithm() bool

HasAlgorithm returns a boolean if a field has been set.

func (*SimpleSshKeyFingerprint) HasValue ¶

func (o *SimpleSshKeyFingerprint) HasValue() bool

HasValue returns a boolean if a field has been set.

func (SimpleSshKeyFingerprint) MarshalJSON ¶

func (o SimpleSshKeyFingerprint) MarshalJSON() ([]byte, error)

func (*SimpleSshKeyFingerprint) SetAlgorithm ¶

func (o *SimpleSshKeyFingerprint) SetAlgorithm(v string)

SetAlgorithm gets a reference to the given string and assigns it to the Algorithm field.

func (*SimpleSshKeyFingerprint) SetValue ¶

func (o *SimpleSshKeyFingerprint) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (SimpleSshKeyFingerprint) ToMap ¶

func (o SimpleSshKeyFingerprint) ToMap() (map[string]interface{}, error)

type StartMeshMigrationRequest ¶

type StartMeshMigrationRequest struct {
	All               *bool                                       `json:"all,omitempty"`
	MaxBytesPerSecond *StartMeshMigrationRequestMaxBytesPerSecond `json:"maxBytesPerSecond,omitempty"`
	ProjectIds        []int32                                     `json:"projectIds,omitempty"`
	RepositoryIds     []int32                                     `json:"repositoryIds,omitempty"`
}

StartMeshMigrationRequest struct for StartMeshMigrationRequest

func NewStartMeshMigrationRequest ¶

func NewStartMeshMigrationRequest() *StartMeshMigrationRequest

NewStartMeshMigrationRequest instantiates a new StartMeshMigrationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStartMeshMigrationRequestWithDefaults ¶

func NewStartMeshMigrationRequestWithDefaults() *StartMeshMigrationRequest

NewStartMeshMigrationRequestWithDefaults instantiates a new StartMeshMigrationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StartMeshMigrationRequest) GetAll ¶

func (o *StartMeshMigrationRequest) GetAll() bool

GetAll returns the All field value if set, zero value otherwise.

func (*StartMeshMigrationRequest) GetAllOk ¶

func (o *StartMeshMigrationRequest) GetAllOk() (*bool, bool)

GetAllOk returns a tuple with the All field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartMeshMigrationRequest) GetMaxBytesPerSecond ¶

GetMaxBytesPerSecond returns the MaxBytesPerSecond field value if set, zero value otherwise.

func (*StartMeshMigrationRequest) GetMaxBytesPerSecondOk ¶

GetMaxBytesPerSecondOk returns a tuple with the MaxBytesPerSecond field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartMeshMigrationRequest) GetProjectIds ¶

func (o *StartMeshMigrationRequest) GetProjectIds() []int32

GetProjectIds returns the ProjectIds field value if set, zero value otherwise.

func (*StartMeshMigrationRequest) GetProjectIdsOk ¶

func (o *StartMeshMigrationRequest) GetProjectIdsOk() ([]int32, bool)

GetProjectIdsOk returns a tuple with the ProjectIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartMeshMigrationRequest) GetRepositoryIds ¶

func (o *StartMeshMigrationRequest) GetRepositoryIds() []int32

GetRepositoryIds returns the RepositoryIds field value if set, zero value otherwise.

func (*StartMeshMigrationRequest) GetRepositoryIdsOk ¶

func (o *StartMeshMigrationRequest) GetRepositoryIdsOk() ([]int32, bool)

GetRepositoryIdsOk returns a tuple with the RepositoryIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartMeshMigrationRequest) HasAll ¶

func (o *StartMeshMigrationRequest) HasAll() bool

HasAll returns a boolean if a field has been set.

func (*StartMeshMigrationRequest) HasMaxBytesPerSecond ¶

func (o *StartMeshMigrationRequest) HasMaxBytesPerSecond() bool

HasMaxBytesPerSecond returns a boolean if a field has been set.

func (*StartMeshMigrationRequest) HasProjectIds ¶

func (o *StartMeshMigrationRequest) HasProjectIds() bool

HasProjectIds returns a boolean if a field has been set.

func (*StartMeshMigrationRequest) HasRepositoryIds ¶

func (o *StartMeshMigrationRequest) HasRepositoryIds() bool

HasRepositoryIds returns a boolean if a field has been set.

func (StartMeshMigrationRequest) MarshalJSON ¶

func (o StartMeshMigrationRequest) MarshalJSON() ([]byte, error)

func (*StartMeshMigrationRequest) SetAll ¶

func (o *StartMeshMigrationRequest) SetAll(v bool)

SetAll gets a reference to the given bool and assigns it to the All field.

func (*StartMeshMigrationRequest) SetMaxBytesPerSecond ¶

SetMaxBytesPerSecond gets a reference to the given StartMeshMigrationRequestMaxBytesPerSecond and assigns it to the MaxBytesPerSecond field.

func (*StartMeshMigrationRequest) SetProjectIds ¶

func (o *StartMeshMigrationRequest) SetProjectIds(v []int32)

SetProjectIds gets a reference to the given []int32 and assigns it to the ProjectIds field.

func (*StartMeshMigrationRequest) SetRepositoryIds ¶

func (o *StartMeshMigrationRequest) SetRepositoryIds(v []int32)

SetRepositoryIds gets a reference to the given []int32 and assigns it to the RepositoryIds field.

func (StartMeshMigrationRequest) ToMap ¶

func (o StartMeshMigrationRequest) ToMap() (map[string]interface{}, error)

type StartMeshMigrationRequestMaxBytesPerSecond ¶

type StartMeshMigrationRequestMaxBytesPerSecond struct {
	AsLong  *int64 `json:"asLong,omitempty"`
	Present *bool  `json:"present,omitempty"`
}

StartMeshMigrationRequestMaxBytesPerSecond struct for StartMeshMigrationRequestMaxBytesPerSecond

func NewStartMeshMigrationRequestMaxBytesPerSecond ¶

func NewStartMeshMigrationRequestMaxBytesPerSecond() *StartMeshMigrationRequestMaxBytesPerSecond

NewStartMeshMigrationRequestMaxBytesPerSecond instantiates a new StartMeshMigrationRequestMaxBytesPerSecond object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStartMeshMigrationRequestMaxBytesPerSecondWithDefaults ¶

func NewStartMeshMigrationRequestMaxBytesPerSecondWithDefaults() *StartMeshMigrationRequestMaxBytesPerSecond

NewStartMeshMigrationRequestMaxBytesPerSecondWithDefaults instantiates a new StartMeshMigrationRequestMaxBytesPerSecond object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StartMeshMigrationRequestMaxBytesPerSecond) GetAsLong ¶

GetAsLong returns the AsLong field value if set, zero value otherwise.

func (*StartMeshMigrationRequestMaxBytesPerSecond) GetAsLongOk ¶

GetAsLongOk returns a tuple with the AsLong field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartMeshMigrationRequestMaxBytesPerSecond) GetPresent ¶

GetPresent returns the Present field value if set, zero value otherwise.

func (*StartMeshMigrationRequestMaxBytesPerSecond) GetPresentOk ¶

GetPresentOk returns a tuple with the Present field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartMeshMigrationRequestMaxBytesPerSecond) HasAsLong ¶

HasAsLong returns a boolean if a field has been set.

func (*StartMeshMigrationRequestMaxBytesPerSecond) HasPresent ¶

HasPresent returns a boolean if a field has been set.

func (StartMeshMigrationRequestMaxBytesPerSecond) MarshalJSON ¶

func (*StartMeshMigrationRequestMaxBytesPerSecond) SetAsLong ¶

SetAsLong gets a reference to the given int64 and assigns it to the AsLong field.

func (*StartMeshMigrationRequestMaxBytesPerSecond) SetPresent ¶

SetPresent gets a reference to the given bool and assigns it to the Present field.

func (StartMeshMigrationRequestMaxBytesPerSecond) ToMap ¶

func (o StartMeshMigrationRequestMaxBytesPerSecond) ToMap() (map[string]interface{}, error)

type StreamDiff1200Response ¶

type StreamDiff1200Response struct {
	Values        []RestDiff `json:"values,omitempty"`
	Size          *float32   `json:"size,omitempty"`
	Limit         *float32   `json:"limit,omitempty"`
	IsLastPage    *bool      `json:"isLastPage,omitempty"`
	NextPageStart *int32     `json:"nextPageStart,omitempty"`
	Start         *int32     `json:"start,omitempty"`
}

StreamDiff1200Response struct for StreamDiff1200Response

func NewStreamDiff1200Response ¶

func NewStreamDiff1200Response() *StreamDiff1200Response

NewStreamDiff1200Response instantiates a new StreamDiff1200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStreamDiff1200ResponseWithDefaults ¶

func NewStreamDiff1200ResponseWithDefaults() *StreamDiff1200Response

NewStreamDiff1200ResponseWithDefaults instantiates a new StreamDiff1200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StreamDiff1200Response) GetIsLastPage ¶

func (o *StreamDiff1200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*StreamDiff1200Response) GetIsLastPageOk ¶

func (o *StreamDiff1200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamDiff1200Response) GetLimit ¶

func (o *StreamDiff1200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*StreamDiff1200Response) GetLimitOk ¶

func (o *StreamDiff1200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamDiff1200Response) GetNextPageStart ¶

func (o *StreamDiff1200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*StreamDiff1200Response) GetNextPageStartOk ¶

func (o *StreamDiff1200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamDiff1200Response) GetSize ¶

func (o *StreamDiff1200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*StreamDiff1200Response) GetSizeOk ¶

func (o *StreamDiff1200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamDiff1200Response) GetStart ¶

func (o *StreamDiff1200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*StreamDiff1200Response) GetStartOk ¶

func (o *StreamDiff1200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamDiff1200Response) GetValues ¶

func (o *StreamDiff1200Response) GetValues() []RestDiff

GetValues returns the Values field value if set, zero value otherwise.

func (*StreamDiff1200Response) GetValuesOk ¶

func (o *StreamDiff1200Response) GetValuesOk() ([]RestDiff, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamDiff1200Response) HasIsLastPage ¶

func (o *StreamDiff1200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*StreamDiff1200Response) HasLimit ¶

func (o *StreamDiff1200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*StreamDiff1200Response) HasNextPageStart ¶

func (o *StreamDiff1200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*StreamDiff1200Response) HasSize ¶

func (o *StreamDiff1200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*StreamDiff1200Response) HasStart ¶

func (o *StreamDiff1200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*StreamDiff1200Response) HasValues ¶

func (o *StreamDiff1200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (StreamDiff1200Response) MarshalJSON ¶

func (o StreamDiff1200Response) MarshalJSON() ([]byte, error)

func (*StreamDiff1200Response) SetIsLastPage ¶

func (o *StreamDiff1200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*StreamDiff1200Response) SetLimit ¶

func (o *StreamDiff1200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*StreamDiff1200Response) SetNextPageStart ¶

func (o *StreamDiff1200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*StreamDiff1200Response) SetSize ¶

func (o *StreamDiff1200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*StreamDiff1200Response) SetStart ¶

func (o *StreamDiff1200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*StreamDiff1200Response) SetValues ¶

func (o *StreamDiff1200Response) SetValues(v []RestDiff)

SetValues gets a reference to the given []RestDiff and assigns it to the Values field.

func (StreamDiff1200Response) ToMap ¶

func (o StreamDiff1200Response) ToMap() (map[string]interface{}, error)

type StreamFiles1200Response ¶

type StreamFiles1200Response struct {
	Values        []interface{} `json:"values,omitempty"`
	Size          *float32      `json:"size,omitempty"`
	Limit         *float32      `json:"limit,omitempty"`
	IsLastPage    *bool         `json:"isLastPage,omitempty"`
	NextPageStart *int32        `json:"nextPageStart,omitempty"`
	Start         *int32        `json:"start,omitempty"`
}

StreamFiles1200Response struct for StreamFiles1200Response

func NewStreamFiles1200Response ¶

func NewStreamFiles1200Response() *StreamFiles1200Response

NewStreamFiles1200Response instantiates a new StreamFiles1200Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStreamFiles1200ResponseWithDefaults ¶

func NewStreamFiles1200ResponseWithDefaults() *StreamFiles1200Response

NewStreamFiles1200ResponseWithDefaults instantiates a new StreamFiles1200Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StreamFiles1200Response) GetIsLastPage ¶

func (o *StreamFiles1200Response) GetIsLastPage() bool

GetIsLastPage returns the IsLastPage field value if set, zero value otherwise.

func (*StreamFiles1200Response) GetIsLastPageOk ¶

func (o *StreamFiles1200Response) GetIsLastPageOk() (*bool, bool)

GetIsLastPageOk returns a tuple with the IsLastPage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamFiles1200Response) GetLimit ¶

func (o *StreamFiles1200Response) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*StreamFiles1200Response) GetLimitOk ¶

func (o *StreamFiles1200Response) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamFiles1200Response) GetNextPageStart ¶

func (o *StreamFiles1200Response) GetNextPageStart() int32

GetNextPageStart returns the NextPageStart field value if set, zero value otherwise.

func (*StreamFiles1200Response) GetNextPageStartOk ¶

func (o *StreamFiles1200Response) GetNextPageStartOk() (*int32, bool)

GetNextPageStartOk returns a tuple with the NextPageStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamFiles1200Response) GetSize ¶

func (o *StreamFiles1200Response) GetSize() float32

GetSize returns the Size field value if set, zero value otherwise.

func (*StreamFiles1200Response) GetSizeOk ¶

func (o *StreamFiles1200Response) GetSizeOk() (*float32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamFiles1200Response) GetStart ¶

func (o *StreamFiles1200Response) GetStart() int32

GetStart returns the Start field value if set, zero value otherwise.

func (*StreamFiles1200Response) GetStartOk ¶

func (o *StreamFiles1200Response) GetStartOk() (*int32, bool)

GetStartOk returns a tuple with the Start field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamFiles1200Response) GetValues ¶

func (o *StreamFiles1200Response) GetValues() []interface{}

GetValues returns the Values field value if set, zero value otherwise.

func (*StreamFiles1200Response) GetValuesOk ¶

func (o *StreamFiles1200Response) GetValuesOk() ([]interface{}, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamFiles1200Response) HasIsLastPage ¶

func (o *StreamFiles1200Response) HasIsLastPage() bool

HasIsLastPage returns a boolean if a field has been set.

func (*StreamFiles1200Response) HasLimit ¶

func (o *StreamFiles1200Response) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*StreamFiles1200Response) HasNextPageStart ¶

func (o *StreamFiles1200Response) HasNextPageStart() bool

HasNextPageStart returns a boolean if a field has been set.

func (*StreamFiles1200Response) HasSize ¶

func (o *StreamFiles1200Response) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*StreamFiles1200Response) HasStart ¶

func (o *StreamFiles1200Response) HasStart() bool

HasStart returns a boolean if a field has been set.

func (*StreamFiles1200Response) HasValues ¶

func (o *StreamFiles1200Response) HasValues() bool

HasValues returns a boolean if a field has been set.

func (StreamFiles1200Response) MarshalJSON ¶

func (o StreamFiles1200Response) MarshalJSON() ([]byte, error)

func (*StreamFiles1200Response) SetIsLastPage ¶

func (o *StreamFiles1200Response) SetIsLastPage(v bool)

SetIsLastPage gets a reference to the given bool and assigns it to the IsLastPage field.

func (*StreamFiles1200Response) SetLimit ¶

func (o *StreamFiles1200Response) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*StreamFiles1200Response) SetNextPageStart ¶

func (o *StreamFiles1200Response) SetNextPageStart(v int32)

SetNextPageStart gets a reference to the given int32 and assigns it to the NextPageStart field.

func (*StreamFiles1200Response) SetSize ¶

func (o *StreamFiles1200Response) SetSize(v float32)

SetSize gets a reference to the given float32 and assigns it to the Size field.

func (*StreamFiles1200Response) SetStart ¶

func (o *StreamFiles1200Response) SetStart(v int32)

SetStart gets a reference to the given int32 and assigns it to the Start field.

func (*StreamFiles1200Response) SetValues ¶

func (o *StreamFiles1200Response) SetValues(v []interface{})

SetValues gets a reference to the given []interface{} and assigns it to the Values field.

func (StreamFiles1200Response) ToMap ¶

func (o StreamFiles1200Response) ToMap() (map[string]interface{}, error)

type SystemMaintenanceAPICancelExportJobRequest ¶

type SystemMaintenanceAPICancelExportJobRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPICancelExportJobRequest) Execute ¶

type SystemMaintenanceAPICancelImportJobRequest ¶

type SystemMaintenanceAPICancelImportJobRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPICancelImportJobRequest) Execute ¶

type SystemMaintenanceAPICancelMeshMigrationJobRequest ¶

type SystemMaintenanceAPICancelMeshMigrationJobRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPICancelMeshMigrationJobRequest) Execute ¶

type SystemMaintenanceAPIClearDefaultBranchRequest ¶

type SystemMaintenanceAPIClearDefaultBranchRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIClearDefaultBranchRequest) Execute ¶

type SystemMaintenanceAPIClearSenderAddressRequest ¶

type SystemMaintenanceAPIClearSenderAddressRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIClearSenderAddressRequest) Execute ¶

type SystemMaintenanceAPIConnectivityRequest ¶

type SystemMaintenanceAPIConnectivityRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIConnectivityRequest) Execute ¶

type SystemMaintenanceAPICreateHookScriptRequest ¶

type SystemMaintenanceAPICreateHookScriptRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPICreateHookScriptRequest) Content ¶

The hook script contents.

func (SystemMaintenanceAPICreateHookScriptRequest) Description ¶

A description of the hook script (useful when querying registered hook scripts).

func (SystemMaintenanceAPICreateHookScriptRequest) Execute ¶

func (SystemMaintenanceAPICreateHookScriptRequest) Name ¶

The name of the hook script (useful when querying registered hook scripts).

func (SystemMaintenanceAPICreateHookScriptRequest) Type_ ¶

The type of hook script; supported values are \\\&quot;PRE\\\&quot; for pre-receive hooks and \\\&quot;POST\\\&quot; for post-receive hooks.

type SystemMaintenanceAPIDelete2Request ¶

type SystemMaintenanceAPIDelete2Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIDelete2Request) Execute ¶

func (SystemMaintenanceAPIDelete2Request) Force ¶

type SystemMaintenanceAPIDelete6Request ¶

type SystemMaintenanceAPIDelete6Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIDelete6Request) Execute ¶

type SystemMaintenanceAPIDeleteAvatarRequest ¶

type SystemMaintenanceAPIDeleteAvatarRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIDeleteAvatarRequest) Execute ¶

type SystemMaintenanceAPIDeleteBannerRequest ¶

type SystemMaintenanceAPIDeleteBannerRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIDeleteBannerRequest) Execute ¶

type SystemMaintenanceAPIDeleteHookScriptRequest ¶

type SystemMaintenanceAPIDeleteHookScriptRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIDeleteHookScriptRequest) Execute ¶

type SystemMaintenanceAPIDeleteMailConfigRequest ¶

type SystemMaintenanceAPIDeleteMailConfigRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIDeleteMailConfigRequest) Execute ¶

type SystemMaintenanceAPIDismissRetentionConfigReviewNotificationRequest ¶

type SystemMaintenanceAPIDismissRetentionConfigReviewNotificationRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIDismissRetentionConfigReviewNotificationRequest) Execute ¶

type SystemMaintenanceAPIGet2Request ¶

type SystemMaintenanceAPIGet2Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGet2Request) Execute ¶

type SystemMaintenanceAPIGet4Request ¶

type SystemMaintenanceAPIGet4Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGet4Request) Execute ¶

type SystemMaintenanceAPIGetActiveMeshMigrationSummaryRequest ¶

type SystemMaintenanceAPIGetActiveMeshMigrationSummaryRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetActiveMeshMigrationSummaryRequest) Execute ¶

type SystemMaintenanceAPIGetAllMeshMigrationSummariesRequest ¶

type SystemMaintenanceAPIGetAllMeshMigrationSummariesRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetAllMeshMigrationSummariesRequest) Execute ¶

func (SystemMaintenanceAPIGetAllMeshMigrationSummariesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SystemMaintenanceAPIGetAllMeshMigrationSummariesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SystemMaintenanceAPIGetAllRateLimitSettingsRequest ¶

type SystemMaintenanceAPIGetAllRateLimitSettingsRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetAllRateLimitSettingsRequest) Execute ¶

func (SystemMaintenanceAPIGetAllRateLimitSettingsRequest) Filter ¶

Optional filter

func (SystemMaintenanceAPIGetAllRateLimitSettingsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SystemMaintenanceAPIGetAllRateLimitSettingsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SystemMaintenanceAPIGetAllRegisteredMeshNodesRequest ¶

type SystemMaintenanceAPIGetAllRegisteredMeshNodesRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetAllRegisteredMeshNodesRequest) Execute ¶

type SystemMaintenanceAPIGetApplicationPropertiesRequest ¶

type SystemMaintenanceAPIGetApplicationPropertiesRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetApplicationPropertiesRequest) Execute ¶

type SystemMaintenanceAPIGetBannerRequest ¶

type SystemMaintenanceAPIGetBannerRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetBannerRequest) Execute ¶

type SystemMaintenanceAPIGetControlPlanePublicKeyRequest ¶

type SystemMaintenanceAPIGetControlPlanePublicKeyRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetControlPlanePublicKeyRequest) Execute ¶

type SystemMaintenanceAPIGetDefaultBranchRequest ¶

type SystemMaintenanceAPIGetDefaultBranchRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetDefaultBranchRequest) Execute ¶

type SystemMaintenanceAPIGetExportJobMessagesRequest ¶

type SystemMaintenanceAPIGetExportJobMessagesRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetExportJobMessagesRequest) Execute ¶

func (SystemMaintenanceAPIGetExportJobMessagesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SystemMaintenanceAPIGetExportJobMessagesRequest) Severity ¶

The severity to include in the results

func (SystemMaintenanceAPIGetExportJobMessagesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (SystemMaintenanceAPIGetExportJobMessagesRequest) Subject ¶

The subject

type SystemMaintenanceAPIGetExportJobRequest ¶

type SystemMaintenanceAPIGetExportJobRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetExportJobRequest) Execute ¶

type SystemMaintenanceAPIGetGlobalSettingsRequest ¶

type SystemMaintenanceAPIGetGlobalSettingsRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetGlobalSettingsRequest) Execute ¶

type SystemMaintenanceAPIGetHistoryRequest ¶

type SystemMaintenanceAPIGetHistoryRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetHistoryRequest) Execute ¶

func (SystemMaintenanceAPIGetHistoryRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SystemMaintenanceAPIGetHistoryRequest) Order ¶

An optional sort category to arrange the results in descending order

func (SystemMaintenanceAPIGetHistoryRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SystemMaintenanceAPIGetHookScriptRequest ¶

type SystemMaintenanceAPIGetHookScriptRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetHookScriptRequest) Execute ¶

type SystemMaintenanceAPIGetImportJobMessagesRequest ¶

type SystemMaintenanceAPIGetImportJobMessagesRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetImportJobMessagesRequest) Execute ¶

func (SystemMaintenanceAPIGetImportJobMessagesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SystemMaintenanceAPIGetImportJobMessagesRequest) Severity ¶

The severity to include in the results

func (SystemMaintenanceAPIGetImportJobMessagesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (SystemMaintenanceAPIGetImportJobMessagesRequest) Subject ¶

The subject

type SystemMaintenanceAPIGetImportJobRequest ¶

type SystemMaintenanceAPIGetImportJobRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetImportJobRequest) Execute ¶

type SystemMaintenanceAPIGetInformationRequest ¶

type SystemMaintenanceAPIGetInformationRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetInformationRequest) Execute ¶

type SystemMaintenanceAPIGetLabelRequest ¶

type SystemMaintenanceAPIGetLabelRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetLabelRequest) Execute ¶

type SystemMaintenanceAPIGetLabelablesRequest ¶

type SystemMaintenanceAPIGetLabelablesRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetLabelablesRequest) Execute ¶

func (SystemMaintenanceAPIGetLabelablesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SystemMaintenanceAPIGetLabelablesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (SystemMaintenanceAPIGetLabelablesRequest) Type_ ¶

the type of labelables to be returned. Supported values: REPOSITORY

type SystemMaintenanceAPIGetLabelsRequest ¶

type SystemMaintenanceAPIGetLabelsRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetLabelsRequest) Execute ¶

func (SystemMaintenanceAPIGetLabelsRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SystemMaintenanceAPIGetLabelsRequest) Prefix ¶

(optional) prefix to filter the labels on.

func (SystemMaintenanceAPIGetLabelsRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

type SystemMaintenanceAPIGetLevelRequest ¶

type SystemMaintenanceAPIGetLevelRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetLevelRequest) Execute ¶

type SystemMaintenanceAPIGetMailConfigRequest ¶

type SystemMaintenanceAPIGetMailConfigRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetMailConfigRequest) Execute ¶

type SystemMaintenanceAPIGetMeshMigrationJobMessagesRequest ¶

type SystemMaintenanceAPIGetMeshMigrationJobMessagesRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetMeshMigrationJobMessagesRequest) Execute ¶

func (SystemMaintenanceAPIGetMeshMigrationJobMessagesRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SystemMaintenanceAPIGetMeshMigrationJobMessagesRequest) Severity ¶

The severity to include in the results

func (SystemMaintenanceAPIGetMeshMigrationJobMessagesRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (SystemMaintenanceAPIGetMeshMigrationJobMessagesRequest) Subject ¶

The subject

type SystemMaintenanceAPIGetMeshMigrationJobRequest ¶

type SystemMaintenanceAPIGetMeshMigrationJobRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetMeshMigrationJobRequest) Execute ¶

type SystemMaintenanceAPIGetMeshMigrationJobSummaryRequest ¶

type SystemMaintenanceAPIGetMeshMigrationJobSummaryRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetMeshMigrationJobSummaryRequest) Execute ¶

type SystemMaintenanceAPIGetRegisteredMeshNodeByIdRequest ¶

type SystemMaintenanceAPIGetRegisteredMeshNodeByIdRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetRegisteredMeshNodeByIdRequest) Execute ¶

type SystemMaintenanceAPIGetRepositoryArchivePolicyRequest ¶

type SystemMaintenanceAPIGetRepositoryArchivePolicyRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetRepositoryArchivePolicyRequest) Execute ¶

type SystemMaintenanceAPIGetRepositoryDeletePolicyRequest ¶

type SystemMaintenanceAPIGetRepositoryDeletePolicyRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetRepositoryDeletePolicyRequest) Execute ¶

type SystemMaintenanceAPIGetRootLevelRequest ¶

type SystemMaintenanceAPIGetRootLevelRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetRootLevelRequest) Execute ¶

type SystemMaintenanceAPIGetSenderAddressRequest ¶

type SystemMaintenanceAPIGetSenderAddressRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetSenderAddressRequest) Execute ¶

type SystemMaintenanceAPIGetSettings2Request ¶

type SystemMaintenanceAPIGetSettings2Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetSettings2Request) Execute ¶

type SystemMaintenanceAPIGetSupportZipRequest ¶

type SystemMaintenanceAPIGetSupportZipRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetSupportZipRequest) Execute ¶

type SystemMaintenanceAPIGetSupportZipsRequest ¶

type SystemMaintenanceAPIGetSupportZipsRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetSupportZipsRequest) Execute ¶

type SystemMaintenanceAPIGetSupportedKeyTypesRequest ¶

type SystemMaintenanceAPIGetSupportedKeyTypesRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetSupportedKeyTypesRequest) Execute ¶

type SystemMaintenanceAPIGetUserRequest ¶

type SystemMaintenanceAPIGetUserRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetUserRequest) Execute ¶

type SystemMaintenanceAPIGetUserSettingsRequest ¶

type SystemMaintenanceAPIGetUserSettingsRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetUserSettingsRequest) Execute ¶

type SystemMaintenanceAPIGetUsers2Request ¶

type SystemMaintenanceAPIGetUsers2Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIGetUsers2Request) Execute ¶

func (SystemMaintenanceAPIGetUsers2Request) Filter ¶

Return only users, whose username, name or email address &lt;i&gt;contain&lt;/i&gt; the &lt;code&gt; filter&lt;/code&gt; value

func (SystemMaintenanceAPIGetUsers2Request) Group ¶

return only users who are members of the given group

func (SystemMaintenanceAPIGetUsers2Request) Permission ¶

The \&quot;root\&quot; of a permission filter, whose value must be a valid global, project, or repository permission. Additional filter parameters referring to this filter that specify the resource (project or repository) to apply the filter to must be prefixed with &lt;code&gt;permission.&lt;/code&gt;. See the section \&quot;Permission Filters\&quot; above for more details.

func (SystemMaintenanceAPIGetUsers2Request) PermissionN ¶

The \&quot;root\&quot; of a single permission filter, similar to the &lt;code&gt;permission&lt;/code&gt; parameter, where \&quot;N\&quot; is a natural number starting from 1. This allows clients to specify multiple permission filters, by providing consecutive filters as &lt;code&gt;permission.1&lt;/code&gt;, &lt;code&gt;permission.2&lt;/code&gt; etc. Note that the filters numbering has to start with 1 and be continuous for all filters to be processed. The total allowed number of permission filters is 50 and all filters exceeding that limit will be dropped. See the section \&quot;Permission Filters\&quot; above for more details on how the permission filters are processed.

type SystemMaintenanceAPIPreviewExportRequest ¶

type SystemMaintenanceAPIPreviewExportRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIPreviewExportRequest) Execute ¶

func (SystemMaintenanceAPIPreviewExportRequest) RestExportRequest ¶

the export request

type SystemMaintenanceAPIPreviewMeshMigrationRequest ¶

type SystemMaintenanceAPIPreviewMeshMigrationRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIPreviewMeshMigrationRequest) Execute ¶

func (SystemMaintenanceAPIPreviewMeshMigrationRequest) RestMeshMigrationRequest ¶

The export request

type SystemMaintenanceAPIReadRequest ¶

type SystemMaintenanceAPIReadRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIReadRequest) Execute ¶

type SystemMaintenanceAPIRegisterNewMeshNodeRequest ¶

type SystemMaintenanceAPIRegisterNewMeshNodeRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIRegisterNewMeshNodeRequest) Execute ¶

func (SystemMaintenanceAPIRegisterNewMeshNodeRequest) RestMeshNode ¶

The request specifying the new Mesh node.

type SystemMaintenanceAPISearchMeshMigrationReposRequest ¶

type SystemMaintenanceAPISearchMeshMigrationReposRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISearchMeshMigrationReposRequest) Execute ¶

func (SystemMaintenanceAPISearchMeshMigrationReposRequest) Limit ¶

Number of items to return. If not passed, a page size of 25 is used.

func (SystemMaintenanceAPISearchMeshMigrationReposRequest) MigrationId ¶

(optional) The currently active migration job. If not passed, this is looked up internally.

func (SystemMaintenanceAPISearchMeshMigrationReposRequest) Name ¶

(optional) The repository name

func (SystemMaintenanceAPISearchMeshMigrationReposRequest) ProjectKey ¶

(optional) The project key. Can be specified more than once to filter by more than one project.

func (SystemMaintenanceAPISearchMeshMigrationReposRequest) Remote ¶

(optional) Whether the repository has been fully migrated to Mesh. If not present, all repositories are considered regardless of where they&#39;re located.

func (SystemMaintenanceAPISearchMeshMigrationReposRequest) Start ¶

Start number for the page (inclusive). If not passed, first page is assumed.

func (SystemMaintenanceAPISearchMeshMigrationReposRequest) State ¶

(optional) If a migration is active, the MeshMigrationQueueState state to filter results by. Can be specified more than once to filter by more than one state.

type SystemMaintenanceAPIService ¶

type SystemMaintenanceAPIService service

SystemMaintenanceAPIService SystemMaintenanceAPI service

func (*SystemMaintenanceAPIService) CancelExportJob ¶

CancelExportJob Cancel export job

Requests the cancellation of an export job.

The request to cancel a job will be processed successfully if the job is actually still running. If it has already finished (successfully or with errors) or if it has already been canceled before, then an error will be returned.

There might be a small delay between accepting the request and actually cancelling the job. In most cases, the delay will be close to instantaneously. In the unlikely case of communication issues across a cluster, it can however take a few seconds to cancel a job.

A client should always actively query the job status to confirm that a job has been successfully canceled.

The authenticated user must have **ADMIN** permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId the ID of the job to cancel
@return SystemMaintenanceAPICancelExportJobRequest

func (*SystemMaintenanceAPIService) CancelExportJobExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) CancelImportJob ¶

CancelImportJob Cancel import job

Requests the cancellation of an import job.

The request to cancel a job will be processed successfully if the job is actually still running. If it has already finished (successfully or with errors) or if it has already been canceled before, then an error will be returned.

Note that import jobs are not canceled as instantaneously as export jobs. Rather, once the request has been accepted, there are a number of checkpoints at which the job will actually apply it and stop. This is to keep the system in a reasonably consistent state:

- After the current fork hierarchy has been imported and verified. - Before the next repository is imported. - Before the next pull request is imported.

A client should always actively query the job status to confirm that a job has been successfully canceled.

The authenticated user must have **ADMIN** permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId the ID of the job to cancel
@return SystemMaintenanceAPICancelImportJobRequest

func (*SystemMaintenanceAPIService) CancelImportJobExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) CancelMeshMigrationJob ¶

CancelMeshMigrationJob Cancel Mesh migration job

Requests the cancellation of a migration job.

The request to cancel a job will be processed successfully if the job is actually still running. If it has already finished (successfully or with errors) or if it has already been canceled before, then an error will be returned.

There might be a small delay between accepting the request and actually cancelling the job. In most cases, the delay will be close to instantaneously. In the unlikely case of communication issues across a cluster, it can however take a few seconds to cancel a job.

A client should always actively query the job status to confirm that a job has been successfully canceled.

The authenticated user must have **SYS_ADMIN** permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job to cancel
@return SystemMaintenanceAPICancelMeshMigrationJobRequest

func (*SystemMaintenanceAPIService) CancelMeshMigrationJobExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) ClearDefaultBranch ¶

ClearDefaultBranch Clear default branch

Clears the global default branch, which is used when creating new repositories if an explicit default branch is not specified, if one has been configured.

The authenticated user must have <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIClearDefaultBranchRequest

func (*SystemMaintenanceAPIService) ClearDefaultBranchExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) ClearSenderAddress ¶

ClearSenderAddress Update mail configuration

Clears the server email address.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIClearSenderAddressRequest

func (*SystemMaintenanceAPIService) ClearSenderAddressExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) Connectivity ¶

Connectivity Generate Mesh connectivity report

Generates a connectivity report between the Bitbucket node(s) and the Mesh node(s).

The authenticated user must have **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIConnectivityRequest

func (*SystemMaintenanceAPIService) ConnectivityExecute ¶

Execute executes the request

@return RestMeshConnectivityReport

func (*SystemMaintenanceAPIService) CreateHookScript ¶

CreateHookScript Create a new hook script

Create a new hook script.

This endpoint requires **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPICreateHookScriptRequest

func (*SystemMaintenanceAPIService) CreateHookScriptExecute ¶

Execute executes the request

@return RestHookScript

func (*SystemMaintenanceAPIService) Delete2 ¶

Delete2 Delete Mesh node

Delete a Mesh node ¶

The authenticated user must have **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return SystemMaintenanceAPIDelete2Request

func (*SystemMaintenanceAPIService) Delete2Execute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) Delete6 ¶

Delete6 Delete user specific rate limit settings

Deletes the user-specific rate limit settings for the given user.

The authenticated user must have <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug.
@return SystemMaintenanceAPIDelete6Request

func (*SystemMaintenanceAPIService) Delete6Execute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) DeleteAvatar ¶

DeleteAvatar Delete user avatar

Delete the avatar associated to a user.

Users are always allowed to delete their own avatar. To delete someone else's avatar the authenticated user must have global <strong>ADMIN</strong> permission, or global <strong>SYS_ADMIN</strong> permission to update a <strong>SYS_ADMIN</strong> user's avatar.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug
@return SystemMaintenanceAPIDeleteAvatarRequest

func (*SystemMaintenanceAPIService) DeleteAvatarExecute ¶

Execute executes the request

@return RestNamedLink

func (*SystemMaintenanceAPIService) DeleteBanner ¶

DeleteBanner Delete announcement banner

Deletes a banner, if one is present in the database.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIDeleteBannerRequest

func (*SystemMaintenanceAPIService) DeleteBannerExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) DeleteHookScript ¶

DeleteHookScript Delete a hook script.

Deletes a registered hook script.

This endpoint requires **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scriptId The ID of the hook script to delete
@return SystemMaintenanceAPIDeleteHookScriptRequest

func (*SystemMaintenanceAPIService) DeleteHookScriptExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) DeleteMailConfig ¶

DeleteMailConfig Delete mail configuration

Deletes the current mail configuration.

The authenticated user must have the <strong>SYS_ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIDeleteMailConfigRequest

func (*SystemMaintenanceAPIService) DeleteMailConfigExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) DismissRetentionConfigReviewNotification ¶

DismissRetentionConfigReviewNotification Dismiss retention config notification

Dismisses the retention config review notification displayed by the audit plugin for the user that's currently logged in.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIDismissRetentionConfigReviewNotificationRequest

func (*SystemMaintenanceAPIService) DismissRetentionConfigReviewNotificationExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) Get2 ¶

Get2 Get license details

Retrieves details about the current license, as well as the current status of the system with regards to the installed license. The status includes the current number of users applied toward the license limit, as well as any status messages about the license (warnings about expiry or user counts exceeding license limits).

The authenticated user must have <b>ADMIN</b> permission. Unauthenticated users, and non-administrators, are not permitted to access license details.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGet2Request

func (*SystemMaintenanceAPIService) Get2Execute ¶

Execute executes the request

@return RestBitbucketLicense

func (*SystemMaintenanceAPIService) Get4 ¶

Get4 Get user specific rate limit settings

Retrieves the user-specific rate limit settings for the given user.

To call this resource, the user must be authenticated and either have <strong>ADMIN</strong> permission or be the same user as the one whose settings are requested. A user with <strong>ADMIN</strong> permission cannot get the settings of a user with <strong>SYS_ADMIN</strong> permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug.
@return SystemMaintenanceAPIGet4Request

func (*SystemMaintenanceAPIService) Get4Execute ¶

Execute executes the request

@return RestUserRateLimitSettings

func (*SystemMaintenanceAPIService) GetActiveMeshMigrationSummary ¶

GetActiveMeshMigrationSummary Get summary for Mesh migration job

Gets the summary, including the queue status and progress, of the currently active Mesh migration job.

The authenticated user must have **SYS_ADMIN** permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetActiveMeshMigrationSummaryRequest

func (*SystemMaintenanceAPIService) GetActiveMeshMigrationSummaryExecute ¶

Execute executes the request

@return RestMeshMigrationSummary

func (*SystemMaintenanceAPIService) GetAllMeshMigrationSummaries ¶

GetAllMeshMigrationSummaries Get all Mesh migration job summaries

Retrieve a page of Mesh migration job summaries. Jobs are ordered by when they were started, newest first.

The authenticated user must have **SYS_ADMIN** permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetAllMeshMigrationSummariesRequest

func (*SystemMaintenanceAPIService) GetAllMeshMigrationSummariesExecute ¶

Execute executes the request

@return GetAllMeshMigrationSummaries200Response

func (*SystemMaintenanceAPIService) GetAllRateLimitSettings ¶

GetAllRateLimitSettings Get rate limit settings for user

Retrieves the user-specific rate limit settings for the given user.

The authenticated user must have <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetAllRateLimitSettingsRequest

func (*SystemMaintenanceAPIService) GetAllRateLimitSettingsExecute ¶

Execute executes the request

@return GetAllRateLimitSettings200Response

func (*SystemMaintenanceAPIService) GetAllRegisteredMeshNodes ¶

GetAllRegisteredMeshNodes Get all registered Mesh nodes

Get all the registered Mesh nodes.

The authenticated user must have **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetAllRegisteredMeshNodesRequest

func (*SystemMaintenanceAPIService) GetAllRegisteredMeshNodesExecute ¶

Execute executes the request

@return RestMeshNode

func (*SystemMaintenanceAPIService) GetApplicationProperties ¶

GetApplicationProperties Get application properties

Retrieve version information and other application properties.

No authentication is required to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetApplicationPropertiesRequest

func (*SystemMaintenanceAPIService) GetApplicationPropertiesExecute ¶

Execute executes the request

@return RestApplicationProperties

func (*SystemMaintenanceAPIService) GetBanner ¶

GetBanner Get announcement banner

Gets the announcement banner, if one exists and is available to the user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetBannerRequest

func (*SystemMaintenanceAPIService) GetBannerExecute ¶

Execute executes the request

@return RestAnnouncementBanner

func (*SystemMaintenanceAPIService) GetControlPlanePublicKey ¶

GetControlPlanePublicKey Get the control plane PEM

Obtain the control plane PEM.

The authenticated user must have **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetControlPlanePublicKeyRequest

func (*SystemMaintenanceAPIService) GetControlPlanePublicKeyExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) GetDefaultBranch ¶

GetDefaultBranch Get the default branch

Retrieves the configured global default branch, which is used when creating new repositories if an explicit default branch is not specified.

The user must be authenticated to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetDefaultBranchRequest

func (*SystemMaintenanceAPIService) GetDefaultBranchExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) GetExportJob ¶

GetExportJob Get export job details

Gets the details, including the current status and progress, of the export job identified by the given ID.

The authenticated user must have **ADMIN** permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId the ID of the job
@return SystemMaintenanceAPIGetExportJobRequest

func (*SystemMaintenanceAPIService) GetExportJobExecute ¶

Execute executes the request

@return RestJob

func (*SystemMaintenanceAPIService) GetExportJobMessages ¶

GetExportJobMessages Get job messages

Gets the messages generated by the job.

Without any filter, all messages will be returned, but the response can optionally be filtered for the following severities. The severity parameter can be repeated to include multiple severities in one response.

- INFO - WARN - ERROR

The authenticated user must have **ADMIN** permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job
@return SystemMaintenanceAPIGetExportJobMessagesRequest

func (*SystemMaintenanceAPIService) GetExportJobMessagesExecute ¶

Execute executes the request

@return GetExportJobMessages200Response

func (*SystemMaintenanceAPIService) GetGlobalSettings ¶

GetGlobalSettings Get global SSH key settings

Gets the global settings that enforce the maximum expiry of SSH keys and restrictions on SSH key types.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetGlobalSettingsRequest

func (*SystemMaintenanceAPIService) GetGlobalSettingsExecute ¶

Execute executes the request

@return RestSshKeySettings

func (*SystemMaintenanceAPIService) GetHistory ¶

GetHistory Get rate limit history

Retrieves the recent rate limit history for the instance.

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetHistoryRequest

func (*SystemMaintenanceAPIService) GetHistoryExecute ¶

Execute executes the request

@return GetHistory200Response

func (*SystemMaintenanceAPIService) GetHookScript ¶

GetHookScript Get a hook script

Retrieves a hook script by ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scriptId The ID of the hook script to retrieve
@return SystemMaintenanceAPIGetHookScriptRequest

func (*SystemMaintenanceAPIService) GetHookScriptExecute ¶

Execute executes the request

@return RestHookScript

func (*SystemMaintenanceAPIService) GetImportJob ¶

GetImportJob Get import job status

Gets the details, including the current status and progress, of the import job identified by the given ID.

The authenticated user must have **ADMIN** permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job
@return SystemMaintenanceAPIGetImportJobRequest

func (*SystemMaintenanceAPIService) GetImportJobExecute ¶

Execute executes the request

@return RestJob

func (*SystemMaintenanceAPIService) GetImportJobMessages ¶

GetImportJobMessages Get import job messages

Gets the messages generated by the job.

Without any filter, all messages will be returned, but the response can optionally be filtered for the following severities. The severity parameter can be repeated to include multiple severities in one response.

- INFO - WARN - ERROR

The authenticated user must have **ADMIN** permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job
@return SystemMaintenanceAPIGetImportJobMessagesRequest

func (*SystemMaintenanceAPIService) GetImportJobMessagesExecute ¶

Execute executes the request

@return GetExportJobMessages200Response

func (*SystemMaintenanceAPIService) GetInformation ¶

GetInformation Get cluster node information

Gets information about the nodes that currently make up the stash cluster.

The authenticated user must have the <strong>SYS_ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetInformationRequest

func (*SystemMaintenanceAPIService) GetInformationExecute ¶

Execute executes the request

@return RestClusterInformation

func (*SystemMaintenanceAPIService) GetLabel ¶

GetLabel Get label

Returns a label.

The user needs to be authenticated to use this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param labelName the label name
@return SystemMaintenanceAPIGetLabelRequest

func (*SystemMaintenanceAPIService) GetLabelExecute ¶

Execute executes the request

@return RestLabel

func (*SystemMaintenanceAPIService) GetLabelables ¶

GetLabelables Get labelables for label

Returns a page of labelables for a given label.

Only labelables that the authenticated user has view access to will be returned.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param labelName The page of labelables.
@return SystemMaintenanceAPIGetLabelablesRequest

func (*SystemMaintenanceAPIService) GetLabelablesExecute ¶

Execute executes the request

@return GetLabelables200Response

func (*SystemMaintenanceAPIService) GetLabels ¶

GetLabels Get all labels

Returns a paged response of all the labels in the system.

The user needs to be authenticated to use this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetLabelsRequest

func (*SystemMaintenanceAPIService) GetLabelsExecute ¶

Execute executes the request

@return GetLabels200Response

func (*SystemMaintenanceAPIService) GetLevel ¶

GetLevel Get current log level

Retrieve the current log level for a given logger.

The authenticated user must have <strong>ADMIN</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param loggerName The name of the logger.
@return SystemMaintenanceAPIGetLevelRequest

func (*SystemMaintenanceAPIService) GetLevelExecute ¶

Execute executes the request

@return RestLogLevel

func (*SystemMaintenanceAPIService) GetMailConfig ¶

GetMailConfig Get mail configuration

Retrieves the current mail configuration.

The authenticated user must have the <strong>SYS_ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetMailConfigRequest

func (*SystemMaintenanceAPIService) GetMailConfigExecute ¶

Execute executes the request

@return RestMailConfiguration

func (*SystemMaintenanceAPIService) GetMeshMigrationJob ¶

GetMeshMigrationJob Get Mesh migration job details

Gets the details, including the current status and progress, of the job identified by the given ID.

The authenticated user must have **SYS_ADMIN** permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job
@return SystemMaintenanceAPIGetMeshMigrationJobRequest

func (*SystemMaintenanceAPIService) GetMeshMigrationJobExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) GetMeshMigrationJobMessages ¶

GetMeshMigrationJobMessages Get Mesh migration job messages

Gets the messages generated by the job.

Without any filter, all messages will be returned, but the response can optionally be filtered for the following severities. The severity parameter can be repeated to include multiple severities in one response.

  • INFO
  • WARN
  • ERROR

The authenticated user must have **SYS_ADMIN** permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job
@return SystemMaintenanceAPIGetMeshMigrationJobMessagesRequest

func (*SystemMaintenanceAPIService) GetMeshMigrationJobMessagesExecute ¶

Execute executes the request

@return GetExportJobMessages200Response

func (*SystemMaintenanceAPIService) GetMeshMigrationJobSummary ¶

GetMeshMigrationJobSummary Get Mesh migration job summary

Gets the summary, including the queue status and progress, of a Mesh migration job.

The authenticated user must have **SYS_ADMIN** permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId The ID of the job
@return SystemMaintenanceAPIGetMeshMigrationJobSummaryRequest

func (*SystemMaintenanceAPIService) GetMeshMigrationJobSummaryExecute ¶

Execute executes the request

@return RestMeshMigrationSummary

func (*SystemMaintenanceAPIService) GetRegisteredMeshNodeById ¶

GetRegisteredMeshNodeById Get Mesh node

Get the registered Mesh node that matches the supplied ID.

The authenticated user must have **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The ID of the Mesh node.
@return SystemMaintenanceAPIGetRegisteredMeshNodeByIdRequest

func (*SystemMaintenanceAPIService) GetRegisteredMeshNodeByIdExecute ¶

Execute executes the request

@return RestMeshNode

func (*SystemMaintenanceAPIService) GetRepositoryArchivePolicy ¶

GetRepositoryArchivePolicy Get repository archive policy

Retrieves the repository archive policy for the instance.

The user must be authenticated to access this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetRepositoryArchivePolicyRequest

func (*SystemMaintenanceAPIService) GetRepositoryArchivePolicyExecute ¶

Execute executes the request

@return RestRepositoryPolicy

func (*SystemMaintenanceAPIService) GetRepositoryDeletePolicy ¶

GetRepositoryDeletePolicy Get repository delete policy

Retrieves the repository delete policy for the instance.

The user must be authenticated to access this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetRepositoryDeletePolicyRequest

func (*SystemMaintenanceAPIService) GetRepositoryDeletePolicyExecute ¶

Execute executes the request

@return RestRepositoryPolicy

func (*SystemMaintenanceAPIService) GetRootLevel ¶

GetRootLevel Get root log level

Retrieve the current log level for the root logger.

The authenticated user must have <strong>ADMIN</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetRootLevelRequest

func (*SystemMaintenanceAPIService) GetRootLevelExecute ¶

Execute executes the request

@return RestLogLevel

func (*SystemMaintenanceAPIService) GetSenderAddress ¶

GetSenderAddress Get server mail address

Retrieves the server email address

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetSenderAddressRequest

func (*SystemMaintenanceAPIService) GetSenderAddressExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) GetSettings2 ¶

GetSettings2 Get rate limit settings

Retrieves the rate limit settings for the instance.

The user must be authenticated to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetSettings2Request

func (*SystemMaintenanceAPIService) GetSettings2Execute ¶

Execute executes the request

@return RestRateLimitSettings

func (*SystemMaintenanceAPIService) GetSupportZip ¶

GetSupportZip Get support zip for node

Get the support zip for the Mesh node that matches the specified ID.

The authenticated user must have **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The ID of the Mesh node.
@return SystemMaintenanceAPIGetSupportZipRequest

func (*SystemMaintenanceAPIService) GetSupportZipExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) GetSupportZips ¶

GetSupportZips Get support zips for all Mesh nodes

Get the support zips for all the Mesh nodes.

The authenticated user must have **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetSupportZipsRequest

func (*SystemMaintenanceAPIService) GetSupportZipsExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) GetSupportedKeyTypes ¶

GetSupportedKeyTypes Get supported SSH key algorithms and lengths

Retrieves a list of all supported SSH key algorithms and lengths.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetSupportedKeyTypesRequest

func (*SystemMaintenanceAPIService) GetSupportedKeyTypesExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) GetUser ¶

GetUser Get user

Retrieve the user matching the supplied <strong>userSlug</strong>.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug
@return SystemMaintenanceAPIGetUserRequest

func (*SystemMaintenanceAPIService) GetUserExecute ¶

Execute executes the request

@return RestApplicationUser

func (*SystemMaintenanceAPIService) GetUserSettings ¶

GetUserSettings Get user settings

Retrieve a map of user setting key values for a specific user identified by the user slug.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug.
@return SystemMaintenanceAPIGetUserSettingsRequest

func (*SystemMaintenanceAPIService) GetUserSettingsExecute ¶

Execute executes the request

@return ExampleSettingsMap

func (*SystemMaintenanceAPIService) GetUsers2 ¶

GetUsers2 Get all users

Retrieve a page of users, optionally run through provided filters.

Only authenticated users may call this resource. ### Permission Filters

The following three sub-sections list parameters supported for permission filters (where <code>[root]</code> is the root permission filter name, e.g. <code>permission</code>, <code>permission.1</code> etc.) depending on the permission resource. The system determines which filter to apply (Global, Project or Repository permission) based on the `[root]` permission value. E.g. <code>ADMIN</code> is a global permission, <code>PROJECT_ADMIN</code> is a project permission and <code>REPO_ADMIN</code> is a repository permission. Note that the parameters for a given resource will be looked up in the order as they are listed below, that is e.g. for a project resource, if both <code>projectId</code> and <code>projectKey</code> are provided, the system will use <code>projectId</code> for the lookup. <h4>Global permissions</h4>

The permission value under <code>[root]</code> is the only required and recognized parameter, as global permissions do not apply to a specific resource.

Example valid filter: <code>permission=ADMIN</code>. <h4>Project permissions</h4>

- <code>[root]</code>- specifies the project permission - <code>[root].projectId</code> - specifies the project ID to lookup the project by - <code>[root].projectKey</code> - specifies the project key to lookup the project by

Example valid filter: <code>permission.1=PROJECT_ADMIN&amp;permission.1.projectKey=TEST_PROJECT</code>. #### Repository permissions

- <code>[root]</code>- specifies the repository permission - <code>[root].projectId</code> - specifies the repository ID to lookup the repository by - <code>[root].projectKey</code> and <code>[root].repositorySlug</code>- specifies the project key and repository slug to lookup the repository by; both values <i>need to</i> be provided for this look up to be triggered

Example valid filter: <code>permission.2=REPO_ADMIN&amp;permission.2.projectKey=TEST_PROJECT&amp;permission.2.repositorySlug=test_repo</code>.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIGetUsers2Request

func (*SystemMaintenanceAPIService) GetUsers2Execute ¶

Execute executes the request

@return RestApplicationUser

func (*SystemMaintenanceAPIService) PreviewExport ¶

PreviewExport Preview export

Enumerates the projects and repositories that would be exported for a given export request.

All affected repositories will be enumerated explicitly, and while projects are listed as individual items in responses from this endpoint, their presence does not imply that all their repositories are included.

While this endpoint can be used to verify that all selectors in the request apply as intended, it should be noted that a subsequent, actual export might contain a different set of repositories, as they might have been added or deleted in the meantime.

Note that the overall response from this endpoint can become very large when a lot of repositories end up in the selection. This is why the server is streaming the response while it is being generated (as opposed to creating it in memory and then sending it all at once) and it can be consumed in a streaming way, too.

Also, due to the potential size of the response, projects and repositories are listed with fewer details than in other REST responses.

For a more detailed description of selectors, see the endpoint documentation for starting an export.

The authenticated user must have **ADMIN** permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIPreviewExportRequest

func (*SystemMaintenanceAPIService) PreviewExportExecute ¶

Execute executes the request

@return RestScopesExample

func (*SystemMaintenanceAPIService) PreviewMeshMigration ¶

PreviewMeshMigration Preview Mesh migration

Enumerates the projects and repositories that would be migrated for a given request.

All affected repositories will be enumerated explicitly, and while projects are listed as individual items in responses from this endpoint, their presence does not imply that all their repositories are included.

While this endpoint can be used to verify that all selectors in the request apply as intended, it should be noted that a subsequent, actual export might contain a different set of repositories, as they might have been added or deleted in the meantime.

Note that the overall response from this endpoint can become very large when a lot of repositories end up in the selection. This is why the server is streaming the response while it is being generated (as opposed to creating it in memory and then sending it all at once) and it can be consumed in a streaming way, too.

Also, due to the potential size of the response, projects and repositories are listed with fewer details than in other REST responses.

The authenticated user must have **SYS_ADMIN** permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIPreviewMeshMigrationRequest

func (*SystemMaintenanceAPIService) PreviewMeshMigrationExecute ¶

Execute executes the request

@return ExamplePreviewMigration

func (*SystemMaintenanceAPIService) Read ¶

Read Get hook script content

Retrieves the hook script content.

This endpoint requires **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scriptId The ID of the hook script
@return SystemMaintenanceAPIReadRequest

func (*SystemMaintenanceAPIService) ReadExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) RegisterNewMeshNode ¶

RegisterNewMeshNode Register new Mesh node

Register a new Mesh node.

The authenticated user must have **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIRegisterNewMeshNodeRequest

func (*SystemMaintenanceAPIService) RegisterNewMeshNodeExecute ¶

Execute executes the request

@return RestMeshNode

func (*SystemMaintenanceAPIService) SearchMeshMigrationRepos ¶

SearchMeshMigrationRepos Find repositories by Mesh migration state

Searches for repositories in the system matching the specified criteria and enriches their MeshMigrationQueueState migration state if a migration is currently in progress.

The currently active migration can optionally be specified by passing a migrationId, if known. If this isn't passed, an attempt is made to locate the active migration and its ID is used.

If a migration is currently active, only repositories that are a part of the migration are filtered and returned. Otherwise, all repositories in the systems are filtered and returned.

Filtering by state is ignored when no migration is currently in progress. In such a case, results are not enriched with their MeshMigrationQueueState migration state.

The authenticated user must have **SYS_ADMIN** permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPISearchMeshMigrationReposRequest

func (*SystemMaintenanceAPIService) SearchMeshMigrationReposExecute ¶

Execute executes the request

@return SearchMeshMigrationRepos200Response

func (*SystemMaintenanceAPIService) Set ¶

Set Set rate limit settings for users

Sets the given rate limit settings for the given users.

The authenticated user must have <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPISetRequest

func (*SystemMaintenanceAPIService) Set1 ¶

Set1 Set rate limit settings for user

Sets the given rate limit settings for the given user.

The authenticated user must have <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug.
@return SystemMaintenanceAPISet1Request

func (*SystemMaintenanceAPIService) Set1Execute ¶

Execute executes the request

@return RestUserRateLimitSettings

func (*SystemMaintenanceAPIService) SetBanner ¶

SetBanner Update/Set announcement banner

Sets the announcement banner with the provided JSON. Only users authenticated as Admins may call this resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPISetBannerRequest

func (*SystemMaintenanceAPIService) SetBannerExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) SetDefaultBranch ¶

SetDefaultBranch Update/Set default branch

Configures the global default branch, which is used when creating new repositories if an explicit default branch is not specified.

The authenticated user must have <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPISetDefaultBranchRequest

func (*SystemMaintenanceAPIService) SetDefaultBranchExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) SetExecute ¶

Execute executes the request

@return RestUserRateLimitSettings

func (*SystemMaintenanceAPIService) SetLevel ¶

SetLevel Set log level

Set the current log level for a given logger.

The authenticated user must have <strong>ADMIN</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param levelName The level to set the logger to. Either TRACE, DEBUG, INFO, WARN or ERROR
@param loggerName The name of the logger.
@return SystemMaintenanceAPISetLevelRequest

func (*SystemMaintenanceAPIService) SetLevelExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) SetMailConfig ¶

SetMailConfig Update mail configuration

Updates the mail configuration.

The authenticated user must have the <strong>SYS_ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPISetMailConfigRequest

func (*SystemMaintenanceAPIService) SetMailConfigExecute ¶

Execute executes the request

@return RestMailConfiguration

func (*SystemMaintenanceAPIService) SetRepositoryArchivePolicy ¶

SetRepositoryArchivePolicy Update repository archive policy

Sets the repository archive policy for the instance.

The authenticated user must have <b>SYS_ADMIN</b> permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPISetRepositoryArchivePolicyRequest

func (*SystemMaintenanceAPIService) SetRepositoryArchivePolicyExecute ¶

Execute executes the request

@return RestRepositoryPolicy

func (*SystemMaintenanceAPIService) SetRepositoryDeletePolicy ¶

SetRepositoryDeletePolicy Update the repository delete policy

Sets the repository delete policy for the instance.

The authenticated user must have <b>SYS_ADMIN</b> permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPISetRepositoryDeletePolicyRequest

func (*SystemMaintenanceAPIService) SetRepositoryDeletePolicyExecute ¶

Execute executes the request

@return RestRepositoryPolicy

func (*SystemMaintenanceAPIService) SetRootLevel ¶

SetRootLevel Set root log level

Set the current log level for the root logger.

The authenticated user must have <strong>ADMIN</strong> permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param levelName the level to set the logger to. Either TRACE, DEBUG, INFO, WARN or ERROR
@return SystemMaintenanceAPISetRootLevelRequest

func (*SystemMaintenanceAPIService) SetRootLevelExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) SetSenderAddress ¶

SetSenderAddress Update server mail address

Updates the server email address ¶

The authenticated user must have the <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPISetSenderAddressRequest

func (*SystemMaintenanceAPIService) SetSenderAddressExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) SetSettings2 ¶

SetSettings2 Set rate limit

Sets the rate limit settings for the instance.

The authenticated user must have <strong>ADMIN</strong> permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPISetSettings2Request

func (*SystemMaintenanceAPIService) SetSettings2Execute ¶

Execute executes the request

@return RestRateLimitSettings

func (*SystemMaintenanceAPIService) StartExport ¶

StartExport Start export job

Starts a background job that exports the selected repositories.

Only 2 concurrent exports are supported _per cluster node_. If a request ends up on a node that is already running that many export jobs, the request will be rejected and an error returned.

The response includes a description of the job that has been started, and its ID can be used to query these details again, including the current progress, warnings and errors that occurred while processing the job, and to interrupt and cancel the execution of this job.

The request to start an export is similar to the one for previewing an export. Additionally, it accepts an optional parameter, `exportLocation`, which can be used to specify a _relative_ path within `data/migration/export` in the shared home directory. No locations outside of that directory will be accepted for exports.

There are essentially three ways to select repositories for export. Regardless of which you use, a few general rules apply:

- You can supply a list of selectors. The selection will be additive. - Repositories that are selected more than once due to overlapping selectors will be de-duplicated and effectively exported only once. - For every selected repository, its full fork hierarchy will be considered selected, even if parts of that hierarchy would otherwise not be matched by the provided selectors. For example, when you explicitly select a single repository only, but that repository is a fork, then its origin will be exported (and eventually imported), too.

Now, a single repository can be selected like this:

```

{
      "projectKey": "PRJ",
      "slug": "my-repo"
}

```

Second, all repositories in a specific project can be selected like this:

```

{
      "projectKey": "PRJ",
      "slug": *"
}

```

And third, all projects and repositories in the system would be selected like this:

```

{
      "projectKey": "*",
      "slug": *"
}

```

The authenticated user must have **ADMIN** permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIStartExportRequest

func (*SystemMaintenanceAPIService) StartExportExecute ¶

Execute executes the request

@return RestJob

func (*SystemMaintenanceAPIService) StartImport ¶

StartImport Start import job

Starts a background job that imports the specified archive.

Only 1 import at a time is supported _per cluster_. If another request is made while an import is already running, the request will be rejected and an error returned.

The path in the request must point to a valid archive file. The file must be located within the `data/migration/import` directory in the shared home directory.

The authenticated user must have **ADMIN** permission or higher to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIStartImportRequest

func (*SystemMaintenanceAPIService) StartImportExecute ¶

Execute executes the request

@return RestJob

func (*SystemMaintenanceAPIService) StartMeshMigration ¶

StartMeshMigration Start Mesh migration job

Starts a background job that migrates selected projects/repositories to Mesh.

Only 1 job is supported _per cluster_.

The response includes a description of the job that has been started, and its ID can be used to query these details again, including the current progress, and to interrupt and cancel the execution of this job.

The request to start a migration is similar to the one for previewing a migration.

There are essentially three ways to select repositories for migration. Regardless of which you use, a few general rules apply:

  • You can supply a list of repository IDs and project IDs. The selection will be additive. All repositories in the system are migrated if both lists are empty. - Repositories that are selected more than once due to overlapping IDs will be de-duplicated and effectively migrated only once. - For every selected repository, its full fork hierarchy will be considered selected, even if parts of that hierarchy would otherwise not be matched by the provided IDs. For example, when you explicitly select a single repository only, but that repository is a fork, then its origin will be migrated too.

Now, a single repository can be selected like this:

```

{
"repositoryIds": [1]
}

```

Multiple repositories can be selected like this:

```

{
"repositoryIds": [1, 2]
}

```

Second, all repositories in a specific project can be selected like this:

```

{
"projectIds": [1]
}

```

And third, all projects and repositories in the system would be selected like this:

```

{
"projectIds": [],
"repositoryIds": []
}

```

The authenticated user must have **SYS_ADMIN** permission to call this resource.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIStartMeshMigrationRequest

func (*SystemMaintenanceAPIService) StartMeshMigrationExecute ¶

Execute executes the request

@return RestJob

func (*SystemMaintenanceAPIService) UpdateGlobalSettings ¶

UpdateGlobalSettings Update global SSH key settings

Updates the global settings that enforces the maximum expiry of SSH keys and restrictions on SSH key types.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIUpdateGlobalSettingsRequest

func (*SystemMaintenanceAPIService) UpdateGlobalSettingsExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) UpdateHookScript ¶

UpdateHookScript Update a hook script

Updates a hook script.

This endpoint requires **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param scriptId The ID of the hook script
@return SystemMaintenanceAPIUpdateHookScriptRequest

func (*SystemMaintenanceAPIService) UpdateHookScriptExecute ¶

Execute executes the request

@return RestHookScript

func (*SystemMaintenanceAPIService) UpdateLicense ¶

UpdateLicense Update license

Decodes the provided encoded license and sets it as the active license. If no license was provided, a 400 is returned. If the license cannot be decoded, or cannot be applied, a 409 is returned. Some possible reasons a license may not be applied include:

- It is for a different product - It is already expired

Otherwise, if the license is updated successfully, details for the new license are returned with a 200 response.

<b>Warning</b>: It is possible to downgrade the license during update, applying a license with a lower number of permitted users. If the number of currently-licensed users exceeds the limits of the new license, pushing will be disabled until the licensed user count is brought into compliance with the new license.

The authenticated user must have <b>SYS_ADMIN</b> permission. <b>ADMIN</b> users may <i>view</i> the current license details, but they may not <i>update</i> the license.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIUpdateLicenseRequest

func (*SystemMaintenanceAPIService) UpdateLicenseExecute ¶

Execute executes the request

@return RestBitbucketLicense

func (*SystemMaintenanceAPIService) UpdateMeshNode ¶

UpdateMeshNode Update Mesh node

Update a Mesh node.

The authenticated user must have **SYS_ADMIN** permission.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The ID of the Mesh node to update.
@return SystemMaintenanceAPIUpdateMeshNodeRequest

func (*SystemMaintenanceAPIService) UpdateMeshNodeExecute ¶

Execute executes the request

@return RestMeshNode

func (*SystemMaintenanceAPIService) UpdateSettings ¶

UpdateSettings Update user settings

Update the entries of a map of user setting key/values for a specific user identified by the user slug.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug.
@return SystemMaintenanceAPIUpdateSettingsRequest

func (*SystemMaintenanceAPIService) UpdateSettingsExecute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) UpdateUserDetails1 ¶

UpdateUserDetails1 Update user details

Update the currently authenticated user's details. The update will always be applied to the currently authenticated user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIUpdateUserDetails1Request

func (*SystemMaintenanceAPIService) UpdateUserDetails1Execute ¶

Execute executes the request

@return RestApplicationUser

func (*SystemMaintenanceAPIService) UpdateUserPassword1 ¶

UpdateUserPassword1 Set password

Update the currently authenticated user's password.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SystemMaintenanceAPIUpdateUserPassword1Request

func (*SystemMaintenanceAPIService) UpdateUserPassword1Execute ¶

Execute executes the request

func (*SystemMaintenanceAPIService) UploadAvatar1 ¶

UploadAvatar1 Update user avatar

Update the avatar for the user with the supplied <strong>slug</strong>.

This resource accepts POST multipart form data, containing a single image in a form-field named 'avatar'.

There are configurable server limits on both the dimensions (1024x1024 pixels by default) and uploaded file size (1MB by default). Several different image formats are supported, but <strong>PNG</strong> and <strong>JPEG</strong> are preferred due to the file size limit.

This resource has Cross-Site Request Forgery (XSRF) protection. To allow the request to pass the XSRF check the caller needs to send an <code>X-Atlassian-Token</code> HTTP header with the value <code>no-check</code>.

An example <a href="http://curl.haxx.se/">curl</a> request to upload an image name 'avatar.png' would be: ``` curl -X POST -u username:password -H "X-Atlassian-Token: no-check" http://example.com/rest/api/latest/users/jdoe/avatar.png -F avatar=@avatar.png ```

Users are always allowed to update their own avatar. To update someone else's avatar the authenticated user must have global <strong>ADMIN</strong> permission, or global <strong>SYS_ADMIN</strong> permission to update a <strong>SYS_ADMIN</strong> user's avatar.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userSlug The user slug
@return SystemMaintenanceAPIUploadAvatar1Request

func (*SystemMaintenanceAPIService) UploadAvatar1Execute ¶

Execute executes the request

type SystemMaintenanceAPISet1Request ¶

type SystemMaintenanceAPISet1Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISet1Request) Execute ¶

func (SystemMaintenanceAPISet1Request) RestUserRateLimitSettingsUpdateRequest ¶

func (r SystemMaintenanceAPISet1Request) RestUserRateLimitSettingsUpdateRequest(restUserRateLimitSettingsUpdateRequest RestUserRateLimitSettingsUpdateRequest) SystemMaintenanceAPISet1Request

type SystemMaintenanceAPISetBannerRequest ¶

type SystemMaintenanceAPISetBannerRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetBannerRequest) Execute ¶

func (SystemMaintenanceAPISetBannerRequest) SetBannerRequest ¶

type SystemMaintenanceAPISetDefaultBranchRequest ¶

type SystemMaintenanceAPISetDefaultBranchRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetDefaultBranchRequest) Execute ¶

func (SystemMaintenanceAPISetDefaultBranchRequest) SetDefaultBranchRequest ¶

type SystemMaintenanceAPISetLevelRequest ¶

type SystemMaintenanceAPISetLevelRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetLevelRequest) Execute ¶

type SystemMaintenanceAPISetMailConfigRequest ¶

type SystemMaintenanceAPISetMailConfigRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetMailConfigRequest) Execute ¶

func (SystemMaintenanceAPISetMailConfigRequest) SetMailConfigRequest ¶

type SystemMaintenanceAPISetRepositoryArchivePolicyRequest ¶

type SystemMaintenanceAPISetRepositoryArchivePolicyRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetRepositoryArchivePolicyRequest) Execute ¶

func (SystemMaintenanceAPISetRepositoryArchivePolicyRequest) RestRepositoryPolicy ¶

The request containing the details of the policy.

type SystemMaintenanceAPISetRepositoryDeletePolicyRequest ¶

type SystemMaintenanceAPISetRepositoryDeletePolicyRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetRepositoryDeletePolicyRequest) Execute ¶

func (SystemMaintenanceAPISetRepositoryDeletePolicyRequest) RestRepositoryPolicy ¶

The request containing the details of the policy.

type SystemMaintenanceAPISetRequest ¶

type SystemMaintenanceAPISetRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetRequest) Execute ¶

func (SystemMaintenanceAPISetRequest) RestBulkUserRateLimitSettingsUpdateRequest ¶

func (r SystemMaintenanceAPISetRequest) RestBulkUserRateLimitSettingsUpdateRequest(restBulkUserRateLimitSettingsUpdateRequest RestBulkUserRateLimitSettingsUpdateRequest) SystemMaintenanceAPISetRequest

type SystemMaintenanceAPISetRootLevelRequest ¶

type SystemMaintenanceAPISetRootLevelRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetRootLevelRequest) Execute ¶

type SystemMaintenanceAPISetSenderAddressRequest ¶

type SystemMaintenanceAPISetSenderAddressRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetSenderAddressRequest) Body ¶

func (SystemMaintenanceAPISetSenderAddressRequest) Execute ¶

type SystemMaintenanceAPISetSettings2Request ¶

type SystemMaintenanceAPISetSettings2Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPISetSettings2Request) Execute ¶

func (SystemMaintenanceAPISetSettings2Request) RestRateLimitSettings ¶

Sets the rate limit settings for the instance. The authenticated user must have &lt;strong&gt;ADMIN&lt;/strong&gt; permission to call this resource.

type SystemMaintenanceAPIStartExportRequest ¶

type SystemMaintenanceAPIStartExportRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIStartExportRequest) Execute ¶

func (SystemMaintenanceAPIStartExportRequest) RestExportRequest ¶

The request

type SystemMaintenanceAPIStartImportRequest ¶

type SystemMaintenanceAPIStartImportRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIStartImportRequest) Execute ¶

func (SystemMaintenanceAPIStartImportRequest) RestImportRequest ¶

The request

type SystemMaintenanceAPIStartMeshMigrationRequest ¶

type SystemMaintenanceAPIStartMeshMigrationRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIStartMeshMigrationRequest) Execute ¶

func (SystemMaintenanceAPIStartMeshMigrationRequest) StartMeshMigrationRequest ¶

type SystemMaintenanceAPIUpdateGlobalSettingsRequest ¶

type SystemMaintenanceAPIUpdateGlobalSettingsRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIUpdateGlobalSettingsRequest) Execute ¶

func (SystemMaintenanceAPIUpdateGlobalSettingsRequest) RestSshKeySettings ¶

A request containing expiry length to be set for SSH keys and a list of SSH key type restrictions.

type SystemMaintenanceAPIUpdateHookScriptRequest ¶

type SystemMaintenanceAPIUpdateHookScriptRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIUpdateHookScriptRequest) ExamplePutMultipartFormData ¶

The multipart form data containing the hook script

func (SystemMaintenanceAPIUpdateHookScriptRequest) Execute ¶

type SystemMaintenanceAPIUpdateLicenseRequest ¶

type SystemMaintenanceAPIUpdateLicenseRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIUpdateLicenseRequest) Execute ¶

func (SystemMaintenanceAPIUpdateLicenseRequest) RestBitbucketLicense ¶

a JSON payload containing the encoded license to apply

type SystemMaintenanceAPIUpdateMeshNodeRequest ¶

type SystemMaintenanceAPIUpdateMeshNodeRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIUpdateMeshNodeRequest) Execute ¶

func (SystemMaintenanceAPIUpdateMeshNodeRequest) RestMeshNode ¶

The request specifying the updated Mesh node.

type SystemMaintenanceAPIUpdateSettingsRequest ¶

type SystemMaintenanceAPIUpdateSettingsRequest struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIUpdateSettingsRequest) ExampleSettingsMap ¶

A map with the UserSettings entries which must be updated.

func (SystemMaintenanceAPIUpdateSettingsRequest) Execute ¶

type SystemMaintenanceAPIUpdateUserDetails1Request ¶

type SystemMaintenanceAPIUpdateUserDetails1Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIUpdateUserDetails1Request) Execute ¶

func (SystemMaintenanceAPIUpdateUserDetails1Request) UserUpdate ¶

The user update details

type SystemMaintenanceAPIUpdateUserPassword1Request ¶

type SystemMaintenanceAPIUpdateUserPassword1Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIUpdateUserPassword1Request) Execute ¶

func (SystemMaintenanceAPIUpdateUserPassword1Request) UserPasswordUpdate ¶

The password update details

type SystemMaintenanceAPIUploadAvatar1Request ¶

type SystemMaintenanceAPIUploadAvatar1Request struct {
	ApiService *SystemMaintenanceAPIService
	// contains filtered or unexported fields
}

func (SystemMaintenanceAPIUploadAvatar1Request) Avatar ¶

The avatar file to upload.

func (SystemMaintenanceAPIUploadAvatar1Request) Execute ¶

func (SystemMaintenanceAPIUploadAvatar1Request) XAtlassianToken ¶

This resource has Cross-Site Request Forgery (XSRF) protection. To allow the request to pass the XSRF check the caller needs to send an &lt;code&gt;X-Atlassian-Token&lt;/code&gt; HTTP header with the value &lt;code&gt;no-check&lt;/code&gt;.

type UpdatePullRequestCondition1Request ¶

type UpdatePullRequestCondition1Request struct {
	RequiredApprovals *int32                                           `json:"requiredApprovals,omitempty"`
	Reviewers         []RestApplicationUser                            `json:"reviewers,omitempty"`
	SourceMatcher     *UpdatePullRequestCondition1RequestSourceMatcher `json:"sourceMatcher,omitempty"`
	TargetMatcher     *UpdatePullRequestCondition1RequestSourceMatcher `json:"targetMatcher,omitempty"`
}

UpdatePullRequestCondition1Request struct for UpdatePullRequestCondition1Request

func NewUpdatePullRequestCondition1Request ¶

func NewUpdatePullRequestCondition1Request() *UpdatePullRequestCondition1Request

NewUpdatePullRequestCondition1Request instantiates a new UpdatePullRequestCondition1Request object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePullRequestCondition1RequestWithDefaults ¶

func NewUpdatePullRequestCondition1RequestWithDefaults() *UpdatePullRequestCondition1Request

NewUpdatePullRequestCondition1RequestWithDefaults instantiates a new UpdatePullRequestCondition1Request object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePullRequestCondition1Request) GetRequiredApprovals ¶

func (o *UpdatePullRequestCondition1Request) GetRequiredApprovals() int32

GetRequiredApprovals returns the RequiredApprovals field value if set, zero value otherwise.

func (*UpdatePullRequestCondition1Request) GetRequiredApprovalsOk ¶

func (o *UpdatePullRequestCondition1Request) GetRequiredApprovalsOk() (*int32, bool)

GetRequiredApprovalsOk returns a tuple with the RequiredApprovals field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePullRequestCondition1Request) GetReviewers ¶

GetReviewers returns the Reviewers field value if set, zero value otherwise.

func (*UpdatePullRequestCondition1Request) GetReviewersOk ¶

GetReviewersOk returns a tuple with the Reviewers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePullRequestCondition1Request) GetSourceMatcher ¶

GetSourceMatcher returns the SourceMatcher field value if set, zero value otherwise.

func (*UpdatePullRequestCondition1Request) GetSourceMatcherOk ¶

GetSourceMatcherOk returns a tuple with the SourceMatcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePullRequestCondition1Request) GetTargetMatcher ¶

GetTargetMatcher returns the TargetMatcher field value if set, zero value otherwise.

func (*UpdatePullRequestCondition1Request) GetTargetMatcherOk ¶

GetTargetMatcherOk returns a tuple with the TargetMatcher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePullRequestCondition1Request) HasRequiredApprovals ¶

func (o *UpdatePullRequestCondition1Request) HasRequiredApprovals() bool

HasRequiredApprovals returns a boolean if a field has been set.

func (*UpdatePullRequestCondition1Request) HasReviewers ¶

func (o *UpdatePullRequestCondition1Request) HasReviewers() bool

HasReviewers returns a boolean if a field has been set.

func (*UpdatePullRequestCondition1Request) HasSourceMatcher ¶

func (o *UpdatePullRequestCondition1Request) HasSourceMatcher() bool

HasSourceMatcher returns a boolean if a field has been set.

func (*UpdatePullRequestCondition1Request) HasTargetMatcher ¶

func (o *UpdatePullRequestCondition1Request) HasTargetMatcher() bool

HasTargetMatcher returns a boolean if a field has been set.

func (UpdatePullRequestCondition1Request) MarshalJSON ¶

func (o UpdatePullRequestCondition1Request) MarshalJSON() ([]byte, error)

func (*UpdatePullRequestCondition1Request) SetRequiredApprovals ¶

func (o *UpdatePullRequestCondition1Request) SetRequiredApprovals(v int32)

SetRequiredApprovals gets a reference to the given int32 and assigns it to the RequiredApprovals field.

func (*UpdatePullRequestCondition1Request) SetReviewers ¶

SetReviewers gets a reference to the given []RestApplicationUser and assigns it to the Reviewers field.

func (*UpdatePullRequestCondition1Request) SetSourceMatcher ¶

SetSourceMatcher gets a reference to the given UpdatePullRequestCondition1RequestSourceMatcher and assigns it to the SourceMatcher field.

func (*UpdatePullRequestCondition1Request) SetTargetMatcher ¶

SetTargetMatcher gets a reference to the given UpdatePullRequestCondition1RequestSourceMatcher and assigns it to the TargetMatcher field.

func (UpdatePullRequestCondition1Request) ToMap ¶

func (o UpdatePullRequestCondition1Request) ToMap() (map[string]interface{}, error)

type UpdatePullRequestCondition1RequestSourceMatcher ¶

type UpdatePullRequestCondition1RequestSourceMatcher struct {
	DisplayId *string                                              `json:"displayId,omitempty"`
	Id        *string                                              `json:"id,omitempty"`
	Type      *UpdatePullRequestCondition1RequestSourceMatcherType `json:"type,omitempty"`
}

UpdatePullRequestCondition1RequestSourceMatcher struct for UpdatePullRequestCondition1RequestSourceMatcher

func NewUpdatePullRequestCondition1RequestSourceMatcher ¶

func NewUpdatePullRequestCondition1RequestSourceMatcher() *UpdatePullRequestCondition1RequestSourceMatcher

NewUpdatePullRequestCondition1RequestSourceMatcher instantiates a new UpdatePullRequestCondition1RequestSourceMatcher object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePullRequestCondition1RequestSourceMatcherWithDefaults ¶

func NewUpdatePullRequestCondition1RequestSourceMatcherWithDefaults() *UpdatePullRequestCondition1RequestSourceMatcher

NewUpdatePullRequestCondition1RequestSourceMatcherWithDefaults instantiates a new UpdatePullRequestCondition1RequestSourceMatcher object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePullRequestCondition1RequestSourceMatcher) GetDisplayId ¶

GetDisplayId returns the DisplayId field value if set, zero value otherwise.

func (*UpdatePullRequestCondition1RequestSourceMatcher) GetDisplayIdOk ¶

GetDisplayIdOk returns a tuple with the DisplayId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePullRequestCondition1RequestSourceMatcher) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*UpdatePullRequestCondition1RequestSourceMatcher) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePullRequestCondition1RequestSourceMatcher) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*UpdatePullRequestCondition1RequestSourceMatcher) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePullRequestCondition1RequestSourceMatcher) HasDisplayId ¶

HasDisplayId returns a boolean if a field has been set.

func (*UpdatePullRequestCondition1RequestSourceMatcher) HasId ¶

HasId returns a boolean if a field has been set.

func (*UpdatePullRequestCondition1RequestSourceMatcher) HasType ¶

HasType returns a boolean if a field has been set.

func (UpdatePullRequestCondition1RequestSourceMatcher) MarshalJSON ¶

func (*UpdatePullRequestCondition1RequestSourceMatcher) SetDisplayId ¶

SetDisplayId gets a reference to the given string and assigns it to the DisplayId field.

func (*UpdatePullRequestCondition1RequestSourceMatcher) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*UpdatePullRequestCondition1RequestSourceMatcher) SetType ¶

SetType gets a reference to the given UpdatePullRequestCondition1RequestSourceMatcherType and assigns it to the Type field.

func (UpdatePullRequestCondition1RequestSourceMatcher) ToMap ¶

func (o UpdatePullRequestCondition1RequestSourceMatcher) ToMap() (map[string]interface{}, error)

type UpdatePullRequestCondition1RequestSourceMatcherType ¶

type UpdatePullRequestCondition1RequestSourceMatcherType struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

UpdatePullRequestCondition1RequestSourceMatcherType struct for UpdatePullRequestCondition1RequestSourceMatcherType

func NewUpdatePullRequestCondition1RequestSourceMatcherType ¶

func NewUpdatePullRequestCondition1RequestSourceMatcherType() *UpdatePullRequestCondition1RequestSourceMatcherType

NewUpdatePullRequestCondition1RequestSourceMatcherType instantiates a new UpdatePullRequestCondition1RequestSourceMatcherType object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdatePullRequestCondition1RequestSourceMatcherTypeWithDefaults ¶

func NewUpdatePullRequestCondition1RequestSourceMatcherTypeWithDefaults() *UpdatePullRequestCondition1RequestSourceMatcherType

NewUpdatePullRequestCondition1RequestSourceMatcherTypeWithDefaults instantiates a new UpdatePullRequestCondition1RequestSourceMatcherType object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdatePullRequestCondition1RequestSourceMatcherType) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*UpdatePullRequestCondition1RequestSourceMatcherType) GetIdOk ¶

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePullRequestCondition1RequestSourceMatcherType) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*UpdatePullRequestCondition1RequestSourceMatcherType) GetNameOk ¶

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePullRequestCondition1RequestSourceMatcherType) HasId ¶

HasId returns a boolean if a field has been set.

func (*UpdatePullRequestCondition1RequestSourceMatcherType) HasName ¶

HasName returns a boolean if a field has been set.

func (UpdatePullRequestCondition1RequestSourceMatcherType) MarshalJSON ¶

func (*UpdatePullRequestCondition1RequestSourceMatcherType) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*UpdatePullRequestCondition1RequestSourceMatcherType) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (UpdatePullRequestCondition1RequestSourceMatcherType) ToMap ¶

type UserAndGroups ¶

type UserAndGroups struct {
	Groups []string `json:"groups"`
	User   *string  `json:"user,omitempty"`
}

UserAndGroups struct for UserAndGroups

func NewUserAndGroups ¶

func NewUserAndGroups(groups []string) *UserAndGroups

NewUserAndGroups instantiates a new UserAndGroups object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserAndGroupsWithDefaults ¶

func NewUserAndGroupsWithDefaults() *UserAndGroups

NewUserAndGroupsWithDefaults instantiates a new UserAndGroups object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserAndGroups) GetGroups ¶

func (o *UserAndGroups) GetGroups() []string

GetGroups returns the Groups field value

func (*UserAndGroups) GetGroupsOk ¶

func (o *UserAndGroups) GetGroupsOk() ([]string, bool)

GetGroupsOk returns a tuple with the Groups field value and a boolean to check if the value has been set.

func (*UserAndGroups) GetUser ¶

func (o *UserAndGroups) GetUser() string

GetUser returns the User field value if set, zero value otherwise.

func (*UserAndGroups) GetUserOk ¶

func (o *UserAndGroups) GetUserOk() (*string, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserAndGroups) HasUser ¶

func (o *UserAndGroups) HasUser() bool

HasUser returns a boolean if a field has been set.

func (UserAndGroups) MarshalJSON ¶

func (o UserAndGroups) MarshalJSON() ([]byte, error)

func (*UserAndGroups) SetGroups ¶

func (o *UserAndGroups) SetGroups(v []string)

SetGroups sets field value

func (*UserAndGroups) SetUser ¶

func (o *UserAndGroups) SetUser(v string)

SetUser gets a reference to the given string and assigns it to the User field.

func (UserAndGroups) ToMap ¶

func (o UserAndGroups) ToMap() (map[string]interface{}, error)

type UserPasswordUpdate ¶

type UserPasswordUpdate struct {
	OldPassword     *string `json:"oldPassword,omitempty"`
	Password        *string `json:"password,omitempty"`
	PasswordConfirm *string `json:"passwordConfirm,omitempty"`
}

UserPasswordUpdate struct for UserPasswordUpdate

func NewUserPasswordUpdate ¶

func NewUserPasswordUpdate() *UserPasswordUpdate

NewUserPasswordUpdate instantiates a new UserPasswordUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserPasswordUpdateWithDefaults ¶

func NewUserPasswordUpdateWithDefaults() *UserPasswordUpdate

NewUserPasswordUpdateWithDefaults instantiates a new UserPasswordUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserPasswordUpdate) GetOldPassword ¶

func (o *UserPasswordUpdate) GetOldPassword() string

GetOldPassword returns the OldPassword field value if set, zero value otherwise.

func (*UserPasswordUpdate) GetOldPasswordOk ¶

func (o *UserPasswordUpdate) GetOldPasswordOk() (*string, bool)

GetOldPasswordOk returns a tuple with the OldPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserPasswordUpdate) GetPassword ¶

func (o *UserPasswordUpdate) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*UserPasswordUpdate) GetPasswordConfirm ¶

func (o *UserPasswordUpdate) GetPasswordConfirm() string

GetPasswordConfirm returns the PasswordConfirm field value if set, zero value otherwise.

func (*UserPasswordUpdate) GetPasswordConfirmOk ¶

func (o *UserPasswordUpdate) GetPasswordConfirmOk() (*string, bool)

GetPasswordConfirmOk returns a tuple with the PasswordConfirm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserPasswordUpdate) GetPasswordOk ¶

func (o *UserPasswordUpdate) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserPasswordUpdate) HasOldPassword ¶

func (o *UserPasswordUpdate) HasOldPassword() bool

HasOldPassword returns a boolean if a field has been set.

func (*UserPasswordUpdate) HasPassword ¶

func (o *UserPasswordUpdate) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*UserPasswordUpdate) HasPasswordConfirm ¶

func (o *UserPasswordUpdate) HasPasswordConfirm() bool

HasPasswordConfirm returns a boolean if a field has been set.

func (UserPasswordUpdate) MarshalJSON ¶

func (o UserPasswordUpdate) MarshalJSON() ([]byte, error)

func (*UserPasswordUpdate) SetOldPassword ¶

func (o *UserPasswordUpdate) SetOldPassword(v string)

SetOldPassword gets a reference to the given string and assigns it to the OldPassword field.

func (*UserPasswordUpdate) SetPassword ¶

func (o *UserPasswordUpdate) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*UserPasswordUpdate) SetPasswordConfirm ¶

func (o *UserPasswordUpdate) SetPasswordConfirm(v string)

SetPasswordConfirm gets a reference to the given string and assigns it to the PasswordConfirm field.

func (UserPasswordUpdate) ToMap ¶

func (o UserPasswordUpdate) ToMap() (map[string]interface{}, error)

type UserPickerContext ¶

type UserPickerContext struct {
	Context  *string `json:"context,omitempty"`
	ItemName *string `json:"itemName,omitempty"`
}

UserPickerContext struct for UserPickerContext

func NewUserPickerContext ¶

func NewUserPickerContext() *UserPickerContext

NewUserPickerContext instantiates a new UserPickerContext object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserPickerContextWithDefaults ¶

func NewUserPickerContextWithDefaults() *UserPickerContext

NewUserPickerContextWithDefaults instantiates a new UserPickerContext object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserPickerContext) GetContext ¶

func (o *UserPickerContext) GetContext() string

GetContext returns the Context field value if set, zero value otherwise.

func (*UserPickerContext) GetContextOk ¶

func (o *UserPickerContext) GetContextOk() (*string, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserPickerContext) GetItemName ¶

func (o *UserPickerContext) GetItemName() string

GetItemName returns the ItemName field value if set, zero value otherwise.

func (*UserPickerContext) GetItemNameOk ¶

func (o *UserPickerContext) GetItemNameOk() (*string, bool)

GetItemNameOk returns a tuple with the ItemName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserPickerContext) HasContext ¶

func (o *UserPickerContext) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*UserPickerContext) HasItemName ¶

func (o *UserPickerContext) HasItemName() bool

HasItemName returns a boolean if a field has been set.

func (UserPickerContext) MarshalJSON ¶

func (o UserPickerContext) MarshalJSON() ([]byte, error)

func (*UserPickerContext) SetContext ¶

func (o *UserPickerContext) SetContext(v string)

SetContext gets a reference to the given string and assigns it to the Context field.

func (*UserPickerContext) SetItemName ¶

func (o *UserPickerContext) SetItemName(v string)

SetItemName gets a reference to the given string and assigns it to the ItemName field.

func (UserPickerContext) ToMap ¶

func (o UserPickerContext) ToMap() (map[string]interface{}, error)

type UserRename ¶

type UserRename struct {
	Name    *string `json:"name,omitempty"`
	NewName *string `json:"newName,omitempty"`
}

UserRename struct for UserRename

func NewUserRename ¶

func NewUserRename() *UserRename

NewUserRename instantiates a new UserRename object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserRenameWithDefaults ¶

func NewUserRenameWithDefaults() *UserRename

NewUserRenameWithDefaults instantiates a new UserRename object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserRename) GetName ¶

func (o *UserRename) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UserRename) GetNameOk ¶

func (o *UserRename) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRename) GetNewName ¶

func (o *UserRename) GetNewName() string

GetNewName returns the NewName field value if set, zero value otherwise.

func (*UserRename) GetNewNameOk ¶

func (o *UserRename) GetNewNameOk() (*string, bool)

GetNewNameOk returns a tuple with the NewName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserRename) HasName ¶

func (o *UserRename) HasName() bool

HasName returns a boolean if a field has been set.

func (*UserRename) HasNewName ¶

func (o *UserRename) HasNewName() bool

HasNewName returns a boolean if a field has been set.

func (UserRename) MarshalJSON ¶

func (o UserRename) MarshalJSON() ([]byte, error)

func (*UserRename) SetName ¶

func (o *UserRename) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*UserRename) SetNewName ¶

func (o *UserRename) SetNewName(v string)

SetNewName gets a reference to the given string and assigns it to the NewName field.

func (UserRename) ToMap ¶

func (o UserRename) ToMap() (map[string]interface{}, error)

type UserUpdate ¶

type UserUpdate struct {
	DisplayName *string `json:"displayName,omitempty"`
	Email       *string `json:"email,omitempty"`
	Name        *string `json:"name,omitempty"`
}

UserUpdate struct for UserUpdate

func NewUserUpdate ¶

func NewUserUpdate() *UserUpdate

NewUserUpdate instantiates a new UserUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserUpdateWithDefaults ¶

func NewUserUpdateWithDefaults() *UserUpdate

NewUserUpdateWithDefaults instantiates a new UserUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserUpdate) GetDisplayName ¶

func (o *UserUpdate) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*UserUpdate) GetDisplayNameOk ¶

func (o *UserUpdate) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdate) GetEmail ¶

func (o *UserUpdate) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UserUpdate) GetEmailOk ¶

func (o *UserUpdate) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdate) GetName ¶

func (o *UserUpdate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UserUpdate) GetNameOk ¶

func (o *UserUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserUpdate) HasDisplayName ¶

func (o *UserUpdate) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*UserUpdate) HasEmail ¶

func (o *UserUpdate) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UserUpdate) HasName ¶

func (o *UserUpdate) HasName() bool

HasName returns a boolean if a field has been set.

func (UserUpdate) MarshalJSON ¶

func (o UserUpdate) MarshalJSON() ([]byte, error)

func (*UserUpdate) SetDisplayName ¶

func (o *UserUpdate) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*UserUpdate) SetEmail ¶

func (o *UserUpdate) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UserUpdate) SetName ¶

func (o *UserUpdate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (UserUpdate) ToMap ¶

func (o UserUpdate) ToMap() (map[string]interface{}, error)

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL