import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address, Address$Outbound } from "./address.js"; /** * The supplier this entity is linked to. */ export type LinkedSupplierInput = { /** * The ID of the supplier this entity is linked to. */ id?: string | undefined; /** * The display name of the supplier. */ displayName?: string | null | undefined; address?: Address | undefined; }; /** @internal */ export declare const LinkedSupplierInput$inboundSchema: z.ZodType; /** @internal */ export type LinkedSupplierInput$Outbound = { id?: string | undefined; display_name?: string | null | undefined; address?: Address$Outbound | undefined; }; /** @internal */ export declare const LinkedSupplierInput$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 LinkedSupplierInput$ { /** @deprecated use `LinkedSupplierInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedSupplierInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedSupplierInput$Outbound` instead. */ type Outbound = LinkedSupplierInput$Outbound; } export declare function linkedSupplierInputToJSON(linkedSupplierInput: LinkedSupplierInput): string; export declare function linkedSupplierInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedsupplierinput.d.ts.map