import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateApplePaySession = { /** * A fully qualified top-level or sub-domain name where you will accept Apple Pay. Should not include "https". */ domain: string; /** * A UTF-8 string to display in the Buy button. */ displayName: string; }; /** @internal */ export declare const CreateApplePaySession$inboundSchema: z.ZodType; /** @internal */ export type CreateApplePaySession$Outbound = { domain: string; displayName: string; }; /** @internal */ export declare const CreateApplePaySession$outboundSchema: z.ZodType; export declare function createApplePaySessionToJSON(createApplePaySession: CreateApplePaySession): string; export declare function createApplePaySessionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createapplepaysession.d.ts.map