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 DeprecatedLinkedSupplier = { /** * A unique identifier for an object. */ id?: string | undefined; /** * The display ID of the supplier. */ displayId?: string | null | undefined; /** * The display name of the supplier. */ displayName?: string | null | undefined; /** * The company name of the supplier. */ companyName?: string | null | undefined; address?: Address | undefined; }; /** @internal */ export declare const DeprecatedLinkedSupplier$inboundSchema: z.ZodType; /** @internal */ export type DeprecatedLinkedSupplier$Outbound = { id?: string | undefined; display_id?: string | null | undefined; display_name?: string | null | undefined; company_name?: string | null | undefined; address?: Address$Outbound | undefined; }; /** @internal */ export declare const DeprecatedLinkedSupplier$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 DeprecatedLinkedSupplier$ { /** @deprecated use `DeprecatedLinkedSupplier$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeprecatedLinkedSupplier$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeprecatedLinkedSupplier$Outbound` instead. */ type Outbound = DeprecatedLinkedSupplier$Outbound; } export declare function deprecatedLinkedSupplierToJSON(deprecatedLinkedSupplier: DeprecatedLinkedSupplier): string; export declare function deprecatedLinkedSupplierFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deprecatedlinkedsupplier.d.ts.map