@sourceloop/ctrl-plane-tenant-management-service
Version:
Tenant Management microservice for SaaS control plane
72 lines • 2.98 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SubscriptionDTO = void 0;
const tslib_1 = require("tslib");
const repository_1 = require("@loopback/repository");
let SubscriptionDTO = class SubscriptionDTO {
};
exports.SubscriptionDTO = SubscriptionDTO;
tslib_1.__decorate([
(0, repository_1.property)({ type: 'boolean' }),
tslib_1.__metadata("design:type", Boolean)
], SubscriptionDTO.prototype, "deleted", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'Date' }),
tslib_1.__metadata("design:type", Date)
], SubscriptionDTO.prototype, "deletedOn", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'string' }),
tslib_1.__metadata("design:type", String)
], SubscriptionDTO.prototype, "deletedBy", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'Date' }),
tslib_1.__metadata("design:type", Date)
], SubscriptionDTO.prototype, "createdOn", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'Date' }),
tslib_1.__metadata("design:type", Date)
], SubscriptionDTO.prototype, "modifiedOn", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'string' }),
tslib_1.__metadata("design:type", String)
], SubscriptionDTO.prototype, "createdBy", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'string' }),
tslib_1.__metadata("design:type", String)
], SubscriptionDTO.prototype, "modifiedBy", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'string' }),
tslib_1.__metadata("design:type", String)
], SubscriptionDTO.prototype, "id", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'string' }),
tslib_1.__metadata("design:type", String)
], SubscriptionDTO.prototype, "subscriberId", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'string' }),
tslib_1.__metadata("design:type", String)
], SubscriptionDTO.prototype, "startDate", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'string' }),
tslib_1.__metadata("design:type", String)
], SubscriptionDTO.prototype, "endDate", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'number' }),
tslib_1.__metadata("design:type", Number)
], SubscriptionDTO.prototype, "status", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'string' }),
tslib_1.__metadata("design:type", String)
], SubscriptionDTO.prototype, "planId", void 0);
tslib_1.__decorate([
(0, repository_1.property)({ type: 'string' }),
tslib_1.__metadata("design:type", String)
], SubscriptionDTO.prototype, "invoiceId", void 0);
tslib_1.__decorate([
(0, repository_1.property)(),
tslib_1.__metadata("design:type", Object)
], SubscriptionDTO.prototype, "plan", void 0);
exports.SubscriptionDTO = SubscriptionDTO = tslib_1.__decorate([
(0, repository_1.model)()
], SubscriptionDTO);
//# sourceMappingURL=subscription-dto.model.js.map