Some checks failed
CI / Rustfmt (push) Successful in 22s
CI / Cargo Audit & Deny (push) Failing after 1m2s
CI / Web Blocking Checks (push) Failing after 35s
CI / Security Blocking Checks (push) Successful in 8s
CI / Clippy (push) Successful in 2m43s
CI / Web Advisory Checks (push) Successful in 35s
CI / Security Advisory Checks (push) Successful in 37s
CI / Tests (push) Failing after 9m28s
27 lines
544 B
TypeScript
27 lines
544 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint: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;
|
|
};
|
|
|