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 UpdateFeedbackResponseRating: { readonly ThumbsUp: "thumbs_up"; readonly ThumbsDown: "thumbs_down"; }; /** * The feedback rating indicating user satisfaction */ export type UpdateFeedbackResponseRating = ClosedEnum; /** * Response containing the updated feedback entry with new updatedAt timestamp. */ export type UpdateFeedbackResponse = { /** * The request ID that this feedback is associated with */ id: string; /** * The feedback rating indicating user satisfaction */ rating?: UpdateFeedbackResponseRating | 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 UpdateFeedbackResponseRating$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const UpdateFeedbackResponseRating$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const UpdateFeedbackResponse$inboundSchema: z.ZodType; /** @internal */ export type UpdateFeedbackResponse$Outbound = { id: string; rating?: string | undefined; description?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const UpdateFeedbackResponse$outboundSchema: z.ZodType; export declare function updateFeedbackResponseToJSON(updateFeedbackResponse: UpdateFeedbackResponse): string; export declare function updateFeedbackResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatefeedbackresponse.d.ts.map