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] |
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
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
func (o *ExecuteSepaMoneyTransferParams) GetAccountId() int64
GetAccountId returns the AccountId field if non-nil, zero value otherwise.
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.
func (o *ExecuteSepaMoneyTransferParams) SetAccountId(v int64)
SetAccountId sets AccountId field to given value.
func (o *ExecuteSepaMoneyTransferParams) GetBankingTan() string
GetBankingTan returns the BankingTan field if non-nil, zero value otherwise.
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.
func (o *ExecuteSepaMoneyTransferParams) SetBankingTan(v string)
SetBankingTan sets BankingTan field to given value.
func (o *ExecuteSepaMoneyTransferParams) HasBankingTan() bool
HasBankingTan returns a boolean if a field has been set.