interface Taxes {
    compound: boolean;
    label: string;
    priceInclusive: boolean;
    supplierId: number;
    taxAmount: number;
    taxFeeType: string;
    taxPercent: number;
    taxType: string;
}

Properties

compound: boolean
label: string
priceInclusive: boolean
supplierId: number
taxAmount: number
taxFeeType: string
taxPercent: number
taxType: string