import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Negative News detail. */ export type NegativeNewsCreate = { /** * Indicates whether there is negative news against related parties */ negativeNewsAgainstRelatedParties: boolean; /** * Description of the negative news against related parties */ negativeNewsAgainstRelatedPartiesDescription?: string | undefined; }; /** @internal */ export declare const NegativeNewsCreate$inboundSchema: z.ZodType; /** @internal */ export type NegativeNewsCreate$Outbound = { negative_news_against_related_parties: boolean; negative_news_against_related_parties_description?: string | undefined; }; /** @internal */ export declare const NegativeNewsCreate$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 NegativeNewsCreate$ { /** @deprecated use `NegativeNewsCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NegativeNewsCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NegativeNewsCreate$Outbound` instead. */ type Outbound = NegativeNewsCreate$Outbound; } export declare function negativeNewsCreateToJSON(negativeNewsCreate: NegativeNewsCreate): string; export declare function negativeNewsCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=negativenewscreate.d.ts.map