Features
Introduction
The Features module exposes functionality to manage features available for a user.
Features Service
The FeaturesService
is used to retrieve details about available features and their configuration.
Get Features Feature in development
Use the getWalletFeatures
method to retrieve a list of available features.
Features refer to capabilities exposed by the Paysafe Wallet, such as transfers, deposits, withdrawals, and others.
import { Wallet } from '@paysafe/paysafe-wallet-saas-web/wallet';
Wallet.getInstance().getFeaturesService().getWalletFeatures()
.then(response => console.log('Available features', response))
.catch(error => console.error('Error getting features', error));