Skip to content

Latest commit

 

History

History
602 lines (325 loc) · 18.2 KB

File metadata and controls

602 lines (325 loc) · 18.2 KB

PaymentIntentResponse

Properties

Name Type Description Notes
PaymentToken Pointer to string [optional]
Amount Pointer to float32 [optional]
Title Pointer to string [optional]
ShortDescription Pointer to string [optional]
PaymentDescription Pointer to string [optional]
InvoiceNumber Pointer to string [optional]
ExpiresOn Pointer to string [optional]
Intent Pointer to PaymentIntentResponseIntent [optional]
SaveForFuture Pointer to bool [optional]
EnablePremiumFinance Pointer to bool [optional]
Splits Pointer to []PaymentIntentRequestSplitsInner [optional]
QuoteKey Pointer to string [optional]
AccountNumber Pointer to string [optional]
SuppressTechnologyFee Pointer to bool [optional]
OverrideTechnologyFee Pointer to float32 [optional]
IsPremiumFinancier Pointer to bool [optional]
Pfr Pointer to PaymentIntentRequestPfr [optional]
Customers Pointer to []PaymentIntentResponseCustomersInner [optional]
AdditionalDetailsPreference Pointer to string [optional]
SelectedCustomerFields Pointer to string [optional]
ReferenceDataList Pointer to []PaymentIntentRequestReferenceDataListInner [optional]
DisplayMode Pointer to string [optional]

Methods

NewPaymentIntentResponse

func NewPaymentIntentResponse() *PaymentIntentResponse

NewPaymentIntentResponse instantiates a new PaymentIntentResponse 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

NewPaymentIntentResponseWithDefaults

func NewPaymentIntentResponseWithDefaults() *PaymentIntentResponse

NewPaymentIntentResponseWithDefaults instantiates a new PaymentIntentResponse 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

GetPaymentToken

func (o *PaymentIntentResponse) GetPaymentToken() string

GetPaymentToken returns the PaymentToken field if non-nil, zero value otherwise.

GetPaymentTokenOk

func (o *PaymentIntentResponse) GetPaymentTokenOk() (*string, bool)

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

SetPaymentToken

func (o *PaymentIntentResponse) SetPaymentToken(v string)

SetPaymentToken sets PaymentToken field to given value.

HasPaymentToken

func (o *PaymentIntentResponse) HasPaymentToken() bool

HasPaymentToken returns a boolean if a field has been set.

GetAmount

func (o *PaymentIntentResponse) GetAmount() float32

GetAmount returns the Amount field if non-nil, zero value otherwise.

GetAmountOk

func (o *PaymentIntentResponse) GetAmountOk() (*float32, bool)

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

SetAmount

func (o *PaymentIntentResponse) SetAmount(v float32)

SetAmount sets Amount field to given value.

HasAmount

func (o *PaymentIntentResponse) HasAmount() bool

HasAmount returns a boolean if a field has been set.

GetTitle

func (o *PaymentIntentResponse) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *PaymentIntentResponse) GetTitleOk() (*string, bool)

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

SetTitle

func (o *PaymentIntentResponse) SetTitle(v string)

SetTitle sets Title field to given value.

HasTitle

func (o *PaymentIntentResponse) HasTitle() bool

HasTitle returns a boolean if a field has been set.

GetShortDescription

func (o *PaymentIntentResponse) GetShortDescription() string

GetShortDescription returns the ShortDescription field if non-nil, zero value otherwise.

GetShortDescriptionOk

func (o *PaymentIntentResponse) GetShortDescriptionOk() (*string, bool)

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

SetShortDescription

func (o *PaymentIntentResponse) SetShortDescription(v string)

SetShortDescription sets ShortDescription field to given value.

HasShortDescription

func (o *PaymentIntentResponse) HasShortDescription() bool

HasShortDescription returns a boolean if a field has been set.

GetPaymentDescription

func (o *PaymentIntentResponse) GetPaymentDescription() string

