import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest = { /** * The preIpoCompany id. */ preIpoCompanyId: string; /** * The fundingRound id. */ fundingRoundId: string; }; export type PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse = { httpMeta: components.HTTPMetadata; /** * OK */ preIpoCompanyFundingRound?: components.PreIpoCompanyFundingRound | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest$inboundSchema: z.ZodType; /** @internal */ export type PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest$Outbound = { preIpoCompany_id: string; fundingRound_id: string; }; /** @internal */ export declare const PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest$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 PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest$ { /** @deprecated use `PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest$Outbound` instead. */ type Outbound = PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest$Outbound; } export declare function preIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequestToJSON(preIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest: PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequest): string; export declare function preIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse$inboundSchema: z.ZodType; /** @internal */ export type PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; PreIpoCompanyFundingRound?: components.PreIpoCompanyFundingRound$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse$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 PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse$ { /** @deprecated use `PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse$Outbound` instead. */ type Outbound = PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse$Outbound; } export declare function preIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponseToJSON(preIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse: PreIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponse): string; export declare function preIpoCompanyFundingRoundsGetPreIpoCompanyFundingRoundResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=preipocompanyfundingroundsgetpreipocompanyfundinground.d.ts.map