Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.07 KB

PaymentRecipient.md

File metadata and controls

108 lines (59 loc) · 3.07 KB

PaymentRecipient

Properties

Name Type Description Notes
Iban string A normalized (without spaces) IBAN of the counterparty's account
Name string Name of the counterparty.<br/>Note that neither finAPI nor the involved bank are guaranteed to validate the counterparty name. Even if the name does not depict the actual registered account holder of the target account, the order might still be successful.
Bic Pointer to NullableString BIC of the counterparty's account [optional]

Methods

NewPaymentRecipient

func NewPaymentRecipient(iban string, name string, ) *PaymentRecipient

NewPaymentRecipient instantiates a new PaymentRecipient 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

NewPaymentRecipientWithDefaults

func NewPaymentRecipientWithDefaults() *PaymentRecipient

NewPaymentRecipientWithDefaults instantiates a new PaymentRecipient 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

GetIban

func (o *PaymentRecipient) GetIban() string

GetIban returns the Iban field if non-nil, zero value otherwise.

GetIbanOk

func (o *PaymentRecipient) GetIbanOk() (*string, bool)

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

SetIban

func (o *PaymentRecipient) SetIban(v string)

SetIban sets Iban field to given value.

GetName

func (o *PaymentRecipient) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *PaymentRecipient) GetNameOk() (*string, bool)

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

SetName

func (o *PaymentRecipient) SetName(v string)

SetName sets Name field to given value.

GetBic

func (o *PaymentRecipient) GetBic() string

GetBic returns the Bic field if non-nil, zero value otherwise.

GetBicOk

func (o *PaymentRecipient) GetBicOk() (*string, bool)

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

SetBic

func (o *PaymentRecipient) SetBic(v string)

SetBic sets Bic field to given value.

HasBic

func (o *PaymentRecipient) HasBic() bool

HasBic returns a boolean if a field has been set.

SetBicNil

func (o *PaymentRecipient) SetBicNil(b bool)

SetBicNil sets the value for Bic to be an explicit nil

UnsetBic

func (o *PaymentRecipient) UnsetBic()

UnsetBic ensures that no value is present for Bic, not even an explicit nil

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