GetPaymentDescription returns the PaymentDescription field if non-nil, zero value otherwise.

GetPaymentDescriptionOk

func (o *PaymentIntentResponse) GetPaymentDescriptionOk() (*string, bool)

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

SetPaymentDescription

func (o *PaymentIntentResponse) SetPaymentDescription(v string)

SetPaymentDescription sets PaymentDescription field to given value.

HasPaymentDescription

func (o *PaymentIntentResponse) HasPaymentDescription() bool

HasPaymentDescription returns a boolean if a field has been set.

GetInvoiceNumber

func (o *PaymentIntentResponse) GetInvoiceNumber() string

GetInvoiceNumber returns the InvoiceNumber field if non-nil, zero value otherwise.

GetInvoiceNumberOk

func (o *PaymentIntentResponse) GetInvoiceNumberOk() (*string, bool)

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

SetInvoiceNumber

func (o *PaymentIntentResponse) SetInvoiceNumber(v string)

SetInvoiceNumber sets InvoiceNumber field to given value.

HasInvoiceNumber

func (o *PaymentIntentResponse) HasInvoiceNumber() bool

HasInvoiceNumber returns a boolean if a field has been set.

GetExpiresOn

func (o *PaymentIntentResponse) GetExpiresOn() string

GetExpiresOn returns the ExpiresOn field if non-nil, zero value otherwise.

GetExpiresOnOk

func (o *PaymentIntentResponse) GetExpiresOnOk() (*string, bool)

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

SetExpiresOn

func (o *PaymentIntentResponse) SetExpiresOn(v string)

SetExpiresOn sets ExpiresOn field to given value.

HasExpiresOn

func (o *PaymentIntentResponse) HasExpiresOn() bool

HasExpiresOn returns a boolean if a field has been set.

GetIntent

func (o *PaymentIntentResponse) GetIntent() PaymentIntentResponseIntent

GetIntent returns the Intent field if non-nil, zero value otherwise.

GetIntentOk

func (o *PaymentIntentResponse) GetIntentOk() (*PaymentIntentResponseIntent, bool)

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

SetIntent

func (o *PaymentIntentResponse) SetIntent(v PaymentIntentResponseIntent)

SetIntent sets Intent field to given value.

HasIntent

func (o *PaymentIntentResponse) HasIntent() bool

HasIntent returns a boolean if a field has been set.

GetSaveForFuture

func (o *PaymentIntentResponse) GetSaveForFuture() bool

GetSaveForFuture returns the SaveForFuture field if non-nil, zero value otherwise.

GetSaveForFutureOk

func (o *PaymentIntentResponse) GetSaveForFutureOk() (*bool, bool)

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

SetSaveForFuture

func (o *PaymentIntentResponse) SetSaveForFuture(v bool)

SetSaveForFuture sets SaveForFuture field to given value.

HasSaveForFuture

func (o *PaymentIntentResponse) HasSaveForFuture() bool

HasSaveForFuture returns a boolean if a field has been set.

GetEnablePremiumFinance

func (o *PaymentIntentResponse) GetEnablePremiumFinance() bool

GetEnablePremiumFinance returns the EnablePremiumFinance field if non-nil, zero value otherwise.

GetEnablePremiumFinanceOk

func (o *PaymentIntentResponse) GetEnablePremiumFinanceOk() (*bool, bool)

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

SetEnablePremiumFinance

func (o *PaymentIntentResponse) SetEnablePremiumFinance(v bool)

SetEnablePremiumFinance sets EnablePremiumFinance field to given value.

HasEnablePremiumFinance

func (o *PaymentIntentResponse) HasEnablePremiumFinance() bool

HasEnablePremiumFinance returns a boolean if a field has been set.

GetSplits

func (o *PaymentIntentResponse) GetSplits() []PaymentIntentRequestSplitsInner

GetSplits returns the Splits field if non-nil, zero value otherwise.

GetSplitsOk

