ApiResourceMetadata
Properties
CreatedBy
string
CreatedByUserId
string
LastModifiedBy
Pointer to string
[optional]
LastModifiedByUserId
Pointer to string
[optional]
State
string
Methods
NewApiResourceMetadata
func NewApiResourceMetadata(createdBy string, createdByUserId string, createdDate time.Time, state string, ) *ApiResourceMetadata
NewApiResourceMetadata instantiates a new ApiResourceMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
NewApiResourceMetadataWithDefaults
func NewApiResourceMetadataWithDefaults() *ApiResourceMetadata
NewApiResourceMetadataWithDefaults instantiates a new ApiResourceMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
GetCreatedBy
func (o *ApiResourceMetadata) GetCreatedBy() string
GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise.
GetCreatedByOk
func (o *ApiResourceMetadata) 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 *ApiResourceMetadata) SetCreatedBy(v string)
SetCreatedBy sets CreatedBy field to given value.
GetCreatedByUserId
func (o *ApiResourceMetadata) GetCreatedByUserId() string
GetCreatedByUserId returns the CreatedByUserId field if non-nil, zero value otherwise.
GetCreatedByUserIdOk
func (o *ApiResourceMetadata) 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 *ApiResourceMetadata) SetCreatedByUserId(v string)
SetCreatedByUserId sets CreatedByUserId field to given value.
GetCreatedDate
func (o *ApiResourceMetadata) GetCreatedDate() time.Time
GetCreatedDate returns the CreatedDate field if non-nil, zero value otherwise.
GetCreatedDateOk
func (o *ApiResourceMetadata) GetCreatedDateOk() (*time.Time, 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 *ApiResourceMetadata) SetCreatedDate(v time.Time)
SetCreatedDate sets CreatedDate field to given value.
GetLastModifiedBy
func (o *ApiResourceMetadata) GetLastModifiedBy() string
GetLastModifiedBy returns the LastModifiedBy field if non-nil, zero value otherwise.
GetLastModifiedByOk
func (o *ApiResourceMetadata) 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 *ApiResourceMetadata) SetLastModifiedBy(v string)
SetLastModifiedBy sets LastModifiedBy field to given value.
HasLastModifiedBy
func (o *ApiResourceMetadata) HasLastModifiedBy() bool
HasLastModifiedBy returns a boolean if a field has been set.
GetLastModifiedByUserId
func (o *ApiResourceMetadata) GetLastModifiedByUserId() string
GetLastModifiedByUserId returns the LastModifiedByUserId field if non-nil, zero value otherwise.
GetLastModifiedByUserIdOk
func (o *ApiResourceMetadata) 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 *ApiResourceMetadata) SetLastModifiedByUserId(v string)
SetLastModifiedByUserId sets LastModifiedByUserId field to given value.
HasLastModifiedByUserId
func (o *ApiResourceMetadata) HasLastModifiedByUserId() bool
HasLastModifiedByUserId returns a boolean if a field has been set.
GetLastModifiedDate
func (o *ApiResourceMetadata) GetLastModifiedDate() time.Time
GetLastModifiedDate returns the LastModifiedDate field if non-nil, zero value otherwise.
GetLastModifiedDateOk
func (o *ApiResourceMetadata) GetLastModifiedDateOk() (*time.Time, 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 *ApiResourceMetadata) SetLastModifiedDate(v time.Time)
SetLastModifiedDate sets LastModifiedDate field to given value.
HasLastModifiedDate
func (o *ApiResourceMetadata) HasLastModifiedDate() bool
HasLastModifiedDate returns a boolean if a field has been set.
SetLastModifiedDateNil
func (o *ApiResourceMetadata) SetLastModifiedDateNil(b bool)
SetLastModifiedDateNil sets the value for LastModifiedDate to be an explicit nil
UnsetLastModifiedDate
func (o *ApiResourceMetadata) UnsetLastModifiedDate()
UnsetLastModifiedDate ensures that no value is present for LastModifiedDate, not even an explicit nil
GetState
func (o *ApiResourceMetadata) GetState() string
GetState returns the State field if non-nil, zero value otherwise.
GetStateOk
func (o *ApiResourceMetadata) 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 *ApiResourceMetadata) SetState(v string)
SetState sets State field to given value.
Last updated