xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
13 lines • 681 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.QuoteLineAmountTypes = void 0;
/**
* Line amounts are exclusive of tax by default if you don’t specify this element. See Line Amount Types
*/
var QuoteLineAmountTypes;
(function (QuoteLineAmountTypes) {
QuoteLineAmountTypes[QuoteLineAmountTypes["EXCLUSIVE"] = 'EXCLUSIVE'] = "EXCLUSIVE";
QuoteLineAmountTypes[QuoteLineAmountTypes["INCLUSIVE"] = 'INCLUSIVE'] = "INCLUSIVE";
QuoteLineAmountTypes[QuoteLineAmountTypes["NOTAX"] = 'NOTAX'] = "NOTAX";
})(QuoteLineAmountTypes || (exports.QuoteLineAmountTypes = QuoteLineAmountTypes = {}));
//# sourceMappingURL=quoteLineAmountTypes.js.map