Name | Type | Description | Notes |
---|---|---|---|
Amount | Amount | ||
Purpose | Pointer to NullableString | The purpose of the transfer transaction | [optional] |
SepaPurposeCode | Pointer to NullableString | SEPA purpose code, according to ISO 20022, external codes set.<br/>Note that the SEPA purpose code may be ignored by some banks. | [optional] |
EndToEndId | Pointer to NullableString | End-To-End ID for the transfer transaction | [optional] |
Recipient | PaymentRecipient |
func NewPaymentOrder(amount Amount, recipient PaymentRecipient, ) *PaymentOrder
NewPaymentOrder instantiates a new PaymentOrder 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
func NewPaymentOrderWithDefaults() *PaymentOrder
NewPaymentOrderWithDefaults instantiates a new PaymentOrder 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
func (o *PaymentOrder) GetAmount() Amount
GetAmount returns the Amount field if non-nil, zero value otherwise.
func (o *PaymentOrder) GetAmountOk() (*Amount, 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.
func (o *PaymentOrder) SetAmount(v Amount)
SetAmount sets Amount field to given value.
func (o *PaymentOrder) GetPurpose() string
GetPurpose returns the Purpose field if non-nil, zero value otherwise.
func (o *PaymentOrder) GetPurposeOk() (*string, bool)
GetPurposeOk returns a tuple with the Purpose field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaymentOrder) SetPurpose(v string)
SetPurpose sets Purpose field to given value.
func (o *PaymentOrder) HasPurpose() bool
HasPurpose returns a boolean if a field has been set.
func (o *PaymentOrder) SetPurposeNil(b bool)
SetPurposeNil sets the value for Purpose to be an explicit nil
func (o *PaymentOrder) UnsetPurpose()
UnsetPurpose ensures that no value is present for Purpose, not even an explicit nil
func (o *PaymentOrder) GetSepaPurposeCode() string
GetSepaPurposeCode returns the SepaPurposeCode field if non-nil, zero value otherwise.
func (o *PaymentOrder) GetSepaPurposeCodeOk() (*string, bool)
GetSepaPurposeCodeOk returns a tuple with the SepaPurposeCode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaymentOrder) SetSepaPurposeCode(v string)
SetSepaPurposeCode sets SepaPurposeCode field to given value.
func (o *PaymentOrder) HasSepaPurposeCode() bool
HasSepaPurposeCode returns a boolean if a field has been set.
func (o *PaymentOrder) SetSepaPurposeCodeNil(b bool)
SetSepaPurposeCodeNil sets the value for SepaPurposeCode to be an explicit nil
func (o *PaymentOrder) UnsetSepaPurposeCode()
UnsetSepaPurposeCode ensures that no value is present for SepaPurposeCode, not even an explicit nil
func (o *PaymentOrder) GetEndToEndId() string
GetEndToEndId returns the EndToEndId field if non-nil, zero value otherwise.
func (o *PaymentOrder) GetEndToEndIdOk() (*string, bool)
GetEndToEndIdOk returns a tuple with the EndToEndId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaymentOrder) SetEndToEndId(v string)
SetEndToEndId sets EndToEndId field to given value.
func (o *PaymentOrder) HasEndToEndId() bool
HasEndToEndId returns a boolean if a field has been set.
func (o *PaymentOrder) SetEndToEndIdNil(b bool)
SetEndToEndIdNil sets the value for EndToEndId to be an explicit nil
func (o *PaymentOrder) UnsetEndToEndId()
UnsetEndToEndId ensures that no value is present for EndToEndId, not even an explicit nil
func (o *PaymentOrder) GetRecipient() PaymentRecipient
GetRecipient returns the Recipient field if non-nil, zero value otherwise.
func (o *PaymentOrder) GetRecipientOk() (*PaymentRecipient, bool)
GetRecipientOk returns a tuple with the Recipient field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *PaymentOrder) SetRecipient(v PaymentRecipient)
SetRecipient sets Recipient field to given value.