import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GooglePaySession = { /** * The gateway ID for the merchant as assigned by our platform. */ gatewayMerchantId: string; /** * The session token for Google Pay. */ token: string; }; /** @internal */ export declare const GooglePaySession$inboundSchema: z.ZodType; export declare function googlePaySessionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=googlepaysession.d.ts.map