Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 2.76 KB

ExecuteSepaMoneyTransferParams.md

File metadata and controls

77 lines (42 loc) · 2.76 KB

ExecuteSepaMoneyTransferParams

Properties

Name Type Description Notes
AccountId int64 Identifier of the bank account that you want to transfer money from
BankingTan Pointer to string Banking TAN that the user received from the bank for executing the money transfer order. The field is required if you are licensed to perform SEPA money transfers yourself. Otherwise, i.e. when finAPI's Web Form flow is required, the Web Form will deal with executing the service itself. [optional]

Methods

NewExecuteSepaMoneyTransferParams

func NewExecuteSepaMoneyTransferParams(accountId int64, ) *ExecuteSepaMoneyTransferParams

NewExecuteSepaMoneyTransferParams instantiates a new ExecuteSepaMoneyTransferParams 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

NewExecuteSepaMoneyTransferParamsWithDefaults

func NewExecuteSepaMoneyTransferParamsWithDefaults() *ExecuteSepaMoneyTransferParams

NewExecuteSepaMoneyTransferParamsWithDefaults instantiates a new ExecuteSepaMoneyTransferParams 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

GetAccountId

func (o *ExecuteSepaMoneyTransferParams) GetAccountId() int64

GetAccountId returns the AccountId field if non-nil, zero value otherwise.

GetAccountIdOk

func (o *ExecuteSepaMoneyTransferParams) GetAccountIdOk() (*int64, bool)

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

SetAccountId

func (o *ExecuteSepaMoneyTransferParams) SetAccountId(v int64)

SetAccountId sets AccountId field to given value.

GetBankingTan

func (o *ExecuteSepaMoneyTransferParams) GetBankingTan() string

GetBankingTan returns the BankingTan field if non-nil, zero value otherwise.

GetBankingTanOk

func (o *ExecuteSepaMoneyTransferParams) GetBankingTanOk() (*string, bool)

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

SetBankingTan

func (o *ExecuteSepaMoneyTransferParams) SetBankingTan(v string)

SetBankingTan sets BankingTan field to given value.

HasBankingTan

func (o *ExecuteSepaMoneyTransferParams) HasBankingTan() bool

HasBankingTan returns a boolean if a field has been set.

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