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 order to return feedback entries in by creation date of the underlying request. 'asc' returns oldest first, 'desc' returns newest first. Defaults to 'desc' (newest first). */ export declare const ListResponseFeedbackQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; /** * The order to return feedback entries in by creation date of the underlying request. 'asc' returns oldest first, 'desc' returns newest first. Defaults to 'desc' (newest first). */ export type ListResponseFeedbackQueryParamOrder = ClosedEnum; /** * Only return feedback entries with this rating. Omit to return entries with any rating. */ export declare const ListResponseFeedbackQueryParamRating: { readonly ThumbsUp: "thumbs_up"; readonly ThumbsDown: "thumbs_down"; }; /** * Only return feedback entries with this rating. Omit to return entries with any rating. */ export type ListResponseFeedbackQueryParamRating = ClosedEnum; export type ListResponseFeedbackRequest = { after?: string | undefined; limit?: number | undefined; /** * The order to return feedback entries in by creation date of the underlying request. 'asc' returns oldest first, 'desc' returns newest first. Defaults to 'desc' (newest first). */ order?: ListResponseFeedbackQueryParamOrder | undefined; /** * Only return feedback entries with this rating. Omit to return entries with any rating. */ rating?: ListResponseFeedbackQueryParamRating | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListResponseFeedbackQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListResponseFeedbackQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListResponseFeedbackQueryParamRating$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListResponseFeedbackQueryParamRating$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListResponseFeedbackRequest$inboundSchema: z.ZodType; /** @internal */ export type ListResponseFeedbackRequest$Outbound = { after?: string | undefined; limit: number; order: string; rating?: string | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListResponseFeedbackRequest$outboundSchema: z.ZodType; export declare function listResponseFeedbackRequestToJSON(listResponseFeedbackRequest: ListResponseFeedbackRequest): string; export declare function listResponseFeedbackRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listresponsefeedback.d.ts.map