Name | Type | Description | Notes |
---|---|---|---|
RefId | Pointer to string | The optional client-specified ID (for idempotence). | [optional] |
Amount | string | The amount to withdraw. | |
Asset | string | The asset to withdraw. Current supported asset: "USD". | |
FiatAccountId | string | The fiat account (`fiat_account_id`) destination. | |
ProfileId | string | The Profile (`profile_id`) to withdraw from. | |
IdentityId | string | The Identity (`identity_id`) of the user making the withdrawal. | |
AccountId | Pointer to string | The Account (`account_id`) associated with the Identity of the user making the withdrawal. Required only for customers with 3rd-Party integrations initiating transfers on behalf of their end users. | [optional] |
Metadata | Pointer to map[string]string | Optional client-specified metadata. Up to 6 key/value pairs may be provided. Each key and value must be less than or equal to 100 characters. | [optional] |
Memo | Pointer to string | Optional additional memo to be set on the outgoing wire. Only used for wire withdrawals. | [optional] |
func NewCreateFiatWithdrawalRequest(amount string, asset string, fiatAccountId string, profileId string, identityId string, ) *CreateFiatWithdrawalRequest
NewCreateFiatWithdrawalRequest instantiates a new CreateFiatWithdrawalRequest 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 NewCreateFiatWithdrawalRequestWithDefaults() *CreateFiatWithdrawalRequest
NewCreateFiatWithdrawalRequestWithDefaults instantiates a new CreateFiatWithdrawalRequest 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 *CreateFiatWithdrawalRequest) GetRefId() string
GetRefId returns the RefId field if non-nil, zero value otherwise.
func (o *CreateFiatWithdrawalRequest) GetRefIdOk() (*string, bool)
GetRefIdOk returns a tuple with the RefId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateFiatWithdrawalRequest) SetRefId(v string)
SetRefId sets RefId field to given value.
func (o *CreateFiatWithdrawalRequest) HasRefId() bool
HasRefId returns a boolean if a field has been set.
func (o *CreateFiatWithdrawalRequest) GetAmount() string
GetAmount returns the Amount field if non-nil, zero value otherwise.
func (o *CreateFiatWithdrawalRequest) GetAmountOk() (*string, bool)
GetAmountOk returns a tuple with the Amount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateFiatWithdrawalRequest) SetAmount(v string)
SetAmount sets Amount field to given value.
func (o *CreateFiatWithdrawalRequest) GetAsset() string
GetAsset returns the Asset field if non-nil, zero value otherwise.
func (o *CreateFiatWithdrawalRequest) GetAssetOk() (*string, bool)
GetAssetOk returns a tuple with the Asset field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateFiatWithdrawalRequest) SetAsset(v string)
SetAsset sets Asset field to given value.
func (o *CreateFiatWithdrawalRequest) GetFiatAccountId() string
GetFiatAccountId returns the FiatAccountId field if non-nil, zero value otherwise.
func (o *CreateFiatWithdrawalRequest) GetFiatAccountIdOk() (*string, bool)
GetFiatAccountIdOk returns a tuple with the FiatAccountId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateFiatWithdrawalRequest) SetFiatAccountId(v string)
SetFiatAccountId sets FiatAccountId field to given value.
func (o *CreateFiatWithdrawalRequest) GetProfileId() string
GetProfileId returns the ProfileId field if non-nil, zero value otherwise.
func (o *CreateFiatWithdrawalRequest) GetProfileIdOk() (*string, bool)
GetProfileIdOk returns a tuple with the ProfileId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateFiatWithdrawalRequest) SetProfileId(v string)
SetProfileId sets ProfileId field to given value.
func (o *CreateFiatWithdrawalRequest) GetIdentityId() string
GetIdentityId returns the IdentityId field if non-nil, zero value otherwise.
func (o *CreateFiatWithdrawalRequest) GetIdentityIdOk() (*string, bool)
GetIdentityIdOk returns a tuple with the IdentityId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateFiatWithdrawalRequest) SetIdentityId(v string)
SetIdentityId sets IdentityId field to given value.
func (o *CreateFiatWithdrawalRequest) GetAccountId() string
GetAccountId returns the AccountId field if non-nil, zero value otherwise.
func (o *CreateFiatWithdrawalRequest) GetAccountIdOk() (*string, 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 *CreateFiatWithdrawalRequest) SetAccountId(v string)
SetAccountId sets AccountId field to given value.
func (o *CreateFiatWithdrawalRequest) HasAccountId() bool
HasAccountId returns a boolean if a field has been set.
func (o *CreateFiatWithdrawalRequest) GetMetadata() map[string]string
GetMetadata returns the Metadata field if non-nil, zero value otherwise.
func (o *CreateFiatWithdrawalRequest) GetMetadataOk() (*map[string]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 *CreateFiatWithdrawalRequest) SetMetadata(v map[string]string)
SetMetadata sets Metadata field to given value.
func (o *CreateFiatWithdrawalRequest) HasMetadata() bool
HasMetadata returns a boolean if a field has been set.
func (o *CreateFiatWithdrawalRequest) GetMemo() string
GetMemo returns the Memo field if non-nil, zero value otherwise.
func (o *CreateFiatWithdrawalRequest) GetMemoOk() (*string, bool)
GetMemoOk returns a tuple with the Memo field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateFiatWithdrawalRequest) SetMemo(v string)
SetMemo sets Memo field to given value.
func (o *CreateFiatWithdrawalRequest) HasMemo() bool
HasMemo returns a boolean if a field has been set.