pub struct EstimateTransferFeeRequest {
pub source_address: Option<String>,
pub blockchain: Option<Blockchain>,
pub destination_address: Option<String>,
pub amounts: Option<Vec<String>>,
pub nfts: Option<Vec<String>>,
pub token_id: Option<String>,
pub fee_level: Option<FeeLevel>,
pub gas_limit: Option<String>,
pub gas_price: Option<String>,
}Expand description
Request body for estimating transfer fees.
Fields§
§source_address: Option<String>Source wallet address.
blockchain: Option<Blockchain>Blockchain network.
destination_address: Option<String>Destination address.
amounts: Option<Vec<String>>Token amounts to estimate fees for.
nfts: Option<Vec<String>>NFT token IDs.
token_id: Option<String>Token ID.
fee_level: Option<FeeLevel>Fee priority level.
gas_limit: Option<String>Custom gas limit.
gas_price: Option<String>Custom gas price.
Trait Implementations§
Source§impl Clone for EstimateTransferFeeRequest
impl Clone for EstimateTransferFeeRequest
Source§fn clone(&self) -> EstimateTransferFeeRequest
fn clone(&self) -> EstimateTransferFeeRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EstimateTransferFeeRequest
impl Debug for EstimateTransferFeeRequest
Source§impl Default for EstimateTransferFeeRequest
impl Default for EstimateTransferFeeRequest
Source§fn default() -> EstimateTransferFeeRequest
fn default() -> EstimateTransferFeeRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EstimateTransferFeeRequest
impl RefUnwindSafe for EstimateTransferFeeRequest
impl Send for EstimateTransferFeeRequest
impl Sync for EstimateTransferFeeRequest
impl Unpin for EstimateTransferFeeRequest
impl UnsafeUnpin for EstimateTransferFeeRequest
impl UnwindSafe for EstimateTransferFeeRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more