ResourceMetadataDto

Properties

NameTypeDescriptionNotes

Etag

Pointer to string

The entity tag of the resource, as defined in http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.11. The entity tag is also added as an 'ETag' response header to requests that do not use the 'depth' parameter.

[optional] [readonly]

CreatedDate

Pointer to string

The date the resource was created.

[optional] [readonly]

CreatedBy

Pointer to string

The user who created the resource.

[optional] [readonly]

CreatedByUserId

Pointer to string

The ID of the user who created the resource.

[optional] [readonly]

LastModifiedDate

Pointer to string

The date when the resource was last modified.

[optional] [readonly]

LastModifiedBy

Pointer to string

The user who last modified the resource.

[optional] [readonly]

LastModifiedByUserId

Pointer to string

The ID of the user who last modified the resource.

[optional] [readonly]

State

Pointer to string

The resource state.

[optional]

Methods

NewResourceMetadataDto

func NewResourceMetadataDto() *ResourceMetadataDto

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

NewResourceMetadataDtoWithDefaults

func NewResourceMetadataDtoWithDefaults() *ResourceMetadataDto

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

GetEtag

func (o *ResourceMetadataDto) GetEtag() string

GetEtag returns the Etag field if non-nil, zero value otherwise.

GetEtagOk

func (o *ResourceMetadataDto) GetEtagOk() (*string, bool)

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

SetEtag

func (o *ResourceMetadataDto) SetEtag(v string)

SetEtag sets Etag field to given value.

HasEtag

func (o *ResourceMetadataDto) HasEtag() bool

HasEtag returns a boolean if a field has been set.

GetCreatedDate

func (o *ResourceMetadataDto) GetCreatedDate() string

GetCreatedDate returns the CreatedDate field if non-nil, zero value otherwise.

GetCreatedDateOk

func (o *ResourceMetadataDto) GetCreatedDateOk() (*string, bool)

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

SetCreatedDate

func (o *ResourceMetadataDto) SetCreatedDate(v string)

SetCreatedDate sets CreatedDate field to given value.

HasCreatedDate

func (o *ResourceMetadataDto) HasCreatedDate() bool

HasCreatedDate returns a boolean if a field has been set.

GetCreatedBy

func (o *ResourceMetadataDto) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise.

GetCreatedByOk

func (o *ResourceMetadataDto) GetCreatedByOk() (*string, bool)

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

SetCreatedBy

func (o *ResourceMetadataDto) SetCreatedBy(v string)

SetCreatedBy sets CreatedBy field to given value.

HasCreatedBy

func (o *ResourceMetadataDto) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

GetCreatedByUserId

func (o *ResourceMetadataDto) GetCreatedByUserId() string

GetCreatedByUserId returns the CreatedByUserId field if non-nil, zero value otherwise.

GetCreatedByUserIdOk

func (o *ResourceMetadataDto) GetCreatedByUserIdOk() (*string, bool)

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

SetCreatedByUserId

func (o *ResourceMetadataDto) SetCreatedByUserId(v string)

SetCreatedByUserId sets CreatedByUserId field to given value.

HasCreatedByUserId

func (o *ResourceMetadataDto) HasCreatedByUserId() bool

HasCreatedByUserId returns a boolean if a field has been set.

GetLastModifiedDate

func (o *ResourceMetadataDto) GetLastModifiedDate() string

GetLastModifiedDate returns the LastModifiedDate field if non-nil, zero value otherwise.

GetLastModifiedDateOk

func (o *ResourceMetadataDto) GetLastModifiedDateOk() (*string, bool)

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

SetLastModifiedDate

func (o *ResourceMetadataDto) SetLastModifiedDate(v string)

SetLastModifiedDate sets LastModifiedDate field to given value.

HasLastModifiedDate

func (o *ResourceMetadataDto) HasLastModifiedDate() bool

HasLastModifiedDate returns a boolean if a field has been set.

GetLastModifiedBy

func (o *ResourceMetadataDto) GetLastModifiedBy() string

GetLastModifiedBy returns the LastModifiedBy field if non-nil, zero value otherwise.

GetLastModifiedByOk

func (o *ResourceMetadataDto) GetLastModifiedByOk() (*string, bool)

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

SetLastModifiedBy

func (o *ResourceMetadataDto) SetLastModifiedBy(v string)

SetLastModifiedBy sets LastModifiedBy field to given value.

HasLastModifiedBy

func (o *ResourceMetadataDto) HasLastModifiedBy() bool

HasLastModifiedBy returns a boolean if a field has been set.

GetLastModifiedByUserId

func (o *ResourceMetadataDto) GetLastModifiedByUserId() string

GetLastModifiedByUserId returns the LastModifiedByUserId field if non-nil, zero value otherwise.

GetLastModifiedByUserIdOk

func (o *ResourceMetadataDto) GetLastModifiedByUserIdOk() (*string, bool)

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

SetLastModifiedByUserId

func (o *ResourceMetadataDto) SetLastModifiedByUserId(v string)

SetLastModifiedByUserId sets LastModifiedByUserId field to given value.

HasLastModifiedByUserId

func (o *ResourceMetadataDto) HasLastModifiedByUserId() bool

HasLastModifiedByUserId returns a boolean if a field has been set.

GetState

func (o *ResourceMetadataDto) GetState() string

GetState returns the State field if non-nil, zero value otherwise.

GetStateOk

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

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

SetState

func (o *ResourceMetadataDto) SetState(v string)

SetState sets State field to given value.

HasState

func (o *ResourceMetadataDto) HasState() bool

HasState returns a boolean if a field has been set.

Last updated