@sourceloop/ctrl-plane-tenant-management-service
Version:
Tenant Management microservice for SaaS control plane
30 lines • 1.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VerifyLeadResponseDTO = void 0;
const tslib_1 = require("tslib");
const repository_1 = require("@loopback/repository");
let VerifyLeadResponseDTO = class VerifyLeadResponseDTO extends repository_1.Model {
constructor(data) {
super(data);
}
};
exports.VerifyLeadResponseDTO = VerifyLeadResponseDTO;
tslib_1.__decorate([
(0, repository_1.property)({
type: 'string',
required: true,
}),
tslib_1.__metadata("design:type", String)
], VerifyLeadResponseDTO.prototype, "id", void 0);
tslib_1.__decorate([
(0, repository_1.property)({
type: 'string',
required: true,
}),
tslib_1.__metadata("design:type", String)
], VerifyLeadResponseDTO.prototype, "token", void 0);
exports.VerifyLeadResponseDTO = VerifyLeadResponseDTO = tslib_1.__decorate([
(0, repository_1.model)(),
tslib_1.__metadata("design:paramtypes", [Object])
], VerifyLeadResponseDTO);
//# sourceMappingURL=verify-lead-response-dto.model.js.map