Skip to content

Latest commit

 

History

History
169 lines (90 loc) · 6.27 KB

IntegrationEventV2Request.md

File metadata and controls

169 lines (90 loc) · 6.27 KB

IntegrationEventV2Request

Properties

Name Type Description Notes
ProfileId Pointer to string ID of the customer profile set by your integration layer. Note: If the customer does not yet have a known `profileId`, we recommend you use a guest `profileId`. [optional]
StoreIntegrationId Pointer to string The integration ID of the store. You choose this ID when you create a store. [optional]
EvaluableCampaignIds Pointer to []int32 When using the `dry` query parameter, use this property to list the campaign to be evaluated by the Rule Engine. These campaigns will be evaluated, even if they are disabled, allowing you to test specific campaigns before activating them. [optional]
Type Pointer to string A string representing the event name. Must not be a reserved event name. You create this value when you create an attribute of type `event` in the Campaign Manager.
Attributes Pointer to map[string]interface{} Arbitrary additional JSON properties associated with the event. They must be created in the Campaign Manager before setting them with this property. See creating custom attributes. [optional]
ResponseContent Pointer to []string Optional list of requested information to be present on the response related to the tracking custom event. [optional]

Methods

GetProfileId

func (o *IntegrationEventV2Request) GetProfileId() string

GetProfileId returns the ProfileId field if non-nil, zero value otherwise.

GetProfileIdOk

func (o *IntegrationEventV2Request) GetProfileIdOk() (string, bool)

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

HasProfileId

func (o *IntegrationEventV2Request) HasProfileId() bool

HasProfileId returns a boolean if a field has been set.

SetProfileId

func (o *IntegrationEventV2Request) SetProfileId(v string)

SetProfileId gets a reference to the given string and assigns it to the ProfileId field.

GetStoreIntegrationId

func (o *IntegrationEventV2Request) GetStoreIntegrationId() string

GetStoreIntegrationId returns the StoreIntegrationId field if non-nil, zero value otherwise.

GetStoreIntegrationIdOk

func (o *IntegrationEventV2Request) GetStoreIntegrationIdOk() (string, bool)

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

HasStoreIntegrationId

func (o *IntegrationEventV2Request) HasStoreIntegrationId() bool

HasStoreIntegrationId returns a boolean if a field has been set.

SetStoreIntegrationId

func (o *IntegrationEventV2Request) SetStoreIntegrationId(v string)

SetStoreIntegrationId gets a reference to the given string and assigns it to the StoreIntegrationId field.

GetEvaluableCampaignIds

func (o *IntegrationEventV2Request) GetEvaluableCampaignIds() []int32

GetEvaluableCampaignIds returns the EvaluableCampaignIds field if non-nil, zero value otherwise.

GetEvaluableCampaignIdsOk

func (o *IntegrationEventV2Request) GetEvaluableCampaignIdsOk() ([]int32, bool)

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

HasEvaluableCampaignIds

func (o *IntegrationEventV2Request) HasEvaluableCampaignIds() bool

HasEvaluableCampaignIds returns a boolean if a field has been set.

SetEvaluableCampaignIds

func (o *IntegrationEventV2Request) SetEvaluableCampaignIds(v []int32)

SetEvaluableCampaignIds gets a reference to the given []int32 and assigns it to the EvaluableCampaignIds field.

GetType

func (o *IntegrationEventV2Request) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *IntegrationEventV2Request) GetTypeOk() (string, bool)

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

HasType

func (o *IntegrationEventV2Request) HasType() bool

HasType returns a boolean if a field has been set.

SetType

func (o *IntegrationEventV2Request) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

GetAttributes

func (o *IntegrationEventV2Request) GetAttributes() map[string]interface{}

GetAttributes returns the Attributes field if non-nil, zero value otherwise.

GetAttributesOk

func (o *IntegrationEventV2Request) GetAttributesOk() (map[string]interface{}, bool)

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

HasAttributes

func (o *IntegrationEventV2Request) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

SetAttributes

func (o *IntegrationEventV2Request) SetAttributes(v map[string]interface{})

SetAttributes gets a reference to the given map[string]interface{} and assigns it to the Attributes field.

GetResponseContent

func (o *IntegrationEventV2Request) GetResponseContent() []string

GetResponseContent returns the ResponseContent field if non-nil, zero value otherwise.

GetResponseContentOk

func (o *IntegrationEventV2Request) GetResponseContentOk() ([]string, bool)

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

HasResponseContent

func (o *IntegrationEventV2Request) HasResponseContent() bool

HasResponseContent returns a boolean if a field has been set.

SetResponseContent

func (o *IntegrationEventV2Request) SetResponseContent(v []string)

SetResponseContent gets a reference to the given []string and assigns it to the ResponseContent field.

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