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 GetFeedbackResponseRating: { readonly ThumbsUp: "thumbs_up"; readonly ThumbsDown: "thumbs_down"; }; /** * The feedback rating indicating user satisfaction */ export type GetFeedbackResponseRating = ClosedEnum; /** * Response containing the feedback entry for the requested resource. */ export type GetFeedbackResponse = { /** * The request ID that this feedback is associated with */ id: string; /** * The feedback rating indicating user satisfaction */ rating?: GetFeedbackResponseRating | 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 GetFeedbackResponseRating$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetFeedbackResponseRating$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetFeedbackResponse$inboundSchema: z.ZodType; /** @internal */ export type GetFeedbackResponse$Outbound = { id: string; rating?: string | undefined; description?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const GetFeedbackResponse$outboundSchema: z.ZodType; export declare function getFeedbackResponseToJSON(getFeedbackResponse: GetFeedbackResponse): string; export declare function getFeedbackResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getfeedbackresponse.d.ts.map