import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResendWebhookRequest = { id: string; logId: string; }; export type ResendWebhookResponse = { /** * HTTP response content type for this operation */ contentType: string; /** * HTTP response status code for this operation */ statusCode: number; /** * Raw HTTP response; suitable for custom response parsing */ rawResponse: Response; /** * Success */ webhookLog?: components.WebhookLog | undefined; /** * Error */ error?: components.ErrorT | undefined; }; /** @internal */ export declare const ResendWebhookRequest$inboundSchema: z.ZodType; /** @internal */ export type ResendWebhookRequest$Outbound = { id: string; logId: string; }; /** @internal */ export declare const ResendWebhookRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ResendWebhookRequest$ { /** @deprecated use `ResendWebhookRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ResendWebhookRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ResendWebhookRequest$Outbound` instead. */ type Outbound = ResendWebhookRequest$Outbound; } export declare function resendWebhookRequestToJSON(resendWebhookRequest: ResendWebhookRequest): string; export declare function resendWebhookRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ResendWebhookResponse$inboundSchema: z.ZodType; /** @internal */ export type ResendWebhookResponse$Outbound = { ContentType: string; StatusCode: number; RawResponse: never; "webhook-log"?: components.WebhookLog$Outbound | undefined; error?: components.ErrorT$Outbound | undefined; }; /** @internal */ export declare const ResendWebhookResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ResendWebhookResponse$ { /** @deprecated use `ResendWebhookResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ResendWebhookResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ResendWebhookResponse$Outbound` instead. */ type Outbound = ResendWebhookResponse$Outbound; } export declare function resendWebhookResponseToJSON(resendWebhookResponse: ResendWebhookResponse): string; export declare function resendWebhookResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=resendwebhook.d.ts.map