import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateResponseRequest = { responseId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; updateResponseRequest: components.UpdateResponseRequest; }; /** @internal */ export declare const UpdateResponseRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateResponseRequest$Outbound = { response_id: string; "X-On-Behalf-Of"?: string | undefined; UpdateResponseRequest: components.UpdateResponseRequest$Outbound; }; /** @internal */ export declare const UpdateResponseRequest$outboundSchema: z.ZodType; export declare function updateResponseRequestToJSON(updateResponseRequest: UpdateResponseRequest): string; export declare function updateResponseRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateresponse.d.ts.map