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 PatchWallet = { name?: string | undefined; /** * 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 | undefined; description?: string | undefined; /** * Free-form key-value pair list. Useful for storing information that is not captured elsewhere. */ metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const PatchWallet$inboundSchema: z.ZodType; /** @internal */ export type PatchWallet$Outbound = { name?: string | undefined; status?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const PatchWallet$outboundSchema: z.ZodType; export declare function patchWalletToJSON(patchWallet: PatchWallet): string; export declare function patchWalletFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=patchwallet.d.ts.map