Skip to content

Latest commit

 

History

History
124 lines (67 loc) · 3.92 KB

File metadata and controls

124 lines (67 loc) · 3.92 KB

IntegrationEvent

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]
Type Pointer to string A string representing the event. Must not be a reserved event name.
Attributes Pointer to map[string]interface{} Arbitrary additional JSON data associated with the event.

Methods

NewIntegrationEvent

func NewIntegrationEvent(type_ string, attributes map[string]interface{}, ) *IntegrationEvent

NewIntegrationEvent instantiates a new IntegrationEvent 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

NewIntegrationEventWithDefaults

func NewIntegrationEventWithDefaults() *IntegrationEvent

NewIntegrationEventWithDefaults instantiates a new IntegrationEvent 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

GetProfileId

func (o *IntegrationEvent) GetProfileId() string

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

GetProfileIdOk

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

SetProfileId

func (o *IntegrationEvent) SetProfileId(v string)

SetProfileId sets ProfileId field to given value.

HasProfileId

func (o *IntegrationEvent) HasProfileId() bool

HasProfileId returns a boolean if a field has been set.

GetStoreIntegrationId

func (o *IntegrationEvent) GetStoreIntegrationId() string

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

GetStoreIntegrationIdOk

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

SetStoreIntegrationId

func (o *IntegrationEvent) SetStoreIntegrationId(v string)

SetStoreIntegrationId sets StoreIntegrationId field to given value.

HasStoreIntegrationId

func (o *IntegrationEvent) HasStoreIntegrationId() bool

HasStoreIntegrationId returns a boolean if a field has been set.

GetType

func (o *IntegrationEvent) GetType() string

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

GetTypeOk

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

SetType

func (o *IntegrationEvent) SetType(v string)

SetType sets Type field to given value.

GetAttributes

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

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

GetAttributesOk

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

SetAttributes

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

SetAttributes sets Attributes field to given value.

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