/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { preIPOCompaniesGetPreIPOCompany } from "../funcs/preIPOCompaniesGetPreIPOCompany.js"; import { preIPOCompaniesListPreIPOCompanies } from "../funcs/preIPOCompaniesListPreIPOCompanies.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class PreIPOCompanies extends ClientSDK { /** * List Pre IPO Company * * @remarks * Lists Pre IPO Companies. */ async listPreIpoCompanies( pageSize?: number | undefined, pageToken?: string | undefined, options?: RequestOptions, ): Promise { return unwrapAsync(preIPOCompaniesListPreIPOCompanies( this, pageSize, pageToken, options, )); } /** * Get Pre IPO Company * * @remarks * Gets a Pre IPO Company. */ async getPreIpoCompany( preIpoCompanyId: string, options?: RequestOptions, ): Promise { return unwrapAsync(preIPOCompaniesGetPreIPOCompany( this, preIpoCompanyId, options, )); } }