UNPKG

@sourceloop/ctrl-plane-tenant-management-service

Version:

Tenant Management microservice for SaaS control plane

37 lines 1.15 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.WebhookDTO = void 0; const tslib_1 = require("tslib"); const repository_1 = require("@loopback/repository"); let WebhookDTO = class WebhookDTO extends repository_1.Model { constructor(data) { super(data); } }; exports.WebhookDTO = WebhookDTO; tslib_1.__decorate([ (0, repository_1.property)({ type: 'string', required: true, }), tslib_1.__metadata("design:type", String) ], WebhookDTO.prototype, "initiatorId", void 0); tslib_1.__decorate([ (0, repository_1.property)({ type: 'object', required: true, }), tslib_1.__metadata("design:type", Object) ], WebhookDTO.prototype, "data", void 0); tslib_1.__decorate([ (0, repository_1.property)({ type: 'number', required: true, }), tslib_1.__metadata("design:type", Number) ], WebhookDTO.prototype, "type", void 0); exports.WebhookDTO = WebhookDTO = tslib_1.__decorate([ (0, repository_1.model)(), tslib_1.__metadata("design:paramtypes", [Object]) ], WebhookDTO); //# sourceMappingURL=webhook-dto.model.js.map