/**
 * @example
 *     {
 *         isDisabled: true,
 *         name: "My Callback Webhook"
 *     }
 */
export interface BodyUpdateWorkspaceWebhookV1WorkspaceWebhooksWebhookIdPatch {
    /** Whether to disable or enable the webhook */
    isDisabled: boolean;
    /** The display name of the webhook (used for display purposes only). */
    name: string;
    /** Whether to enable automatic retries for transient failures (5xx, 429, timeout) */
    retryEnabled?: boolean;
}
