import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The parent customer this entity is linked to. */ export type LinkedParentCustomer = { /** * The parent ID of the customer this entity is linked to. */ id: string; /** * The name of the parent customer. */ name?: string | undefined; }; /** @internal */ export declare const LinkedParentCustomer$inboundSchema: z.ZodType; /** @internal */ export type LinkedParentCustomer$Outbound = { id: string; name?: string | undefined; }; /** @internal */ export declare const LinkedParentCustomer$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 LinkedParentCustomer$ { /** @deprecated use `LinkedParentCustomer$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LinkedParentCustomer$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LinkedParentCustomer$Outbound` instead. */ type Outbound = LinkedParentCustomer$Outbound; } export declare function linkedParentCustomerToJSON(linkedParentCustomer: LinkedParentCustomer): string; export declare function linkedParentCustomerFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=linkedparentcustomer.d.ts.map