import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The customer this entity is linked to. */ export type LinkedCustomer = { /** * The ID of the customer this entity is linked to. */ id?: string | undefined; /** * The display ID of the customer. */ displayId?: string | null | undefined; /** * The display name of the customer. */ displayName?: string | null | undefined; /** * The name of the customer. Deprecated, use display_name instead. * * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ name?: string | undefined; /** * The company name of the customer. */ companyName?: string | null | undefined; /** * The email address of the customer. */ email?: string | undefined; }; /** @internal */ export declare const LinkedCustomer$inboundSchema: z.ZodType; /** @internal */ export type LinkedCustomer$Outbound = { id?: string | undefined; display_id?: string | null | undefined; display_name?: string | null | undefined; name?: string | undefined; company_name?: string | null | undefined; email?: string | undefined; }; /** @internal */ export declare const LinkedCustomer$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 LinkedCustomer$ { /** @deprecated use `LinkedCustomer$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedCustomer$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedCustomer$Outbound` instead. */ type Outbound = LinkedCustomer$Outbound; } export declare function linkedCustomerToJSON(linkedCustomer: LinkedCustomer): string; export declare function linkedCustomerFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedcustomer.d.ts.map