import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type GetGmvRequest = { /** * Identifier of collection */ collection: string; /** * Currency of statistics */ currency?: models.OlapCurrencyType | undefined; /** * Time period of statistics. Default: D1 */ period?: models.OlapPeriod | undefined; /** * Filters of statistics */ filters?: string | undefined; }; /** @internal */ export declare const GetGmvRequest$inboundSchema: z.ZodType; /** @internal */ export type GetGmvRequest$Outbound = { collection: string; currency: string; period?: string | undefined; filters?: string | undefined; }; /** @internal */ export declare const GetGmvRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetGmvRequest$ { /** @deprecated use `GetGmvRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetGmvRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetGmvRequest$Outbound` instead. */ type Outbound = GetGmvRequest$Outbound; } export declare function getGmvRequestToJSON(getGmvRequest: GetGmvRequest): string; export declare function getGmvRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getgmv.d.ts.map