matrix-dimension/web/app/shared/models/hookshot_webhook.ts

16 lines
297 B
TypeScript
Raw Normal View History

export interface FE_HookshotWebhookBridge {
id: number;
upstreamId?: number;
provisionUrl?: string;
sharedSecret?: string;
isEnabled: boolean;
}
export interface FE_HookshotWebhookConnection {
id: string;
config: {
2021-12-03 15:49:02 -05:00
name?: string;
url: string;
};
}