import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request body for retrying event delivery to a destination. */ export type RetryRequest = { /** * The ID of the event to retry. */ eventId: string; /** * The ID of the destination to deliver to. */ destinationId: string; }; /** @internal */ export declare const RetryRequest$inboundSchema: z.ZodType; /** @internal */ export type RetryRequest$Outbound = { event_id: string; destination_id: string; }; /** @internal */ export declare const RetryRequest$outboundSchema: z.ZodType; export declare function retryRequestToJSON(retryRequest: RetryRequest): string; export declare function retryRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=retryrequest.d.ts.map