import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PendingInvestorAction, PendingInvestorAction$Outbound } from "./pendinginvestoraction.js"; /** * Response to RetrievePendingInvestorActions request. */ export type RetrievePendingInvestorActionsResponse = { /** * The ID of the account specified in the request. */ accountId?: string | undefined; /** * The ID for the alternative investment order resource. */ alternativeOrderId?: string | undefined; /** * The object containing the pending action URIs that provide access to the document that is awaiting signature and the id of the responsible party. */ pendingInvestorActions?: Array | undefined; }; /** @internal */ export declare const RetrievePendingInvestorActionsResponse$inboundSchema: z.ZodType; /** @internal */ export type RetrievePendingInvestorActionsResponse$Outbound = { account_id?: string | undefined; alternative_order_id?: string | undefined; pending_investor_actions?: Array | undefined; }; /** @internal */ export declare const RetrievePendingInvestorActionsResponse$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 RetrievePendingInvestorActionsResponse$ { /** @deprecated use `RetrievePendingInvestorActionsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RetrievePendingInvestorActionsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RetrievePendingInvestorActionsResponse$Outbound` instead. */ type Outbound = RetrievePendingInvestorActionsResponse$Outbound; } export declare function retrievePendingInvestorActionsResponseToJSON(retrievePendingInvestorActionsResponse: RetrievePendingInvestorActionsResponse): string; export declare function retrievePendingInvestorActionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=retrievependinginvestoractionsresponse.d.ts.map