| Name | Type | Description | Notes |
|---|---|---|---|
| Type | string | Recipient Type (Only nuban at this time) | |
| Name | string | Recipient's name | |
| AccountNumber | string | Recipient's bank account number | |
| BankCode | string | Recipient's bank code. You can get the list of Bank Codes by calling the List Banks endpoint | |
| Description | Pointer to string | A description for this recipient | [optional] |
| Currency | Pointer to string | Currency for the account receiving the transfer | [optional] |
| AuthorizationCode | Pointer to string | An authorization code from a previous transaction | [optional] |
| Metadata | Pointer to string | Stringified JSON object of custom data | [optional] |
func NewTransferRecipientCreate(type_ string, name string, accountNumber string, bankCode string, ) *TransferRecipientCreate
NewTransferRecipientCreate instantiates a new TransferRecipientCreate 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 NewTransferRecipientCreateWithDefaults() *TransferRecipientCreate
NewTransferRecipientCreateWithDefaults instantiates a new TransferRecipientCreate 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 *TransferRecipientCreate) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *TransferRecipientCreate) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferRecipientCreate) SetType(v string)
SetType sets Type field to given value.
func (o *TransferRecipientCreate) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *TransferRecipientCreate) 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.
func (o *TransferRecipientCreate) SetName(v string)
SetName sets Name field to given value.
func (o *TransferRecipientCreate) GetAccountNumber() string
GetAccountNumber returns the AccountNumber field if non-nil, zero value otherwise.
func (o *TransferRecipientCreate) GetAccountNumberOk() (*string, bool)
GetAccountNumberOk returns a tuple with the AccountNumber field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferRecipientCreate) SetAccountNumber(v string)
SetAccountNumber sets AccountNumber field to given value.
func (o *TransferRecipientCreate) GetBankCode() string
GetBankCode returns the BankCode field if non-nil, zero value otherwise.
func (o *TransferRecipientCreate) GetBankCodeOk() (*string, bool)
GetBankCodeOk returns a tuple with the BankCode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferRecipientCreate) SetBankCode(v string)
SetBankCode sets BankCode field to given value.
func (o *TransferRecipientCreate) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *TransferRecipientCreate) GetDescriptionOk() (*string, bool)
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferRecipientCreate) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *TransferRecipientCreate) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *TransferRecipientCreate) GetCurrency() string
GetCurrency returns the Currency field if non-nil, zero value otherwise.
func (o *TransferRecipientCreate) GetCurrencyOk() (*string, bool)
GetCurrencyOk returns a tuple with the Currency field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferRecipientCreate) SetCurrency(v string)
SetCurrency sets Currency field to given value.
func (o *TransferRecipientCreate) HasCurrency() bool
HasCurrency returns a boolean if a field has been set.
func (o *TransferRecipientCreate) GetAuthorizationCode() string
GetAuthorizationCode returns the AuthorizationCode field if non-nil, zero value otherwise.
func (o *TransferRecipientCreate) GetAuthorizationCodeOk() (*string, bool)
GetAuthorizationCodeOk returns a tuple with the AuthorizationCode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferRecipientCreate) SetAuthorizationCode(v string)
SetAuthorizationCode sets AuthorizationCode field to given value.
func (o *TransferRecipientCreate) HasAuthorizationCode() bool
HasAuthorizationCode returns a boolean if a field has been set.
func (o *TransferRecipientCreate) GetMetadata() string
GetMetadata returns the Metadata field if non-nil, zero value otherwise.
func (o *TransferRecipientCreate) GetMetadataOk() (*string, bool)
GetMetadataOk returns a tuple with the Metadata field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferRecipientCreate) SetMetadata(v string)
SetMetadata sets Metadata field to given value.
func (o *TransferRecipientCreate) HasMetadata() bool
HasMetadata returns a boolean if a field has been set.