import { EventType } from '../enums';
import { WebhookStatus } from './common';
export interface CreateWebhookResponse {
    id: string;
    description: string;
    url: string;
    events: EventType[];
    rate_limit: number;
    status: WebhookStatus;
    created_at: string;
    updated_at: string;
}
export interface GetWebhooksResponse {
    data: CreateWebhookResponse[];
}
export interface GetWebhookSecretResponse {
    key: string;
}
