Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 2.1 KB

Recipient.md

File metadata and controls

72 lines (39 loc) · 2.1 KB

Recipient

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.

Methods

NewRecipient

func NewRecipient(iban string, name string, ) *Recipient

NewRecipient instantiates a new Recipient 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

NewRecipientWithDefaults

func NewRecipientWithDefaults() *Recipient

NewRecipientWithDefaults instantiates a new Recipient 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 *Recipient) GetIban() string

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

GetIbanOk

func (o *Recipient) 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 *Recipient) SetIban(v string)

SetIban sets Iban field to given value.

GetName

func (o *Recipient) GetName() string

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

GetNameOk

func (o *Recipient) 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 *Recipient) SetName(v string)

SetName sets Name field to given value.

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