@nestjs-mod/files-afat
Version:
Files UI components and tools for AFAT (Angular, Formly, Antd, Transloco) and rest-sdk for work with backend of this module from Angular appliaction
29 lines (28 loc) • 837 B
TypeScript
/**
*
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { WebhookLogInterface } from './webhook-log.interface';
import { WebhookUserInterface } from './webhook-user.interface';
export interface WebhookInterface {
id: string;
eventName: string;
endpoint: string;
enabled: boolean;
headers: object | null;
requestTimeout: number | null;
externalTenantId: string;
createdBy: string;
updatedBy: string;
createdAt: string;
updatedAt: string;
workUntilDate: string | null;
WebhookUser_Webhook_createdByToWebhookUser?: WebhookUserInterface;
WebhookUser_Webhook_updatedByToWebhookUser?: WebhookUserInterface;
WebhookLog?: Array<WebhookLogInterface>;
}