Name | Type | Description | Notes |
---|---|---|---|
MaxFeePerGas | string | The maximum gas fee per gas unit used on the chain, in wei. | |
MaxPriorityFeePerGas | string | The maximum priority fee per gas unit used, in wei. The maximum priority fee represents the highest amount of miner tips that you are willing to pay for your transaction. | |
FeeType | FeeType | [default to FEETYPE_EVM_EIP_1559] | |
TokenId | string | The token ID of the transaction fee. | |
GasLimit | Pointer to string | The gas limit. It represents the maximum number of gas units that you are willing to pay for the execution of a transaction or Ethereum Virtual Machine (EVM) operation. The gas unit cost of each operation varies. | [optional] |
func NewTransactionRequestEvmEip1559Fee(maxFeePerGas string, maxPriorityFeePerGas string, feeType FeeType, tokenId string, ) *TransactionRequestEvmEip1559Fee
NewTransactionRequestEvmEip1559Fee instantiates a new TransactionRequestEvmEip1559Fee 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 NewTransactionRequestEvmEip1559FeeWithDefaults() *TransactionRequestEvmEip1559Fee
NewTransactionRequestEvmEip1559FeeWithDefaults instantiates a new TransactionRequestEvmEip1559Fee 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 *TransactionRequestEvmEip1559Fee) GetMaxFeePerGas() string
GetMaxFeePerGas returns the MaxFeePerGas field if non-nil, zero value otherwise.
func (o *TransactionRequestEvmEip1559Fee) GetMaxFeePerGasOk() (*string, bool)
GetMaxFeePerGasOk returns a tuple with the MaxFeePerGas field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionRequestEvmEip1559Fee) SetMaxFeePerGas(v string)
SetMaxFeePerGas sets MaxFeePerGas field to given value.
func (o *TransactionRequestEvmEip1559Fee) GetMaxPriorityFeePerGas() string
GetMaxPriorityFeePerGas returns the MaxPriorityFeePerGas field if non-nil, zero value otherwise.
func (o *TransactionRequestEvmEip1559Fee) GetMaxPriorityFeePerGasOk() (*string, bool)
GetMaxPriorityFeePerGasOk returns a tuple with the MaxPriorityFeePerGas field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionRequestEvmEip1559Fee) SetMaxPriorityFeePerGas(v string)
SetMaxPriorityFeePerGas sets MaxPriorityFeePerGas field to given value.
func (o *TransactionRequestEvmEip1559Fee) GetFeeType() FeeType
GetFeeType returns the FeeType field if non-nil, zero value otherwise.
func (o *TransactionRequestEvmEip1559Fee) 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 *TransactionRequestEvmEip1559Fee) SetFeeType(v FeeType)
SetFeeType sets FeeType field to given value.
func (o *TransactionRequestEvmEip1559Fee) GetTokenId() string
GetTokenId returns the TokenId field if non-nil, zero value otherwise.
func (o *TransactionRequestEvmEip1559Fee) 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 *TransactionRequestEvmEip1559Fee) SetTokenId(v string)
SetTokenId sets TokenId field to given value.
func (o *TransactionRequestEvmEip1559Fee) GetGasLimit() string
GetGasLimit returns the GasLimit field if non-nil, zero value otherwise.
func (o *TransactionRequestEvmEip1559Fee) GetGasLimitOk() (*string, bool)
GetGasLimitOk returns a tuple with the GasLimit field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionRequestEvmEip1559Fee) SetGasLimit(v string)
SetGasLimit sets GasLimit field to given value.
func (o *TransactionRequestEvmEip1559Fee) HasGasLimit() bool
HasGasLimit returns a boolean if a field has been set.