Type alias QuoteDetailsBeta

QuoteDetails: {
    currencyCode: string;
    fee?: string;
    subtotal: string;
    total: string;
}

A QuoteDetails object describes the amount of a currency that is being sent or received

Type declaration

  • currencyCode: string

    ISO 3166 currency code string

  • Optional fee?: string

    The amount paid in fees

  • subtotal: string

    The amount of currency paid for the exchange, excluding fees

  • total: string

    The total amount of currency to be paid in or paid out. It is always a sum of subtotal and fee