import * as z from "zod/v3"; export type GetpolicyRequest = { /** * The id of the policy to fetch. */ id: string; /** * The version of the policy to fetch. Each time a policy is updated, the older version is still stored. If this is left empty, the latest policy is fetched. */ version?: number | undefined; }; /** @internal */ export type GetpolicyRequest$Outbound = { id: string; version?: number | undefined; }; /** @internal */ export declare const GetpolicyRequest$outboundSchema: z.ZodType; export declare function getpolicyRequestToJSON(getpolicyRequest: GetpolicyRequest): string; //# sourceMappingURL=getpolicy.d.ts.map