Name | Type | Description | Notes |
---|---|---|---|
ProfileId | string | The target profile for deposit crediting. | |
CryptoNetwork | CryptoNetwork | ||
IdentityId | Pointer to string | The Identity of the end user who will make deposits to the created address. | [optional] |
RefId | Pointer to string | Client-specified ID for replay protection and lookup. | [optional] |
Metadata | Pointer to map[string]string | Optional client-specified metadata, which will be added to the deposit address but not to deposit transfers to the created address. Up to 6 key/value pairs may be provided. Each key and value must be less than or equal to 100 characters. | [optional] |
AccountId | Pointer to string | The Account associated to the identity of the user that will be linked to the created address. | [optional] |
ConversionTargetAsset | Pointer to DepositAddressConversionTargetAsset | [optional] |
func NewCreateDepositAddressRequest(profileId string, cryptoNetwork CryptoNetwork, ) *CreateDepositAddressRequest
NewCreateDepositAddressRequest instantiates a new CreateDepositAddressRequest 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 NewCreateDepositAddressRequestWithDefaults() *CreateDepositAddressRequest
NewCreateDepositAddressRequestWithDefaults instantiates a new CreateDepositAddressRequest 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 *CreateDepositAddressRequest) GetProfileId() string
GetProfileId returns the ProfileId field if non-nil, zero value otherwise.
func (o *CreateDepositAddressRequest) 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 *CreateDepositAddressRequest) SetProfileId(v string)
SetProfileId sets ProfileId field to given value.
func (o *CreateDepositAddressRequest) GetCryptoNetwork() CryptoNetwork
GetCryptoNetwork returns the CryptoNetwork field if non-nil, zero value otherwise.
func (o *CreateDepositAddressRequest) GetCryptoNetworkOk() (*CryptoNetwork, bool)
GetCryptoNetworkOk returns a tuple with the CryptoNetwork field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateDepositAddressRequest) SetCryptoNetwork(v CryptoNetwork)
SetCryptoNetwork sets CryptoNetwork field to given value.
func (o *CreateDepositAddressRequest) GetIdentityId() string
GetIdentityId returns the IdentityId field if non-nil, zero value otherwise.
func (o *CreateDepositAddressRequest) 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 *CreateDepositAddressRequest) SetIdentityId(v string)
SetIdentityId sets IdentityId field to given value.
func (o *CreateDepositAddressRequest) HasIdentityId() bool
HasIdentityId returns a boolean if a field has been set.
func (o *CreateDepositAddressRequest) GetRefId() string
GetRefId returns the RefId field if non-nil, zero value otherwise.
func (o *CreateDepositAddressRequest) 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 *CreateDepositAddressRequest) SetRefId(v string)
SetRefId sets RefId field to given value.
func (o *CreateDepositAddressRequest) HasRefId() bool
HasRefId returns a boolean if a field has been set.
func (o *CreateDepositAddressRequest) GetMetadata() map[string]string
GetMetadata returns the Metadata field if non-nil, zero value otherwise.
func (o *CreateDepositAddressRequest) 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 *CreateDepositAddressRequest) SetMetadata(v map[string]string)
SetMetadata sets Metadata field to given value.
func (o *CreateDepositAddressRequest) HasMetadata() bool
HasMetadata returns a boolean if a field has been set.
func (o *CreateDepositAddressRequest) GetAccountId() string
GetAccountId returns the AccountId field if non-nil, zero value otherwise.
func (o *CreateDepositAddressRequest) 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 *CreateDepositAddressRequest) SetAccountId(v string)
SetAccountId sets AccountId field to given value.
func (o *CreateDepositAddressRequest) HasAccountId() bool
HasAccountId returns a boolean if a field has been set.
func (o *CreateDepositAddressRequest) GetConversionTargetAsset() DepositAddressConversionTargetAsset
GetConversionTargetAsset returns the ConversionTargetAsset field if non-nil, zero value otherwise.
func (o *CreateDepositAddressRequest) GetConversionTargetAssetOk() (*DepositAddressConversionTargetAsset, bool)
GetConversionTargetAssetOk returns a tuple with the ConversionTargetAsset field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateDepositAddressRequest) SetConversionTargetAsset(v DepositAddressConversionTargetAsset)
SetConversionTargetAsset sets ConversionTargetAsset field to given value.
func (o *CreateDepositAddressRequest) HasConversionTargetAsset() bool
HasConversionTargetAsset returns a boolean if a field has been set.