Wallet Entities
These entities are used by the Wallet adapter functions and encapsulate data objects used by Epicenter Wallet API.
Interfaces
WalletItemReadOutView
Represents a wallet item returned in a read operation.
Properties:
label: string- The label identifying the wallet item.value(string | null): The value associated with the wallet item. May benullif no value is set.
WalletReadOutView
Represents a wallet retrieved by the Wallet adapter.
Properties:
walletKey: string- The unique identifier of the wallet.scope({ userKey: string } & GenericScope): The user-specific scope of the wallet.user(PseudonymReadOutView): The user for who the wallet was created.items(WalletItemReadOutView[]): A list of wallet items contained within the wallet.
WalletItemCreateInView
Represents a wallet item when creating or updating a wallet.
Properties:
label: string- The label identifying the wallet item.value(string, optional): The value to assign to the wallet item.