xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
136 lines (135 loc) • 3.43 kB
JavaScript
;
/**
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
var Quote = /** @class */ (function () {
function Quote() {
}
Quote.getAttributeTypeMap = function () {
return Quote.attributeTypeMap;
};
Quote.discriminator = undefined;
Quote.attributeTypeMap = [
{
"name": "quoteID",
"baseName": "QuoteID",
"type": "string"
},
{
"name": "quoteNumber",
"baseName": "QuoteNumber",
"type": "string"
},
{
"name": "reference",
"baseName": "Reference",
"type": "string"
},
{
"name": "terms",
"baseName": "Terms",
"type": "string"
},
{
"name": "contact",
"baseName": "Contact",
"type": "Contact"
},
{
"name": "lineItems",
"baseName": "LineItems",
"type": "Array<LineItem>"
},
{
"name": "date",
"baseName": "Date",
"type": "string"
},
{
"name": "dateString",
"baseName": "DateString",
"type": "string"
},
{
"name": "expiryDate",
"baseName": "ExpiryDate",
"type": "string"
},
{
"name": "expiryDateString",
"baseName": "ExpiryDateString",
"type": "string"
},
{
"name": "status",
"baseName": "Status",
"type": "QuoteStatusCodes"
},
{
"name": "currencyCode",
"baseName": "CurrencyCode",
"type": "CurrencyCode"
},
{
"name": "currencyRate",
"baseName": "CurrencyRate",
"type": "number"
},
{
"name": "subTotal",
"baseName": "SubTotal",
"type": "number"
},
{
"name": "totalTax",
"baseName": "TotalTax",
"type": "number"
},
{
"name": "total",
"baseName": "Total",
"type": "number"
},
{
"name": "totalDiscount",
"baseName": "TotalDiscount",
"type": "number"
},
{
"name": "title",
"baseName": "Title",
"type": "string"
},
{
"name": "summary",
"baseName": "Summary",
"type": "string"
},
{
"name": "brandingThemeID",
"baseName": "BrandingThemeID",
"type": "string"
},
{
"name": "updatedDateUTC",
"baseName": "UpdatedDateUTC",
"type": "Date"
},
{
"name": "lineAmountTypes",
"baseName": "LineAmountTypes",
"type": "LineAmountTypes"
}
];
return Quote;
}());
exports.Quote = Quote;