Interface OrdersAmountItem

interface OrdersAmountItem {
    amount: number;
    description: string;
    votes: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

amount: number

Votes amount in user's currency

description: string

Amount description

votes: string

Votes number

Generated using TypeDoc