import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The feedback rating indicating user satisfaction */ export declare const CreateFeedbackResponseRating: { readonly ThumbsUp: "thumbs_up"; readonly ThumbsDown: "thumbs_down"; }; /** * The feedback rating indicating user satisfaction */ export type CreateFeedbackResponseRating = ClosedEnum; /** * Response containing the created feedback entry with generated ID and timestamps. */ export type CreateFeedbackResponse = { /** * The request ID that this feedback is associated with */ id: string; /** * The feedback rating indicating user satisfaction */ rating?: CreateFeedbackResponseRating | undefined; /** * Optional detailed feedback description providing additional context or explanation (max 2000 characters) */ description?: string | undefined; /** * Timestamp when the feedback was created */ createdAt?: Date | undefined; /** * Timestamp when the feedback was last updated */ updatedAt?: Date | undefined; }; /** @internal */ export declare const CreateFeedbackResponseRating$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CreateFeedbackResponseRating$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CreateFeedbackResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateFeedbackResponse$Outbound = { id: string; rating?: string | undefined; description?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const CreateFeedbackResponse$outboundSchema: z.ZodType; export declare function createFeedbackResponseToJSON(createFeedbackResponse: CreateFeedbackResponse): string; export declare function createFeedbackResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createfeedbackresponse.d.ts.map