Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 2.76 KB

File metadata and controls

77 lines (42 loc) · 2.76 KB

IntegrationRequest

Properties

Name Type Description Notes
CustomerSession Pointer to NewCustomerSessionV2
ResponseContent Pointer to []string Extends the response with the chosen data entities. Use this property to get as much data as you need in one Update customer session request instead of sending extra requests to other endpoints. Note: To retrieve loyalty card details, your request must include a loyalty card ID. [optional]

Methods

NewIntegrationRequest

func NewIntegrationRequest(customerSession NewCustomerSessionV2, ) *IntegrationRequest

NewIntegrationRequest instantiates a new IntegrationRequest 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

NewIntegrationRequestWithDefaults

func NewIntegrationRequestWithDefaults() *IntegrationRequest

NewIntegrationRequestWithDefaults instantiates a new IntegrationRequest 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

GetCustomerSession

func (o *IntegrationRequest) GetCustomerSession() NewCustomerSessionV2

GetCustomerSession returns the CustomerSession field if non-nil, zero value otherwise.

GetCustomerSessionOk

func (o *IntegrationRequest) GetCustomerSessionOk() (*NewCustomerSessionV2, bool)

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

SetCustomerSession

func (o *IntegrationRequest) SetCustomerSession(v NewCustomerSessionV2)

SetCustomerSession sets CustomerSession field to given value.

GetResponseContent

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

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

GetResponseContentOk

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

SetResponseContent

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

SetResponseContent sets ResponseContent field to given value.

HasResponseContent

func (o *IntegrationRequest) HasResponseContent() bool

HasResponseContent returns a boolean if a field has been set.

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