@mozaic-io/mozaic-sdk-node
Version:
The Mozaic Node SDK enables you to pay your creators easily via the Mozaic API.
28 lines • 914 B
TypeScript
import { Wallet as RawWallet } from "../../api";
import { WalletItem } from "./WalletItem";
export declare class Wallet {
/**
* The unique mozaic ID of the wallet
*/
id: string;
/**
* The provider type that is providing the wallet to Mozaic
*/
key: string;
/**
* The payment instruments you have registered in the wallet. These can be
* used to send money and fund Payment Cycles.
*/
paymentMethods: WalletItem[];
/**
* The payout instruments you have registered in the wallet. These can be used
* to move money from Mozaic and into your bank account.
*/
payoutMethods: WalletItem[];
/**
* @internal Please use Mozaic.Wallets to interact with the Wallet object.
* @param source The raw wallet data that is returned from the Mozaic API.
*/
constructor(source: RawWallet);
}
//# sourceMappingURL=Wallet.d.ts.map