matrix-dimension/web/app/shared/models/webhooks.ts
2018-10-20 18:33:01 -06:00

20 lines
No EOL
363 B
TypeScript

export interface FE_WebhooksBridge {
id: number;
upstreamId?: number;
provisionUrl?: string;
sharedSecret?: string;
isEnabled: boolean;
}
export interface FE_Webhook {
id: string;
label: string;
url: string;
userId: string;
roomId: string;
type: "incoming";
}
export interface FE_WebhookOptions {
label: string;
}