import * as z from "zod/v3"; import * as components from "../components/index.js"; export type GetcollectionRequest = { /** * The client's preferred locale in rfc5646 format (e.g. `en`, `ja`, `pt-BR`). If omitted, the `Accept-Language` will be used. If not present or not supported, defaults to the closest match or `en`. */ locale?: string | undefined; /** * GetCollection request */ getCollectionRequest: components.GetCollectionRequest; }; /** @internal */ export type GetcollectionRequest$Outbound = { locale?: string | undefined; GetCollectionRequest: components.GetCollectionRequest$Outbound; }; /** @internal */ export declare const GetcollectionRequest$outboundSchema: z.ZodType; export declare function getcollectionRequestToJSON(getcollectionRequest: GetcollectionRequest): string; //# sourceMappingURL=getcollection.d.ts.map