func (o *PaymentIntentResponse) GetSplitsOk() (*[]PaymentIntentRequestSplitsInner, bool)

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

SetSplits

func (o *PaymentIntentResponse) SetSplits(v []PaymentIntentRequestSplitsInner)

SetSplits sets Splits field to given value.

HasSplits

func (o *PaymentIntentResponse) HasSplits() bool

HasSplits returns a boolean if a field has been set.

GetQuoteKey

func (o *PaymentIntentResponse) GetQuoteKey() string

GetQuoteKey returns the QuoteKey field if non-nil, zero value otherwise.

GetQuoteKeyOk

func (o *PaymentIntentResponse) GetQuoteKeyOk() (*string, bool)

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

SetQuoteKey

func (o *PaymentIntentResponse) SetQuoteKey(v string)

SetQuoteKey sets QuoteKey field to given value.

HasQuoteKey

func (o *PaymentIntentResponse) HasQuoteKey() bool

HasQuoteKey returns a boolean if a field has been set.

GetAccountNumber

func (o *PaymentIntentResponse) GetAccountNumber() string

GetAccountNumber returns the AccountNumber field if non-nil, zero value otherwise.

GetAccountNumberOk

func (o *PaymentIntentResponse) GetAccountNumberOk() (*string, bool)

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

SetAccountNumber

func (o *PaymentIntentResponse) SetAccountNumber(v string)

SetAccountNumber sets AccountNumber field to given value.

HasAccountNumber

func (o *PaymentIntentResponse) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

GetSuppressTechnologyFee

func (o *PaymentIntentResponse) GetSuppressTechnologyFee() bool

GetSuppressTechnologyFee returns the SuppressTechnologyFee field if non-nil, zero value otherwise.

GetSuppressTechnologyFeeOk

func (o *PaymentIntentResponse) GetSuppressTechnologyFeeOk() (*bool, bool)

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

SetSuppressTechnologyFee

func (o *PaymentIntentResponse) SetSuppressTechnologyFee(v bool)

SetSuppressTechnologyFee sets SuppressTechnologyFee field to given value.

HasSuppressTechnologyFee

func (o *PaymentIntentResponse) HasSuppressTechnologyFee() bool

HasSuppressTechnologyFee returns a boolean if a field has been set.

GetOverrideTechnologyFee

func (o *PaymentIntentResponse) GetOverrideTechnologyFee() float32

GetOverrideTechnologyFee returns the OverrideTechnologyFee field if non-nil, zero value otherwise.

GetOverrideTechnologyFeeOk

func (o *PaymentIntentResponse) GetOverrideTechnologyFeeOk() (*float32, bool)

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

SetOverrideTechnologyFee

func (o *PaymentIntentResponse) SetOverrideTechnologyFee(v float32)

SetOverrideTechnologyFee sets OverrideTechnologyFee field to given value.

HasOverrideTechnologyFee

func (o *PaymentIntentResponse) HasOverrideTechnologyFee() bool

HasOverrideTechnologyFee returns a boolean if a field has been set.

GetIsPremiumFinancier

func (o *PaymentIntentResponse) GetIsPremiumFinancier() bool

GetIsPremiumFinancier returns the IsPremiumFinancier field if non-nil, zero value otherwise.

GetIsPremiumFinancierOk

func (o *PaymentIntentResponse) GetIsPremiumFinancierOk() (*bool, bool)

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

SetIsPremiumFinancier

func (o *PaymentIntentResponse) SetIsPremiumFinancier(v bool)

SetIsPremiumFinancier sets IsPremiumFinancier field to given value.

HasIsPremiumFinancier

func (o *PaymentIntentResponse) HasIsPremiumFinancier() bool

HasIsPremiumFinancier returns a boolean if a field has been set.

GetPfr

func (o *PaymentIntentResponse) GetPfr() PaymentIntentRequestPfr

GetPfr returns the Pfr field if non-nil, zero value otherwise.

