UNPKG

@apideck/node

Version:
12 lines (11 loc) 489 B
/** * * @export * @interface ExecuteWebhookEventRequest */ export interface ExecuteWebhookEventRequest { [key: string]: unknown; } export declare function ExecuteWebhookEventRequestFromJSON(json: any): ExecuteWebhookEventRequest; export declare function ExecuteWebhookEventRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteWebhookEventRequest; export declare function ExecuteWebhookEventRequestToJSON(value?: ExecuteWebhookEventRequest | null): any;