Skip to content

Latest commit

 

History

History
224 lines (119 loc) · 6.09 KB

File metadata and controls

224 lines (119 loc) · 6.09 KB

Catalog

Properties

Name Type Description Notes
Id Pointer to int64 The internal ID of this entity.
Created Pointer to time.Time The time this entity was created.
AccountId Pointer to int64 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 []int64 A list of the IDs of the applications that are subscribed to this catalog. [optional]
Version Pointer to int64 The current version of this catalog.
CreatedBy Pointer to int64 The ID of user who created this catalog.

Methods

NewCatalog

func NewCatalog(id int64, created time.Time, accountId int64, modified time.Time, name string, description string, version int64, createdBy int64, ) *Catalog

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

NewCatalogWithDefaults

func NewCatalogWithDefaults() *Catalog

NewCatalogWithDefaults instantiates a new Catalog object This 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 *Catalog) GetId() int64

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

GetIdOk

func (o *Catalog) GetIdOk() (*int64, 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 *Catalog) SetId(v int64)

SetId sets Id field to given value.

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.

SetCreated

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

SetCreated sets Created field to given value.

GetAccountId

func (o *Catalog) GetAccountId() int64

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

GetAccountIdOk

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

SetAccountId

func (o *Catalog) SetAccountId(v int64)

SetAccountId sets AccountId field to given value.

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.

SetModified

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

SetModified sets Modified field to given value.

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.

SetName

func (o *Catalog) SetName(v string)

SetName sets Name field to given value.

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.

SetDescription

func (o *Catalog) SetDescription(v string)

SetDescription sets Description field to given value.

GetSubscribedApplicationsIds

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

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

GetSubscribedApplicationsIdsOk

func (o *Catalog) GetSubscribedApplicationsIdsOk() (*[]int64, 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.

SetSubscribedApplicationsIds

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

SetSubscribedApplicationsIds sets SubscribedApplicationsIds field to given value.

HasSubscribedApplicationsIds

func (o *Catalog) HasSubscribedApplicationsIds() bool

HasSubscribedApplicationsIds returns a boolean if a field has been set.

GetVersion

func (o *Catalog) GetVersion() int64

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

GetVersionOk

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

SetVersion

func (o *Catalog) SetVersion(v int64)

SetVersion sets Version field to given value.

GetCreatedBy

func (o *Catalog) GetCreatedBy() int64

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

GetCreatedByOk

func (o *Catalog) GetCreatedByOk() (*int64, 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 *Catalog) SetCreatedBy(v int64)

SetCreatedBy sets CreatedBy field to given value.

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