interface PriceModel {
    currency: {
        id: string;
        symbol: string;
        textFormat: string;
    };
    formattedPrice: string;
    formattedCampaignPrice: string;
    campaignPrice?: PriceItem;
    price?: PriceItem;
    hasPrice: boolean;
    tierPrices: any;
}

Properties

currency: {
    id: string;
    symbol: string;
    textFormat: string;
}
formattedPrice: string
formattedCampaignPrice: string
campaignPrice?: PriceItem
price?: PriceItem
hasPrice: boolean
tierPrices: any