Name | Type | Description | Notes |
---|---|---|---|
FeeType | FeeType | [default to FEETYPE_EVM_EIP_1559] | |
TokenId | string | The token ID of the transaction fee. | |
Slow | Pointer to UtxoFeeBasePrice | [optional] | |
Recommended | UtxoFeeBasePrice | ||
Fast | Pointer to UtxoFeeBasePrice | [optional] |
func NewUtxoFeeRate(feeType FeeType, tokenId string, recommended UtxoFeeBasePrice, ) *UtxoFeeRate
NewUtxoFeeRate instantiates a new UtxoFeeRate 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 NewUtxoFeeRateWithDefaults() *UtxoFeeRate
NewUtxoFeeRateWithDefaults instantiates a new UtxoFeeRate 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 *UtxoFeeRate) GetFeeType() FeeType
GetFeeType returns the FeeType field if non-nil, zero value otherwise.
func (o *UtxoFeeRate) GetFeeTypeOk() (*FeeType, bool)
GetFeeTypeOk returns a tuple with the FeeType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UtxoFeeRate) SetFeeType(v FeeType)
SetFeeType sets FeeType field to given value.
func (o *UtxoFeeRate) GetTokenId() string
GetTokenId returns the TokenId field if non-nil, zero value otherwise.
func (o *UtxoFeeRate) 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 *UtxoFeeRate) SetTokenId(v string)
SetTokenId sets TokenId field to given value.
func (o *UtxoFeeRate) GetSlow() UtxoFeeBasePrice
GetSlow returns the Slow field if non-nil, zero value otherwise.
func (o *UtxoFeeRate) GetSlowOk() (*UtxoFeeBasePrice, bool)
GetSlowOk returns a tuple with the Slow field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UtxoFeeRate) SetSlow(v UtxoFeeBasePrice)
SetSlow sets Slow field to given value.
func (o *UtxoFeeRate) HasSlow() bool
HasSlow returns a boolean if a field has been set.
func (o *UtxoFeeRate) GetRecommended() UtxoFeeBasePrice
GetRecommended returns the Recommended field if non-nil, zero value otherwise.
func (o *UtxoFeeRate) GetRecommendedOk() (*UtxoFeeBasePrice, bool)
GetRecommendedOk returns a tuple with the Recommended field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UtxoFeeRate) SetRecommended(v UtxoFeeBasePrice)
SetRecommended sets Recommended field to given value.
func (o *UtxoFeeRate) GetFast() UtxoFeeBasePrice
GetFast returns the Fast field if non-nil, zero value otherwise.
func (o *UtxoFeeRate) GetFastOk() (*UtxoFeeBasePrice, bool)
GetFastOk returns a tuple with the Fast field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *UtxoFeeRate) SetFast(v UtxoFeeBasePrice)
SetFast sets Fast field to given value.
func (o *UtxoFeeRate) HasFast() bool
HasFast returns a boolean if a field has been set.