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 PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest = { /** * The preIpoCompany id. */ preIpoCompanyId: string; /** * The maximum number of Pre IPO Company Funding Rounds to return. The service may return fewer than this value. If unspecified, at most 100 Pre IPO Company Funding Rounds will be returned. The maximum value is 100; values above 100 will be coerced to 100. */ pageSize?: number | undefined; /** * A page token, received from a previous `ListPreIpoCompanyFundingRoundsRequest` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListPreIpoCompanyFundingRoundsRequest` must match the call that provided the page token. */ pageToken?: string | undefined; }; export type PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse = { httpMeta: components.HTTPMetadata; /** * OK */ listPreIpoCompanyFundingRoundsResponse?: components.ListPreIpoCompanyFundingRoundsResponse | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest$inboundSchema: z.ZodType; /** @internal */ export type PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest$Outbound = { preIpoCompany_id: string; page_size?: number | undefined; page_token?: string | undefined; }; /** @internal */ export declare const PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest$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 PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest$ { /** @deprecated use `PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest$Outbound` instead. */ type Outbound = PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest$Outbound; } export declare function preIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequestToJSON(preIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest: PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequest): string; export declare function preIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse$inboundSchema: z.ZodType; /** @internal */ export type PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; ListPreIpoCompanyFundingRoundsResponse?: components.ListPreIpoCompanyFundingRoundsResponse$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse$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 PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse$ { /** @deprecated use `PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse$Outbound` instead. */ type Outbound = PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse$Outbound; } export declare function preIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponseToJSON(preIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse: PreIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponse): string; export declare function preIpoCompanyFundingRoundsListPreIpoCompanyFundingRoundsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=preipocompanyfundingroundslistpreipocompanyfundingrounds.d.ts.map