fathom-typescript
Version:
Fathom's official TypeScript SDK.
15 lines • 523 B
TypeScript
import * as z from "zod/v3";
export type DeleteWebhookRequest = {
/**
* The ID of the webhook to delete.
*/
id: string;
};
/** @internal */
export type DeleteWebhookRequest$Outbound = {
id: string;
};
/** @internal */
export declare const DeleteWebhookRequest$outboundSchema: z.ZodType<DeleteWebhookRequest$Outbound, z.ZodTypeDef, DeleteWebhookRequest>;
export declare function deleteWebhookRequestToJSON(deleteWebhookRequest: DeleteWebhookRequest): string;
//# sourceMappingURL=deletewebhook.d.ts.map