import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { WalletStatus } from "./wallet-status.js"; import { WalletType } from "./wallet-type.js"; export type WebhookDtoWallet = { balance?: string | undefined; conversionRate?: string | undefined; creditBalance?: string | undefined; currency?: string | undefined; customerId?: string | undefined; id?: string | undefined; name?: string | undefined; walletStatus?: WalletStatus | undefined; walletType?: WalletType | undefined; }; /** @internal */ export declare const WebhookDtoWallet$inboundSchema: z.ZodMiniType; export declare function webhookDtoWalletFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-wallet.d.ts.map