import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RegisterApplePayMerchantDomains = { /** * A UTF-8 string to display in the Buy button. */ displayName?: string | undefined; /** * A unique list of fully-qualified, top-level or sub-domain names where you will accept Apple Pay. */ domains?: Array | undefined; }; /** @internal */ export declare const RegisterApplePayMerchantDomains$inboundSchema: z.ZodType; /** @internal */ export type RegisterApplePayMerchantDomains$Outbound = { displayName?: string | undefined; domains?: Array | undefined; }; /** @internal */ export declare const RegisterApplePayMerchantDomains$outboundSchema: z.ZodType; export declare function registerApplePayMerchantDomainsToJSON(registerApplePayMerchantDomains: RegisterApplePayMerchantDomains): string; export declare function registerApplePayMerchantDomainsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=registerapplepaymerchantdomains.d.ts.map