import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PreIpoCompanyFundingRoundClosing, PreIpoCompanyFundingRoundClosing$Outbound } from "./preipocompanyfundingroundclosing.js"; /** * A Pre IPO Company Funding Round. */ export type PreIpoCompanyFundingRound = { /** * The closings associated with the Pre IPO Company Funding Round. */ closings?: Array | undefined; /** * The ID of the Pre IPO Company Funding Round. */ fundingRoundId?: string | undefined; /** * The time the Pre IPO Company Funding Round was issued. */ issueTime?: Date | null | undefined; /** * The resource name of the Pre IPO Company Funding Round. Format: preIpoCompanies/{pre_ipo_company}/fundingRounds/{funding_round} */ name?: string | undefined; /** * The ID of the Pre IPO Company. */ preIpoCompanyId?: string | undefined; /** * The round of funding for the Pre IPO Company. */ round?: string | undefined; }; /** @internal */ export declare const PreIpoCompanyFundingRound$inboundSchema: z.ZodType; /** @internal */ export type PreIpoCompanyFundingRound$Outbound = { closings?: Array | undefined; funding_round_id?: string | undefined; issue_time?: string | null | undefined; name?: string | undefined; pre_ipo_company_id?: string | undefined; round?: string | undefined; }; /** @internal */ export declare const PreIpoCompanyFundingRound$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 PreIpoCompanyFundingRound$ { /** @deprecated use `PreIpoCompanyFundingRound$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRound$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRound$Outbound` instead. */ type Outbound = PreIpoCompanyFundingRound$Outbound; } export declare function preIpoCompanyFundingRoundToJSON(preIpoCompanyFundingRound: PreIpoCompanyFundingRound): string; export declare function preIpoCompanyFundingRoundFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=preipocompanyfundinground.d.ts.map