projects/angular-client-sdk/src/lib/interfaces/create-wallet-data.interface.ts
Possible keys received in a message
Properties |
|
| emailAddress |
emailAddress:
|
Type : string
|
| Optional |
| error |
error:
|
Type : Error
|
| Optional |
| walletAddress |
walletAddress:
|
Type : string
|
| Optional |
export interface PaperCreateWalletData {
error?: Error;
emailAddress?: string;
walletAddress?: string;
}