Skip to content

Latest commit

 

History

History
247 lines (132 loc) · 6.58 KB

Catalog.md

File metadata and controls

247 lines (132 loc) · 6.58 KB

Catalog

Properties

Name Type Description Notes
Id Pointer to int32 Internal ID of this entity.
Created Pointer to time.Time The time this entity was created.
AccountId Pointer to int32 The ID of the account that owns this entity.
Modified Pointer to time.Time The time this entity was last modified.
Name Pointer to string The cart item catalog name.
Description Pointer to string A description of this cart item catalog.
SubscribedApplicationsIds Pointer to []int32 A list of the IDs of the applications that are subscribed to this catalog. [optional]
Version Pointer to int32 The current version of this catalog.
CreatedBy Pointer to int32 The ID of user who created this catalog.

Methods

GetId

func (o *Catalog) GetId() int32

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

GetIdOk

func (o *Catalog) GetIdOk() (int32, 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.

HasId

func (o *Catalog) HasId() bool

HasId returns a boolean if a field has been set.

SetId

func (o *Catalog) SetId(v int32)

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

GetCreated

func (o *Catalog) GetCreated() time.Time

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

func (o *Catalog) GetCreatedOk() (time.Time, bool)

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

HasCreated

func (o *Catalog) HasCreated() bool

HasCreated returns a boolean if a field has been set.

SetCreated

func (o *Catalog) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

GetAccountId

func (o *Catalog) GetAccountId() int32

GetAccountId returns the AccountId field if non-nil, zero value otherwise.

GetAccountIdOk

func (o *Catalog) GetAccountIdOk() (int32, bool)

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

HasAccountId

func (o *Catalog) HasAccountId() bool

HasAccountId returns a boolean if a field has been set.

SetAccountId

func (o *Catalog) SetAccountId(v int32)

SetAccountId gets a reference to the given int32 and assigns it to the AccountId field.

GetModified

func (o *Catalog) GetModified() time.Time

GetModified returns the Modified field if non-nil, zero value otherwise.

GetModifiedOk

func (o *Catalog) GetModifiedOk() (time.Time, bool)

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

HasModified

func (o *Catalog) HasModified() bool

HasModified returns a boolean if a field has been set.

SetModified

func (o *Catalog) SetModified(v time.Time)

SetModified gets a reference to the given time.Time and assigns it to the Modified field.

GetName

func (o *Catalog) GetName() string

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

GetNameOk

func (o *Catalog) 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.

HasName

func (o *Catalog) HasName() bool

HasName returns a boolean if a field has been set.

SetName

func (o *Catalog) SetName(v string)

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

GetDescription

func (o *Catalog) GetDescription() string

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

GetDescriptionOk

func (o *Catalog) 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.

HasDescription

func (o *Catalog) HasDescription() bool

HasDescription returns a boolean if a field has been set.

SetDescription

func (o *Catalog) SetDescription(v string)

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

GetSubscribedApplicationsIds

func (o *Catalog) GetSubscribedApplicationsIds() []int32

GetSubscribedApplicationsIds returns the SubscribedApplicationsIds field if non-nil, zero value otherwise.

GetSubscribedApplicationsIdsOk

func (o *Catalog) GetSubscribedApplicationsIdsOk() ([]int32, bool)

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

HasSubscribedApplicationsIds

func (o *Catalog) HasSubscribedApplicationsIds() bool

HasSubscribedApplicationsIds returns a boolean if a field has been set.

SetSubscribedApplicationsIds

func (o *Catalog) SetSubscribedApplicationsIds(v []int32)

SetSubscribedApplicationsIds gets a reference to the given []int32 and assigns it to the SubscribedApplicationsIds field.

GetVersion

func (o *Catalog) GetVersion() int32

GetVersion returns the Version field if non-nil, zero value otherwise.

GetVersionOk

func (o *Catalog) GetVersionOk() (int32, bool)

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

HasVersion

func (o *Catalog) HasVersion() bool

HasVersion returns a boolean if a field has been set.

SetVersion

func (o *Catalog) SetVersion(v int32)

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

GetCreatedBy

func (o *Catalog) GetCreatedBy() int32

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

GetCreatedByOk

func (o *Catalog) GetCreatedByOk() (int32, 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.

HasCreatedBy

func (o *Catalog) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

SetCreatedBy

func (o *Catalog) SetCreatedBy(v int32)

SetCreatedBy gets a reference to the given int32 and assigns it to the CreatedBy field.

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