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"; /** * Sort order by creation time. Defaults to 'desc' (newest first). */ export declare const ListSpeechToTextHistoryQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; /** * Sort order by creation time. Defaults to 'desc' (newest first). */ export type ListSpeechToTextHistoryQueryParamOrder = ClosedEnum; export type ListSpeechToTextHistoryRequest = { after?: string | undefined; limit?: number | undefined; /** * Sort order by creation time. Defaults to 'desc' (newest first). */ order?: ListSpeechToTextHistoryQueryParamOrder | undefined; model?: string | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListSpeechToTextHistoryQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListSpeechToTextHistoryQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListSpeechToTextHistoryRequest$inboundSchema: z.ZodType; /** @internal */ export type ListSpeechToTextHistoryRequest$Outbound = { after?: string | undefined; limit: number; order: string; model?: string | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListSpeechToTextHistoryRequest$outboundSchema: z.ZodType; export declare function listSpeechToTextHistoryRequestToJSON(listSpeechToTextHistoryRequest: ListSpeechToTextHistoryRequest): string; export declare function listSpeechToTextHistoryRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listspeechtotexthistory.d.ts.map