import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Fields to include in the response. Use bracket notation for multiple values (e.g., `include[0]=event&include[1]=response_data`). * * @remarks * - `event`: Include event summary (id, topic, time, eligible_for_retry, metadata) * - `event.data`: Include full event with payload data * - `response_data`: Include response body and headers * - `destination`: Include the full destination object */ export type GetAttemptInclude = string | Array; export type GetAttemptRequest = { /** * The ID of the attempt. */ attemptId: string; /** * Fields to include in the response. Use bracket notation for multiple values (e.g., `include[0]=event&include[1]=response_data`). * * @remarks * - `event`: Include event summary (id, topic, time, eligible_for_retry, metadata) * - `event.data`: Include full event with payload data * - `response_data`: Include response body and headers * - `destination`: Include the full destination object */ include?: string | Array | undefined; }; /** @internal */ export declare const GetAttemptInclude$inboundSchema: z.ZodType; /** @internal */ export type GetAttemptInclude$Outbound = string | Array; /** @internal */ export declare const GetAttemptInclude$outboundSchema: z.ZodType; export declare function getAttemptIncludeToJSON(getAttemptInclude: GetAttemptInclude): string; export declare function getAttemptIncludeFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetAttemptRequest$inboundSchema: z.ZodType; /** @internal */ export type GetAttemptRequest$Outbound = { attempt_id: string; include?: string | Array | undefined; }; /** @internal */ export declare const GetAttemptRequest$outboundSchema: z.ZodType; export declare function getAttemptRequestToJSON(getAttemptRequest: GetAttemptRequest): string; export declare function getAttemptRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getattempt.d.ts.map