import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WalletStatus } from "./walletstatus.js"; export type WebhookDataWalletUpdated = { accountID: string; walletID: string; /** * Status of a wallet. * * @remarks * - `active`: The wallet is available for use and has an enabled payment method. * - `closed`: The wallet is no longer active and the corresponding payment method has been disabled. */ status: WalletStatus; }; /** @internal */ export declare const WebhookDataWalletUpdated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataWalletUpdated$Outbound = { accountID: string; walletID: string; status: string; }; /** @internal */ export declare const WebhookDataWalletUpdated$outboundSchema: z.ZodType; export declare function webhookDataWalletUpdatedToJSON(webhookDataWalletUpdated: WebhookDataWalletUpdated): string; export declare function webhookDataWalletUpdatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatawalletupdated.d.ts.map