aade-mydata-client
Version:
Node.js Client for AADE myDATA (my Digital Accounting and Tax Application) REST API
15 lines (14 loc) • 490 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CancelledInvoice = void 0;
var CancelledInvoice = /** @class */ (function () {
function CancelledInvoice(props) {
if (props) {
this.invoiceMark = props.invoiceMark;
this.cancellationMark = props.cancellationMark;
this.cancellationDate = props.cancellationDate;
}
}
return CancelledInvoice;
}());
exports.CancelledInvoice = CancelledInvoice;