onix-codelist
Version:
ONIX 3.0 Code lists
13 lines (12 loc) • 623 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TaxRateType = void 0;
var TaxRateType;
(function (TaxRateType) {
TaxRateType[TaxRateType["HigherRate"] = 'H'] = "HigherRate";
TaxRateType[TaxRateType["TaxPaidAtSource"] = 'P'] = "TaxPaidAtSource";
TaxRateType[TaxRateType["LowerRate"] = 'R'] = "LowerRate";
TaxRateType[TaxRateType["StandardRate"] = 'S'] = "StandardRate";
TaxRateType[TaxRateType["SuperLowRate"] = 'T'] = "SuperLowRate";
TaxRateType[TaxRateType["ZeroRated"] = 'Z'] = "ZeroRated";
})(TaxRateType = exports.TaxRateType || (exports.TaxRateType = {}));