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 * - `event.data`: Include full event with payload data * - `response_data`: Include response body and headers * - `destination`: Include the full destination object */ export type GetTenantDestinationAttemptInclude = string | Array; export type GetTenantDestinationAttemptRequest = { /** * The ID of the tenant. Required when using AdminApiKey authentication. */ tenantId: string; /** * The ID of the destination. */ destinationId: string; /** * 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 * - `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 GetTenantDestinationAttemptInclude$inboundSchema: z.ZodType; /** @internal */ export type GetTenantDestinationAttemptInclude$Outbound = string | Array; /** @internal */ export declare const GetTenantDestinationAttemptInclude$outboundSchema: z.ZodType; export declare function getTenantDestinationAttemptIncludeToJSON(getTenantDestinationAttemptInclude: GetTenantDestinationAttemptInclude): string; export declare function getTenantDestinationAttemptIncludeFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetTenantDestinationAttemptRequest$inboundSchema: z.ZodType; /** @internal */ export type GetTenantDestinationAttemptRequest$Outbound = { tenant_id: string; destination_id: string; attempt_id: string; include?: string | Array | undefined; }; /** @internal */ export declare const GetTenantDestinationAttemptRequest$outboundSchema: z.ZodType; export declare function getTenantDestinationAttemptRequestToJSON(getTenantDestinationAttemptRequest: GetTenantDestinationAttemptRequest): string; export declare function getTenantDestinationAttemptRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gettenantdestinationattempt.d.ts.map