Description

Product price

interface ProductPrice {
    amount: number;
    currency: string;
    tax: number;
    taxIncluded: boolean;
    taxable: boolean;
}

Properties

amount: number
currency: string
tax: number
taxIncluded: boolean
taxable: boolean

Generated using TypeDoc