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"; /** * Feedback rating indicating user satisfaction. 'thumbs_up' indicates positive feedback, 'thumbs_down' indicates negative feedback. */ export declare const UpdateResponseFeedbackRating: { readonly ThumbsUp: "thumbs_up"; readonly ThumbsDown: "thumbs_down"; }; /** * Feedback rating indicating user satisfaction. 'thumbs_up' indicates positive feedback, 'thumbs_down' indicates negative feedback. */ export type UpdateResponseFeedbackRating = ClosedEnum; /** * Fields to update in the feedback. All fields are optional; only provided fields will be updated. Pass null to clear a field. */ export type UpdateResponseFeedbackRequestBody = { /** * Update the feedback rating. Pass null to clear the rating. Can be 'thumbs_up' or 'thumbs_down'. */ rating?: UpdateResponseFeedbackRating | null | undefined; /** * Update the feedback description. Pass null to clear the description. Provide text to update with new feedback comments (max 2000 characters). */ description?: string | null | undefined; }; export type UpdateResponseFeedbackRequest = { id: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; requestBody: UpdateResponseFeedbackRequestBody; }; /** @internal */ export declare const UpdateResponseFeedbackRating$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const UpdateResponseFeedbackRating$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const UpdateResponseFeedbackRequestBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateResponseFeedbackRequestBody$Outbound = { rating?: string | null | undefined; description?: string | null | undefined; }; /** @internal */ export declare const UpdateResponseFeedbackRequestBody$outboundSchema: z.ZodType; export declare function updateResponseFeedbackRequestBodyToJSON(updateResponseFeedbackRequestBody: UpdateResponseFeedbackRequestBody): string; export declare function updateResponseFeedbackRequestBodyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UpdateResponseFeedbackRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateResponseFeedbackRequest$Outbound = { id: string; "X-On-Behalf-Of"?: string | undefined; RequestBody: UpdateResponseFeedbackRequestBody$Outbound; }; /** @internal */ export declare const UpdateResponseFeedbackRequest$outboundSchema: z.ZodType; export declare function updateResponseFeedbackRequestToJSON(updateResponseFeedbackRequest: UpdateResponseFeedbackRequest): string; export declare function updateResponseFeedbackRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateresponsefeedback.d.ts.map