Contains the type and rate of tax.

TaxRate

interface TaxRate {
    cessRate?: number;
    gstRate?: number;
    taxType?: string;
}

Properties

cessRate?: number

Rate of cess tax.

TaxRate

gstRate?: number

Rate of gst tax.

TaxRate

taxType?: string

Type of tax. Possible values: CGST, SGST, IGST, TOTAL_TAX.

TaxRate