xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
114 lines (113 loc) • 3.11 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 BatchPayment = /** @class */ (function () {
function BatchPayment() {
}
BatchPayment.getAttributeTypeMap = function () {
return BatchPayment.attributeTypeMap;
};
BatchPayment.discriminator = undefined;
BatchPayment.attributeTypeMap = [
{
"name": "account",
"baseName": "Account",
"type": "Account"
},
{
"name": "reference",
"baseName": "Reference",
"type": "string"
},
{
"name": "particulars",
"baseName": "Particulars",
"type": "string"
},
{
"name": "code",
"baseName": "Code",
"type": "string"
},
{
"name": "details",
"baseName": "Details",
"type": "string"
},
{
"name": "narrative",
"baseName": "Narrative",
"type": "string"
},
{
"name": "batchPaymentID",
"baseName": "BatchPaymentID",
"type": "string"
},
{
"name": "dateString",
"baseName": "DateString",
"type": "string"
},
{
"name": "date",
"baseName": "Date",
"type": "string"
},
{
"name": "amount",
"baseName": "Amount",
"type": "number"
},
{
"name": "payments",
"baseName": "Payments",
"type": "Array<Payment>"
},
{
"name": "type",
"baseName": "Type",
"type": "BatchPayment.TypeEnum"
},
{
"name": "status",
"baseName": "Status",
"type": "string"
},
{
"name": "totalAmount",
"baseName": "TotalAmount",
"type": "string"
},
{
"name": "updatedDateUTC",
"baseName": "UpdatedDateUTC",
"type": "Date"
},
{
"name": "isReconciled",
"baseName": "IsReconciled",
"type": "string"
}
];
return BatchPayment;
}());
exports.BatchPayment = BatchPayment;
(function (BatchPayment) {
var TypeEnum;
(function (TypeEnum) {
TypeEnum[TypeEnum["PAYBATCH"] = 'PAYBATCH'] = "PAYBATCH";
TypeEnum[TypeEnum["RECBATCH"] = 'RECBATCH'] = "RECBATCH";
})(TypeEnum = BatchPayment.TypeEnum || (BatchPayment.TypeEnum = {}));
})(BatchPayment = exports.BatchPayment || (exports.BatchPayment = {}));
exports.BatchPayment = BatchPayment;