GetPfrOk

func (o *PaymentIntentResponse) GetPfrOk() (*PaymentIntentRequestPfr, bool)

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

SetPfr

func (o *PaymentIntentResponse) SetPfr(v PaymentIntentRequestPfr)

SetPfr sets Pfr field to given value.

HasPfr

func (o *PaymentIntentResponse) HasPfr() bool

HasPfr returns a boolean if a field has been set.

GetCustomers

func (o *PaymentIntentResponse) GetCustomers() []PaymentIntentResponseCustomersInner

GetCustomers returns the Customers field if non-nil, zero value otherwise.

GetCustomersOk

func (o *PaymentIntentResponse) GetCustomersOk() (*[]PaymentIntentResponseCustomersInner, bool)

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

SetCustomers

func (o *PaymentIntentResponse) SetCustomers(v []PaymentIntentResponseCustomersInner)

SetCustomers sets Customers field to given value.

HasCustomers

func (o *PaymentIntentResponse) HasCustomers() bool

HasCustomers returns a boolean if a field has been set.

GetAdditionalDetailsPreference

func (o *PaymentIntentResponse) GetAdditionalDetailsPreference() string

GetAdditionalDetailsPreference returns the AdditionalDetailsPreference field if non-nil, zero value otherwise.

GetAdditionalDetailsPreferenceOk

func (o *PaymentIntentResponse) GetAdditionalDetailsPreferenceOk() (*string, bool)

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

SetAdditionalDetailsPreference

func (o *PaymentIntentResponse) SetAdditionalDetailsPreference(v string)

SetAdditionalDetailsPreference sets AdditionalDetailsPreference field to given value.

HasAdditionalDetailsPreference

func (o *PaymentIntentResponse) HasAdditionalDetailsPreference() bool

HasAdditionalDetailsPreference returns a boolean if a field has been set.

GetSelectedCustomerFields

func (o *PaymentIntentResponse) GetSelectedCustomerFields() string

GetSelectedCustomerFields returns the SelectedCustomerFields field if non-nil, zero value otherwise.

GetSelectedCustomerFieldsOk

func (o *PaymentIntentResponse) GetSelectedCustomerFieldsOk() (*string, bool)

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

SetSelectedCustomerFields

func (o *PaymentIntentResponse) SetSelectedCustomerFields(v string)

SetSelectedCustomerFields sets SelectedCustomerFields field to given value.

HasSelectedCustomerFields

func (o *PaymentIntentResponse) HasSelectedCustomerFields() bool

HasSelectedCustomerFields returns a boolean if a field has been set.

GetReferenceDataList

func (o *PaymentIntentResponse) GetReferenceDataList() []PaymentIntentRequestReferenceDataListInner

GetReferenceDataList returns the ReferenceDataList field if non-nil, zero value otherwise.

GetReferenceDataListOk

func (o *PaymentIntentResponse) GetReferenceDataListOk() (*[]PaymentIntentRequestReferenceDataListInner, bool)

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

SetReferenceDataList

func (o *PaymentIntentResponse) SetReferenceDataList(v []PaymentIntentRequestReferenceDataListInner)

SetReferenceDataList sets ReferenceDataList field to given value.

HasReferenceDataList

func (o *PaymentIntentResponse) HasReferenceDataList() bool

HasReferenceDataList returns a boolean if a field has been set.

GetDisplayMode

func (o *PaymentIntentResponse) GetDisplayMode() string

GetDisplayMode returns the DisplayMode field if non-nil, zero value otherwise.

GetDisplayModeOk

func (o *PaymentIntentResponse) GetDisplayModeOk() (*string, bool)

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

SetDisplayMode

func (o *PaymentIntentResponse) SetDisplayMode(v string)

SetDisplayMode sets DisplayMode field to given value.

HasDisplayMode

func (o *PaymentIntentResponse) HasDisplayMode() bool

HasDisplayMode returns a boolean if a field has been set.

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