import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomerRequestEntity = { /** * Unique identifier of the customer. You may specify only one of these parameters: id or email. */ id?: string | undefined; /** * Customer email address. You may only specify one of these parameters: id, email. */ email?: string | undefined; }; /** @internal */ export declare const CustomerRequestEntity$inboundSchema: z.ZodType; /** @internal */ export type CustomerRequestEntity$Outbound = { id?: string | undefined; email?: string | undefined; }; /** @internal */ export declare const CustomerRequestEntity$outboundSchema: z.ZodType; export declare function customerRequestEntityToJSON(customerRequestEntity: CustomerRequestEntity): string; export declare function customerRequestEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerrequestentity.d.ts.map