Skip to content

Latest commit

 

History

History
155 lines (84 loc) · 4.52 KB

TransactionUtxoFee.md

File metadata and controls

155 lines (84 loc) · 4.52 KB

TransactionUtxoFee

Properties

Name Type Description Notes
FeeRate Pointer to string The fee rate in sat/vByte. The fee rate represents the satoshis you are willing to pay for each byte of data that your transaction will consume on the blockchain. [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]
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]

Methods

NewTransactionUtxoFee

func NewTransactionUtxoFee(feeType FeeType, ) *TransactionUtxoFee

NewTransactionUtxoFee instantiates a new TransactionUtxoFee 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

NewTransactionUtxoFeeWithDefaults

func NewTransactionUtxoFeeWithDefaults() *TransactionUtxoFee

NewTransactionUtxoFeeWithDefaults instantiates a new TransactionUtxoFee 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

GetFeeRate

func (o *TransactionUtxoFee) GetFeeRate() string

GetFeeRate returns the FeeRate field if non-nil, zero value otherwise.

GetFeeRateOk

func (o *TransactionUtxoFee) GetFeeRateOk() (*string, bool)

GetFeeRateOk returns a tuple with the FeeRate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetFeeRate

func (o *TransactionUtxoFee) SetFeeRate(v string)

SetFeeRate sets FeeRate field to given value.

HasFeeRate

func (o *TransactionUtxoFee) HasFeeRate() bool

HasFeeRate returns a boolean if a field has been set.

GetFeeType

func (o *TransactionUtxoFee) GetFeeType() FeeType

GetFeeType returns the FeeType field if non-nil, zero value otherwise.

GetFeeTypeOk

func (o *TransactionUtxoFee) 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.

SetFeeType

func (o *TransactionUtxoFee) SetFeeType(v FeeType)

SetFeeType sets FeeType field to given value.

GetTokenId

func (o *TransactionUtxoFee) GetTokenId() string

GetTokenId returns the TokenId field if non-nil, zero value otherwise.

GetTokenIdOk

func (o *TransactionUtxoFee) 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.

SetTokenId

func (o *TransactionUtxoFee) SetTokenId(v string)

SetTokenId sets TokenId field to given value.

HasTokenId

func (o *TransactionUtxoFee) HasTokenId() bool

HasTokenId returns a boolean if a field has been set.

GetFeeUsed

func (o *TransactionUtxoFee) GetFeeUsed() string

GetFeeUsed returns the FeeUsed field if non-nil, zero value otherwise.

GetFeeUsedOk

func (o *TransactionUtxoFee) 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.

SetFeeUsed

func (o *TransactionUtxoFee) SetFeeUsed(v string)

SetFeeUsed sets FeeUsed field to given value.

HasFeeUsed

func (o *TransactionUtxoFee) HasFeeUsed() bool

HasFeeUsed returns a boolean if a field has been set.

GetMaxFeeAmount

func (o *TransactionUtxoFee) GetMaxFeeAmount() string

GetMaxFeeAmount returns the MaxFeeAmount field if non-nil, zero value otherwise.

GetMaxFeeAmountOk

func (o *TransactionUtxoFee) 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.

SetMaxFeeAmount

func (o *TransactionUtxoFee) SetMaxFeeAmount(v string)

SetMaxFeeAmount sets MaxFeeAmount field to given value.

HasMaxFeeAmount

func (o *TransactionUtxoFee) HasMaxFeeAmount() bool

HasMaxFeeAmount returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]