xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
65 lines • 1.79 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvoiceAddress = void 0;
class InvoiceAddress {
static getAttributeTypeMap() {
return InvoiceAddress.attributeTypeMap;
}
}
exports.InvoiceAddress = InvoiceAddress;
InvoiceAddress.discriminator = undefined;
InvoiceAddress.attributeTypeMap = [
{
"name": "invoiceAddressType",
"baseName": "InvoiceAddressType",
"type": "InvoiceAddress.InvoiceAddressTypeEnum"
},
{
"name": "addressLine1",
"baseName": "AddressLine1",
"type": "string"
},
{
"name": "addressLine2",
"baseName": "AddressLine2",
"type": "string"
},
{
"name": "addressLine3",
"baseName": "AddressLine3",
"type": "string"
},
{
"name": "addressLine4",
"baseName": "AddressLine4",
"type": "string"
},
{
"name": "city",
"baseName": "City",
"type": "string"
},
{
"name": "region",
"baseName": "Region",
"type": "string"
},
{
"name": "postalCode",
"baseName": "PostalCode",
"type": "string"
},
{
"name": "country",
"baseName": "Country",
"type": "string"
}
];
(function (InvoiceAddress) {
let InvoiceAddressTypeEnum;
(function (InvoiceAddressTypeEnum) {
InvoiceAddressTypeEnum[InvoiceAddressTypeEnum["FROM"] = 'FROM'] = "FROM";
InvoiceAddressTypeEnum[InvoiceAddressTypeEnum["TO"] = 'TO'] = "TO";
})(InvoiceAddressTypeEnum = InvoiceAddress.InvoiceAddressTypeEnum || (InvoiceAddress.InvoiceAddressTypeEnum = {}));
})(InvoiceAddress || (exports.InvoiceAddress = InvoiceAddress = {}));
//# sourceMappingURL=invoiceAddress.js.map