import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WalletType } from "./wallettype.js"; export type PaymentMethodsWallet = { walletID: string; partnerAccountID: string; /** * Type of a wallet. * * @remarks * - `default`: The system-generated wallet automatically created when an account is granted the wallet capability. * - `general`: An additional, user-defined wallet created via API or Dashboard. */ walletType: WalletType; }; /** @internal */ export declare const PaymentMethodsWallet$inboundSchema: z.ZodType; /** @internal */ export type PaymentMethodsWallet$Outbound = { walletID: string; partnerAccountID: string; walletType: string; }; /** @internal */ export declare const PaymentMethodsWallet$outboundSchema: z.ZodType; export declare function paymentMethodsWalletToJSON(paymentMethodsWallet: PaymentMethodsWallet): string; export declare function paymentMethodsWalletFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethodswallet.d.ts.map