import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PreIpoCompanyResearchDocument, PreIpoCompanyResearchDocument$Outbound } from "./preipocompanyresearchdocument.js"; /** * Response for listing Pre IPO Company Research Documents. */ export type ListPreIpoCompanyResearchDocumentsResponse = { /** * A token to retrieve the next page of results. Pass this value in the `page_token` field of a subsequent `ListPreIpoCompanyResearchDocumentsRequest` to retrieve the next page of results. If this field is omitted, there are no subsequent pages. */ nextPageToken?: string | undefined; /** * The Pre IPO Company Research Documents. */ preIpoCompanyResearchDocuments?: Array | undefined; }; /** @internal */ export declare const ListPreIpoCompanyResearchDocumentsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListPreIpoCompanyResearchDocumentsResponse$Outbound = { next_page_token?: string | undefined; pre_ipo_company_research_documents?: Array | undefined; }; /** @internal */ export declare const ListPreIpoCompanyResearchDocumentsResponse$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 ListPreIpoCompanyResearchDocumentsResponse$ { /** @deprecated use `ListPreIpoCompanyResearchDocumentsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListPreIpoCompanyResearchDocumentsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListPreIpoCompanyResearchDocumentsResponse$Outbound` instead. */ type Outbound = ListPreIpoCompanyResearchDocumentsResponse$Outbound; } export declare function listPreIpoCompanyResearchDocumentsResponseToJSON(listPreIpoCompanyResearchDocumentsResponse: ListPreIpoCompanyResearchDocumentsResponse): string; export declare function listPreIpoCompanyResearchDocumentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listpreipocompanyresearchdocumentsresponse.d.ts.map