import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response object returned after successfully deleting a response. */ export type DeleteResponseObject = { /** * The unique identifier of the deleted response. */ id: string; /** * The object type, always 'response' for response deletions. */ object: "response"; /** * Confirmation flag indicating whether the response was successfully deleted. Always true on successful deletion. */ deleted: boolean; }; /** @internal */ export declare const DeleteResponseObject$inboundSchema: z.ZodType; /** @internal */ export type DeleteResponseObject$Outbound = { id: string; object: "response"; deleted: boolean; }; /** @internal */ export declare const DeleteResponseObject$outboundSchema: z.ZodType; export declare function deleteResponseObjectToJSON(deleteResponseObject: DeleteResponseObject): string; export declare function deleteResponseObjectFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteresponseobject.d.ts.map