The fee for the transfer.

interface Fee {
    amount: string;
    currency: string;
    description?: string;
    type: FeeType;
}

Properties

amount: string

The amount of the fee.

currency: string

The currency of the fee.

description?: string

The description of the fee.

type: FeeType

The type of fee.