import * as z from "zod/v3"; import * as components from "../components/index.js"; export type RegisterDigitalWalletDomainGlobals = { merchantAccountId?: string | undefined; }; export type RegisterDigitalWalletDomainRequest = { /** * The ID of the digital wallet to remove a domain for. */ digitalWalletId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; digitalWalletDomain: components.DigitalWalletDomain; }; /** @internal */ export type RegisterDigitalWalletDomainRequest$Outbound = { digital_wallet_id: string; merchantAccountId?: string | null | undefined; DigitalWalletDomain: components.DigitalWalletDomain$Outbound; }; /** @internal */ export declare const RegisterDigitalWalletDomainRequest$outboundSchema: z.ZodType; export declare function registerDigitalWalletDomainRequestToJSON(registerDigitalWalletDomainRequest: RegisterDigitalWalletDomainRequest): string; //# sourceMappingURL=registerdigitalwalletdomain.d.ts.map