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. * * @deprecated class: This will be removed in a future release, please migrate away from it as soon as possible. */ export type DeprecatedLinkedSupplierInput = { /** * The display name of the supplier. */ displayName?: string | null | undefined; address?: Address | undefined; }; /** @internal */ export declare const DeprecatedLinkedSupplierInput$inboundSchema: z.ZodType; /** @internal */ export type DeprecatedLinkedSupplierInput$Outbound = { display_name?: string | null | undefined; address?: Address$Outbound | undefined; }; /** @internal */ export declare const DeprecatedLinkedSupplierInput$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 DeprecatedLinkedSupplierInput$ { /** @deprecated use `DeprecatedLinkedSupplierInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeprecatedLinkedSupplierInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeprecatedLinkedSupplierInput$Outbound` instead. */ type Outbound = DeprecatedLinkedSupplierInput$Outbound; } export declare function deprecatedLinkedSupplierInputToJSON(deprecatedLinkedSupplierInput: DeprecatedLinkedSupplierInput): string; export declare function deprecatedLinkedSupplierInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deprecatedlinkedsupplierinput.d.ts.map