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 LinkedSupplier = { /** * The ID of the supplier this entity is linked to. */ 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 LinkedSupplier$inboundSchema: z.ZodType; /** @internal */ export type LinkedSupplier$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 LinkedSupplier$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 LinkedSupplier$ { /** @deprecated use `LinkedSupplier$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedSupplier$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedSupplier$Outbound` instead. */ type Outbound = LinkedSupplier$Outbound; } export declare function linkedSupplierToJSON(linkedSupplier: LinkedSupplier): string; export declare function linkedSupplierFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedsupplier.d.ts.map