import * as z from "zod/v3"; import { DigitalWalletAddress, DigitalWalletAddress$Outbound } from "./digitalwalletaddress.js"; /** * Request body for editing a registered digital wallet */ export type DigitalWalletUpdate = { merchantName?: string | null | undefined; domainNames?: Array | null | undefined; merchantDisplayName?: string | null | undefined; merchantUrl?: string | null | undefined; merchantCountryCode?: string | null | undefined; merchantCategoryCode?: string | null | undefined; address?: DigitalWalletAddress | null | undefined; extraConfiguration?: { [k: string]: any; } | null | undefined; }; /** @internal */ export type DigitalWalletUpdate$Outbound = { merchant_name?: string | null | undefined; domain_names?: Array | null | undefined; merchant_display_name?: string | null | undefined; merchant_url?: string | null | undefined; merchant_country_code?: string | null | undefined; merchant_category_code?: string | null | undefined; address?: DigitalWalletAddress$Outbound | null | undefined; extra_configuration?: { [k: string]: any; } | null | undefined; }; /** @internal */ export declare const DigitalWalletUpdate$outboundSchema: z.ZodType; export declare function digitalWalletUpdateToJSON(digitalWalletUpdate: DigitalWalletUpdate): string; //# sourceMappingURL=digitalwalletupdate.d.ts.map