UserData Class

The UserData class represents the user data retrieved from the Xerial services. It contains information about the user's account and wallets.

Properties

  • user: An instance of the Account class representing the user's account information.

  • wallets: An array of Wallet instances representing the user's wallets.

Example

using System;
namespace Xerial
{
    [Serializable]
    public class UserData
    {
        public Account user;
        public Wallet[] wallets;
    }
}

Last updated