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 PreIpoCompaniesGetPreIpoCompanyRequest = { /** * The preIpoCompany id. */ preIpoCompanyId: string; }; export type PreIpoCompaniesGetPreIpoCompanyResponse = { httpMeta: components.HTTPMetadata; /** * OK */ preIpoCompany?: components.PreIpoCompany | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const PreIpoCompaniesGetPreIpoCompanyRequest$inboundSchema: z.ZodType; /** @internal */ export type PreIpoCompaniesGetPreIpoCompanyRequest$Outbound = { preIpoCompany_id: string; }; /** @internal */ export declare const PreIpoCompaniesGetPreIpoCompanyRequest$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 PreIpoCompaniesGetPreIpoCompanyRequest$ { /** @deprecated use `PreIpoCompaniesGetPreIpoCompanyRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PreIpoCompaniesGetPreIpoCompanyRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PreIpoCompaniesGetPreIpoCompanyRequest$Outbound` instead. */ type Outbound = PreIpoCompaniesGetPreIpoCompanyRequest$Outbound; } export declare function preIpoCompaniesGetPreIpoCompanyRequestToJSON(preIpoCompaniesGetPreIpoCompanyRequest: PreIpoCompaniesGetPreIpoCompanyRequest): string; export declare function preIpoCompaniesGetPreIpoCompanyRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PreIpoCompaniesGetPreIpoCompanyResponse$inboundSchema: z.ZodType; /** @internal */ export type PreIpoCompaniesGetPreIpoCompanyResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; PreIpoCompany?: components.PreIpoCompany$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const PreIpoCompaniesGetPreIpoCompanyResponse$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 PreIpoCompaniesGetPreIpoCompanyResponse$ { /** @deprecated use `PreIpoCompaniesGetPreIpoCompanyResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PreIpoCompaniesGetPreIpoCompanyResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PreIpoCompaniesGetPreIpoCompanyResponse$Outbound` instead. */ type Outbound = PreIpoCompaniesGetPreIpoCompanyResponse$Outbound; } export declare function preIpoCompaniesGetPreIpoCompanyResponseToJSON(preIpoCompaniesGetPreIpoCompanyResponse: PreIpoCompaniesGetPreIpoCompanyResponse): string; export declare function preIpoCompaniesGetPreIpoCompanyResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=preipocompaniesgetpreipocompany.d.ts.map