/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { preIPOResearchDocumentsListPreIPOCompanyResearchDocuments } from "../funcs/preIPOResearchDocumentsListPreIPOCompanyResearchDocuments.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class PreIPOResearchDocuments extends ClientSDK { /** * List Pre IPO Company Research Documents * * @remarks * Lists Pre IPO Company Research Documents. */ async listPreIpoCompanyResearchDocuments( preIpoCompanyId: string, pageSize?: number | undefined, pageToken?: string | undefined, filter?: string | undefined, options?: RequestOptions, ): Promise< operations.PreIpoCompanyResearchDocumentsListPreIpoCompanyResearchDocumentsResponse > { return unwrapAsync( preIPOResearchDocumentsListPreIPOCompanyResearchDocuments( this, preIpoCompanyId, pageSize, pageToken, filter, options, ), ); } }