import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateCustomerPortalLinkRequestEntity = { /** * Unique identifier of the customer. */ customerId: string; }; /** @internal */ export declare const CreateCustomerPortalLinkRequestEntity$inboundSchema: z.ZodType; /** @internal */ export type CreateCustomerPortalLinkRequestEntity$Outbound = { customer_id: string; }; /** @internal */ export declare const CreateCustomerPortalLinkRequestEntity$outboundSchema: z.ZodType; export declare function createCustomerPortalLinkRequestEntityToJSON(createCustomerPortalLinkRequestEntity: CreateCustomerPortalLinkRequestEntity): string; export declare function createCustomerPortalLinkRequestEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createcustomerportallinkrequestentity.d.ts.map