Interface MonetaryAmountInit

Plain-object form of MonetaryAmount. Both fields are required.

interface MonetaryAmountInit {
    amount:
        | string
        | number
        | bigint
        | Fee;
    currency: string;
}

Properties

Properties

amount:
    | string
    | number
    | bigint
    | Fee
currency: string