Name | Type | Description | Notes |
---|---|---|---|
RequestId | string | The request ID that is used to track a transaction request. The request ID is provided by you and must be unique within your organization. | |
Source | TransferSource | ||
TokenId | string | The token ID of the transferred token. You can retrieve the IDs of all the tokens you can use by calling List enabled tokens. For transfers from Exchange Wallets, this property value represents the asset ID. | |
Destination | TransferDestination | ||
CategoryNames | Pointer to []string | The custom category for you to identify your transactions. | [optional] |
Description | Pointer to string | The description of the transfer. | [optional] |
Fee | Pointer to TransactionRequestFee | [optional] | |
AutoFuel | Pointer to AutoFuelType | [optional] |
func NewTransferParams(requestId string, source TransferSource, tokenId string, destination TransferDestination, ) *TransferParams
NewTransferParams instantiates a new TransferParams 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 NewTransferParamsWithDefaults() *TransferParams
NewTransferParamsWithDefaults instantiates a new TransferParams 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 *TransferParams) GetRequestId() string
GetRequestId returns the RequestId field if non-nil, zero value otherwise.
func (o *TransferParams) GetRequestIdOk() (*string, bool)
GetRequestIdOk returns a tuple with the RequestId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferParams) SetRequestId(v string)
SetRequestId sets RequestId field to given value.
func (o *TransferParams) GetSource() TransferSource
GetSource returns the Source field if non-nil, zero value otherwise.
func (o *TransferParams) GetSourceOk() (*TransferSource, bool)
GetSourceOk returns a tuple with the Source field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferParams) SetSource(v TransferSource)
SetSource sets Source field to given value.
func (o *TransferParams) GetTokenId() string
GetTokenId returns the TokenId field if non-nil, zero value otherwise.
func (o *TransferParams) GetTokenIdOk() (*string, bool)
GetTokenIdOk returns a tuple with the TokenId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferParams) SetTokenId(v string)
SetTokenId sets TokenId field to given value.
func (o *TransferParams) GetDestination() TransferDestination
GetDestination returns the Destination field if non-nil, zero value otherwise.
func (o *TransferParams) GetDestinationOk() (*TransferDestination, bool)
GetDestinationOk returns a tuple with the Destination field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferParams) SetDestination(v TransferDestination)
SetDestination sets Destination field to given value.
func (o *TransferParams) GetCategoryNames() []string
GetCategoryNames returns the CategoryNames field if non-nil, zero value otherwise.
func (o *TransferParams) GetCategoryNamesOk() (*[]string, bool)
GetCategoryNamesOk returns a tuple with the CategoryNames field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferParams) SetCategoryNames(v []string)
SetCategoryNames sets CategoryNames field to given value.
func (o *TransferParams) HasCategoryNames() bool
HasCategoryNames returns a boolean if a field has been set.
func (o *TransferParams) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *TransferParams) 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 *TransferParams) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *TransferParams) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *TransferParams) GetFee() TransactionRequestFee
GetFee returns the Fee field if non-nil, zero value otherwise.
func (o *TransferParams) GetFeeOk() (*TransactionRequestFee, bool)
GetFeeOk returns a tuple with the Fee field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferParams) SetFee(v TransactionRequestFee)
SetFee sets Fee field to given value.
func (o *TransferParams) HasFee() bool
HasFee returns a boolean if a field has been set.
func (o *TransferParams) GetAutoFuel() AutoFuelType
GetAutoFuel returns the AutoFuel field if non-nil, zero value otherwise.
func (o *TransferParams) GetAutoFuelOk() (*AutoFuelType, bool)
GetAutoFuelOk returns a tuple with the AutoFuel field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransferParams) SetAutoFuel(v AutoFuelType)
SetAutoFuel sets AutoFuel field to given value.
func (o *TransferParams) HasAutoFuel() bool
HasAutoFuel returns a boolean if a field has been set.