import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteCustomerRequest = { /** * The unique ID of the customer. You may use either the customer's `id` on Dub (obtained via `/customers` endpoint) or their `externalId` (unique ID within your system, prefixed with `ext_`, e.g. `ext_123`). */ id: string; }; /** * The customer was deleted. */ export type DeleteCustomerResponseBody = { /** * The unique ID of the customer. You may use either the customer's `id` on Dub (obtained via `/customers` endpoint) or their `externalId` (unique ID within your system, prefixed with `ext_`, e.g. `ext_123`). */ id: string; }; /** @internal */ export type DeleteCustomerRequest$Outbound = { id: string; }; /** @internal */ export declare const DeleteCustomerRequest$outboundSchema: z.ZodType; export declare function deleteCustomerRequestToJSON(deleteCustomerRequest: DeleteCustomerRequest): string; /** @internal */ export declare const DeleteCustomerResponseBody$inboundSchema: z.ZodType; export declare function deleteCustomerResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletecustomer.d.ts.map