Skip to content

Latest commit

 

History

History
196 lines (107 loc) · 5.09 KB

ChangeRequest.md

File metadata and controls

196 lines (107 loc) · 5.09 KB

ChangeRequest

Properties

Name Type Description Notes
Id Pointer to string [optional] [readonly]
ExternalId Pointer to string [optional] [readonly]
Name Pointer to string [optional]
Description Pointer to string [optional]
Attributes Pointer to map[string]map[string]interface{} [optional]
TenantId Pointer to NullableString [optional]

Methods

NewChangeRequest

func NewChangeRequest() *ChangeRequest

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

NewChangeRequestWithDefaults

func NewChangeRequestWithDefaults() *ChangeRequest

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

GetId

func (o *ChangeRequest) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *ChangeRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetId

func (o *ChangeRequest) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *ChangeRequest) HasId() bool

HasId returns a boolean if a field has been set.

GetExternalId

func (o *ChangeRequest) GetExternalId() string

GetExternalId returns the ExternalId field if non-nil, zero value otherwise.

GetExternalIdOk

func (o *ChangeRequest) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetExternalId

func (o *ChangeRequest) SetExternalId(v string)

SetExternalId sets ExternalId field to given value.

HasExternalId

func (o *ChangeRequest) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

GetName

func (o *ChangeRequest) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

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

GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetName

func (o *ChangeRequest) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *ChangeRequest) HasName() bool

HasName returns a boolean if a field has been set.

GetDescription

func (o *ChangeRequest) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

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

GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDescription

func (o *ChangeRequest) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *ChangeRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetAttributes

func (o *ChangeRequest) GetAttributes() map[string]map[string]interface{}

GetAttributes returns the Attributes field if non-nil, zero value otherwise.

GetAttributesOk

func (o *ChangeRequest) GetAttributesOk() (*map[string]map[string]interface{}, bool)

GetAttributesOk returns a tuple with the Attributes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAttributes

func (o *ChangeRequest) SetAttributes(v map[string]map[string]interface{})

SetAttributes sets Attributes field to given value.

HasAttributes

func (o *ChangeRequest) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

GetTenantId

func (o *ChangeRequest) GetTenantId() string

GetTenantId returns the TenantId field if non-nil, zero value otherwise.

GetTenantIdOk

func (o *ChangeRequest) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTenantId

func (o *ChangeRequest) SetTenantId(v string)

SetTenantId sets TenantId field to given value.

HasTenantId

func (o *ChangeRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

SetTenantIdNil

func (o *ChangeRequest) SetTenantIdNil(b bool)

SetTenantIdNil sets the value for TenantId to be an explicit nil

UnsetTenantId

func (o *ChangeRequest) UnsetTenantId()

UnsetTenantId ensures that no value is present for TenantId, not even an explicit nil

[Back to Model list] [Back to API list] [Back to README]