import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateApplePayMerchantDomains = { /** * A unique list of fully-qualified, top-level or sub-domain names to add. */ addDomains?: Array | undefined; /** * A unique list of fully-qualified, top-level or sub-domain names to remove. */ removeDomains?: Array | undefined; }; /** @internal */ export declare const UpdateApplePayMerchantDomains$inboundSchema: z.ZodType; /** @internal */ export type UpdateApplePayMerchantDomains$Outbound = { addDomains?: Array | undefined; removeDomains?: Array | undefined; }; /** @internal */ export declare const UpdateApplePayMerchantDomains$outboundSchema: z.ZodType; export declare function updateApplePayMerchantDomainsToJSON(updateApplePayMerchantDomains: UpdateApplePayMerchantDomains): string; export declare function updateApplePayMerchantDomainsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateapplepaymerchantdomains.d.ts.map