Interface MarketPrice

interface MarketPrice {
    amount: string;
    amount_to: string;
    discount_rate: number;
    old_amount: string;
    old_amount_text: string;
    price_type: 0 | 2 | 3;
    price_unit: 0 | 2 | 3 | 4;
    text: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

amount: string

Amount

amount_to: string

Amount to for price_type=2

discount_rate: number
old_amount: string
old_amount_text: string

Textual representation of old price

price_type: 0 | 2 | 3
price_unit: 0 | 2 | 3 | 4
text: string

Text

Generated using TypeDoc