import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; export type NoteInput = { /** * The title of the note */ title?: string | null | undefined; /** * The content of the note. */ content?: string | null | undefined; /** * The user that owns the note. */ ownerId?: string | null | undefined; /** * The contact that is related to the note. */ contactId?: string | null | undefined; /** * The company that is related to the note. */ companyId?: string | null | undefined; /** * The opportunity that is related to the note. */ opportunityId?: string | null | undefined; /** * The lead that is related to the note. */ leadId?: string | null | undefined; /** * Whether the Note is active or not. */ active?: boolean | null | undefined; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; /** @internal */ export declare const NoteInput$inboundSchema: z.ZodType; /** @internal */ export type NoteInput$Outbound = { title?: string | null | undefined; content?: string | null | undefined; owner_id?: string | null | undefined; contact_id?: string | null | undefined; company_id?: string | null | undefined; opportunity_id?: string | null | undefined; lead_id?: string | null | undefined; active?: boolean | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const NoteInput$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 NoteInput$ { /** @deprecated use `NoteInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NoteInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NoteInput$Outbound` instead. */ type Outbound = NoteInput$Outbound; } export declare function noteInputToJSON(noteInput: NoteInput): string; export declare function noteInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=noteinput.d.ts.map