import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomerLinksEntity = { /** * Customer portal link. */ customerPortalLink: string; }; /** @internal */ export declare const CustomerLinksEntity$inboundSchema: z.ZodType; /** @internal */ export type CustomerLinksEntity$Outbound = { customer_portal_link: string; }; /** @internal */ export declare const CustomerLinksEntity$outboundSchema: z.ZodType; export declare function customerLinksEntityToJSON(customerLinksEntity: CustomerLinksEntity): string; export declare function customerLinksEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerlinksentity.d.ts.map