import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A pending investor action required for an alternative order. */ export type PendingInvestorAction = { /** * The link to the document that requires action. Using this link will open the document in a new window or browser tab. */ actionUri?: string | undefined; /** * The link to the document that requires action, suitable for embedding via iframe. */ actionUriEmbeddable?: string | undefined; /** * The description of the action. */ description?: string | undefined; /** * The ID of the party responsible for performing the action. */ partyId?: string | undefined; }; /** @internal */ export declare const PendingInvestorAction$inboundSchema: z.ZodType; /** @internal */ export type PendingInvestorAction$Outbound = { action_uri?: string | undefined; action_uri_embeddable?: string | undefined; description?: string | undefined; party_id?: string | undefined; }; /** @internal */ export declare const PendingInvestorAction$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 PendingInvestorAction$ { /** @deprecated use `PendingInvestorAction$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PendingInvestorAction$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PendingInvestorAction$Outbound` instead. */ type Outbound = PendingInvestorAction$Outbound; } export declare function pendingInvestorActionToJSON(pendingInvestorAction: PendingInvestorAction): string; export declare function pendingInvestorActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pendinginvestoraction.d.ts.map