import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AlternativeOrdersRetrievePendingInvestorActionsRequest = { /** * The account id. */ accountId: string; /** * The alternativeOrder id. */ alternativeOrderId: string; }; export type AlternativeOrdersRetrievePendingInvestorActionsResponse = { httpMeta: components.HTTPMetadata; /** * OK */ retrievePendingInvestorActionsResponse?: components.RetrievePendingInvestorActionsResponse | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const AlternativeOrdersRetrievePendingInvestorActionsRequest$inboundSchema: z.ZodType; /** @internal */ export type AlternativeOrdersRetrievePendingInvestorActionsRequest$Outbound = { account_id: string; alternativeOrder_id: string; }; /** @internal */ export declare const AlternativeOrdersRetrievePendingInvestorActionsRequest$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 AlternativeOrdersRetrievePendingInvestorActionsRequest$ { /** @deprecated use `AlternativeOrdersRetrievePendingInvestorActionsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeOrdersRetrievePendingInvestorActionsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeOrdersRetrievePendingInvestorActionsRequest$Outbound` instead. */ type Outbound = AlternativeOrdersRetrievePendingInvestorActionsRequest$Outbound; } export declare function alternativeOrdersRetrievePendingInvestorActionsRequestToJSON(alternativeOrdersRetrievePendingInvestorActionsRequest: AlternativeOrdersRetrievePendingInvestorActionsRequest): string; export declare function alternativeOrdersRetrievePendingInvestorActionsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AlternativeOrdersRetrievePendingInvestorActionsResponse$inboundSchema: z.ZodType; /** @internal */ export type AlternativeOrdersRetrievePendingInvestorActionsResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; RetrievePendingInvestorActionsResponse?: components.RetrievePendingInvestorActionsResponse$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AlternativeOrdersRetrievePendingInvestorActionsResponse$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 AlternativeOrdersRetrievePendingInvestorActionsResponse$ { /** @deprecated use `AlternativeOrdersRetrievePendingInvestorActionsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeOrdersRetrievePendingInvestorActionsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeOrdersRetrievePendingInvestorActionsResponse$Outbound` instead. */ type Outbound = AlternativeOrdersRetrievePendingInvestorActionsResponse$Outbound; } export declare function alternativeOrdersRetrievePendingInvestorActionsResponseToJSON(alternativeOrdersRetrievePendingInvestorActionsResponse: AlternativeOrdersRetrievePendingInvestorActionsResponse): string; export declare function alternativeOrdersRetrievePendingInvestorActionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alternativeordersretrievependinginvestoractions.d.ts.map