re-uploading work
This commit is contained in:
26
web/src/api/models/WebhookReceiverResponse.ts
Normal file
26
web/src/api/models/WebhookReceiverResponse.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Response from webhook receiver endpoint
|
||||
*/
|
||||
export type WebhookReceiverResponse = {
|
||||
/**
|
||||
* ID of the event created from this webhook
|
||||
*/
|
||||
event_id: number;
|
||||
/**
|
||||
* Success message
|
||||
*/
|
||||
message: string;
|
||||
/**
|
||||
* Timestamp when the webhook was received
|
||||
*/
|
||||
received_at: string;
|
||||
/**
|
||||
* Reference of the trigger that received this webhook
|
||||
*/
|
||||
trigger_ref: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user