xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
85 lines (84 loc) • 2.46 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 Address = /** @class */ (function () {
function Address() {
}
Address.getAttributeTypeMap = function () {
return Address.attributeTypeMap;
};
Address.discriminator = undefined;
Address.attributeTypeMap = [
{
"name": "addressType",
"baseName": "AddressType",
"type": "Address.AddressTypeEnum"
},
{
"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"
},
{
"name": "attentionTo",
"baseName": "AttentionTo",
"type": "string"
}
];
return Address;
}());
exports.Address = Address;
(function (Address) {
var AddressTypeEnum;
(function (AddressTypeEnum) {
AddressTypeEnum[AddressTypeEnum["POBOX"] = 'POBOX'] = "POBOX";
AddressTypeEnum[AddressTypeEnum["STREET"] = 'STREET'] = "STREET";
AddressTypeEnum[AddressTypeEnum["DELIVERY"] = 'DELIVERY'] = "DELIVERY";
})(AddressTypeEnum = Address.AddressTypeEnum || (Address.AddressTypeEnum = {}));
})(Address = exports.Address || (exports.Address = {}));
exports.Address = Address;