import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PreIpoCompanyNewsEventArticle, PreIpoCompanyNewsEventArticle$Outbound } from "./preipocompanynewseventarticle.js"; /** * A Pre IPO Company News Event. */ export type PreIpoCompanyNewsEvent = { /** * The news articles related to the Pre IPO Company News Event. */ articles?: Array | undefined; /** * The description of the Pre IPO Company News Event. */ description?: string | undefined; /** * The time the news event occurred. */ eventTime?: Date | null | undefined; /** * The resource name of the Pre IPO Company News Event. Format: preIpoCompanies/{pre_ipo_company}/newsEvents/{newsEvent} */ name?: string | undefined; /** * The ID of the Pre IPO Company News Event. */ newsEventId?: string | undefined; /** * The ID of the Pre IPO Company. */ preIpoCompanyId?: string | undefined; /** * The title of the Pre IPO Company News Event. */ title?: string | undefined; }; /** @internal */ export declare const PreIpoCompanyNewsEvent$inboundSchema: z.ZodType; /** @internal */ export type PreIpoCompanyNewsEvent$Outbound = { articles?: Array | undefined; description?: string | undefined; event_time?: string | null | undefined; name?: string | undefined; news_event_id?: string | undefined; pre_ipo_company_id?: string | undefined; title?: string | undefined; }; /** @internal */ export declare const PreIpoCompanyNewsEvent$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 PreIpoCompanyNewsEvent$ { /** @deprecated use `PreIpoCompanyNewsEvent$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyNewsEvent$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyNewsEvent$Outbound` instead. */ type Outbound = PreIpoCompanyNewsEvent$Outbound; } export declare function preIpoCompanyNewsEventToJSON(preIpoCompanyNewsEvent: PreIpoCompanyNewsEvent): string; export declare function preIpoCompanyNewsEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=preipocompanynewsevent.d.ts.map