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 LinkedCustomerInput = { /** * The ID of the customer this entity is linked to. */ id?: string | 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 email address of the customer. */ email?: string | undefined; }; /** @internal */ export declare const LinkedCustomerInput$inboundSchema: z.ZodType; /** @internal */ export type LinkedCustomerInput$Outbound = { id?: string | undefined; display_name?: string | null | undefined; name?: string | undefined; email?: string | undefined; }; /** @internal */ export declare const LinkedCustomerInput$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 LinkedCustomerInput$ { /** @deprecated use `LinkedCustomerInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedCustomerInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedCustomerInput$Outbound` instead. */ type Outbound = LinkedCustomerInput$Outbound; } export declare function linkedCustomerInputToJSON(linkedCustomerInput: LinkedCustomerInput): string; export declare function linkedCustomerInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedcustomerinput.d.ts.map