Skip to content

Latest commit

 

History

History
117 lines (62 loc) · 3 KB

ValueMap.md

File metadata and controls

117 lines (62 loc) · 3 KB

ValueMap

Properties

Name Type Description Notes
Id Pointer to int32 Unique ID for this entity. Not to be confused with the Integration ID, which is set by your integration layer and used in most endpoints.
Created Pointer to time.Time [optional]
CreatedBy Pointer to int32 The ID of the user who created the value map. [optional]
CampaignId Pointer to int32

Methods

GetId

func (o *ValueMap) GetId() int32

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

GetIdOk

func (o *ValueMap) 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 *ValueMap) HasId() bool

HasId returns a boolean if a field has been set.

SetId

func (o *ValueMap) SetId(v int32)

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

GetCreated

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

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

GetCreatedOk

func (o *ValueMap) 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 *ValueMap) HasCreated() bool

HasCreated returns a boolean if a field has been set.

SetCreated

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

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

GetCreatedBy

func (o *ValueMap) GetCreatedBy() int32

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

GetCreatedByOk

func (o *ValueMap) 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 *ValueMap) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

SetCreatedBy

func (o *ValueMap) SetCreatedBy(v int32)

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

GetCampaignId

func (o *ValueMap) GetCampaignId() int32

GetCampaignId returns the CampaignId field if non-nil, zero value otherwise.

GetCampaignIdOk

func (o *ValueMap) GetCampaignIdOk() (int32, bool)

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

HasCampaignId

func (o *ValueMap) HasCampaignId() bool

HasCampaignId returns a boolean if a field has been set.

SetCampaignId

func (o *ValueMap) SetCampaignId(v int32)

SetCampaignId gets a reference to the given int32 and assigns it to the CampaignId field.

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