AmountInfo

data class AmountInfo(val amount: String? = null, val requestedAmount: String? = null, val netAmount: String? = null, val amountUSD: String? = null)

Created by Fireblocks Ltd. on 07/10/2024.

The details of the requested amount to transfer.

Parameters

amount

If the transfer is a withdrawal from an exchange, the actual amount that was requested to be transferred. Otherwise, the requested amount.

requestedAmount

The amount requested by the user.

netAmount

The net amount of the transaction, after fee deduction.

amountUSD

The USD value of the requested amount.

Constructors

Link copied to clipboard
constructor(amount: String? = null, requestedAmount: String? = null, netAmount: String? = null, amountUSD: String? = null)

Properties

Link copied to clipboard
val amount: String? = null
Link copied to clipboard
val amountUSD: String? = null
Link copied to clipboard
val netAmount: String? = null
Link copied to clipboard
val requestedAmount: String? = null