import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetStrategyRequest = { /** * Strategy UUID id */ strategyId: string; includeRelationships?: boolean | undefined; }; /** @internal */ export declare const GetStrategyRequest$inboundSchema: z.ZodType; /** @internal */ export type GetStrategyRequest$Outbound = { strategy_id: string; include_relationships: boolean; }; /** @internal */ export declare const GetStrategyRequest$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 GetStrategyRequest$ { /** @deprecated use `GetStrategyRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetStrategyRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetStrategyRequest$Outbound` instead. */ type Outbound = GetStrategyRequest$Outbound; } export declare function getStrategyRequestToJSON(getStrategyRequest: GetStrategyRequest): string; export declare function getStrategyRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getstrategy.d.ts.map