import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A news article related to the Pre IPO Company News Event. */ export type PreIpoCompanyNewsEventArticle = { /** * The headline of the news article. */ headline?: string | undefined; /** * The publication that published the news article. */ publication?: string | undefined; /** * The time the news article was published. */ publishTime?: Date | null | undefined; /** * A brief summary of the news article. */ summary?: string | undefined; /** * The URI of the news article. */ uri?: string | undefined; }; /** @internal */ export declare const PreIpoCompanyNewsEventArticle$inboundSchema: z.ZodType; /** @internal */ export type PreIpoCompanyNewsEventArticle$Outbound = { headline?: string | undefined; publication?: string | undefined; publish_time?: string | null | undefined; summary?: string | undefined; uri?: string | undefined; }; /** @internal */ export declare const PreIpoCompanyNewsEventArticle$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 PreIpoCompanyNewsEventArticle$ { /** @deprecated use `PreIpoCompanyNewsEventArticle$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyNewsEventArticle$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PreIpoCompanyNewsEventArticle$Outbound` instead. */ type Outbound = PreIpoCompanyNewsEventArticle$Outbound; } export declare function preIpoCompanyNewsEventArticleToJSON(preIpoCompanyNewsEventArticle: PreIpoCompanyNewsEventArticle): string; export declare function preIpoCompanyNewsEventArticleFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=preipocompanynewseventarticle.d.ts.map