import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ClickToPaySession = { /** * The ID of the Click to Pay application. */ digitalPaymentApplicationId: string; /** * The merchant name as configured ont he the Click to Pay wallet. */ digitalPaymentApplicationName: string; }; /** @internal */ export declare const ClickToPaySession$inboundSchema: z.ZodType; export declare function clickToPaySessionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=clicktopaysession.d.ts.map