Name | Type | Description | Notes |
---|---|---|---|
MaxFeeAmount | Pointer to string | The maximum fee that you are willing to pay for the transaction. The transaction will fail if the transaction fee exceeds the maximum fee. | [optional] |
FeeType | FeeType | [default to FEETYPE_EVM_EIP_1559] | |
TokenId | Pointer to string | The token ID of the transaction fee. | [optional] |
FeeUsed | Pointer to string | The transaction fee. | [optional] |
func NewTransactionFixedFee(feeType FeeType, ) *TransactionFixedFee
NewTransactionFixedFee instantiates a new TransactionFixedFee 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 NewTransactionFixedFeeWithDefaults() *TransactionFixedFee
NewTransactionFixedFeeWithDefaults instantiates a new TransactionFixedFee 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 *TransactionFixedFee) GetMaxFeeAmount() string
GetMaxFeeAmount returns the MaxFeeAmount field if non-nil, zero value otherwise.
func (o *TransactionFixedFee) GetMaxFeeAmountOk() (*string, bool)
GetMaxFeeAmountOk returns a tuple with the MaxFeeAmount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionFixedFee) SetMaxFeeAmount(v string)
SetMaxFeeAmount sets MaxFeeAmount field to given value.
func (o *TransactionFixedFee) HasMaxFeeAmount() bool
HasMaxFeeAmount returns a boolean if a field has been set.
func (o *TransactionFixedFee) GetFeeType() FeeType
GetFeeType returns the FeeType field if non-nil, zero value otherwise.
func (o *TransactionFixedFee) 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 *TransactionFixedFee) SetFeeType(v FeeType)
SetFeeType sets FeeType field to given value.
func (o *TransactionFixedFee) GetTokenId() string
GetTokenId returns the TokenId field if non-nil, zero value otherwise.
func (o *TransactionFixedFee) 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 *TransactionFixedFee) SetTokenId(v string)
SetTokenId sets TokenId field to given value.
func (o *TransactionFixedFee) HasTokenId() bool
HasTokenId returns a boolean if a field has been set.
func (o *TransactionFixedFee) GetFeeUsed() string
GetFeeUsed returns the FeeUsed field if non-nil, zero value otherwise.
func (o *TransactionFixedFee) GetFeeUsedOk() (*string, bool)
GetFeeUsedOk returns a tuple with the FeeUsed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionFixedFee) SetFeeUsed(v string)
SetFeeUsed sets FeeUsed field to given value.
func (o *TransactionFixedFee) HasFeeUsed() bool
HasFeeUsed returns a boolean if a field has been set.