UNPKG

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

Version:

Tenant Management microservice for SaaS control plane

9 lines (8 loc) 280 B
import { Model } from '@loopback/repository'; import { WebhookPayload } from '../../types'; export declare class WebhookDTO<T extends WebhookPayload['data']> extends Model { initiatorId: string; data: T; type: number; constructor(data?: Partial<WebhookDTO<T>>); }