> For the complete documentation index, see [llms.txt](https://xerial.gitbook.io/xerial-doc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xerial.gitbook.io/xerial-doc/gaming-toolkit/xerial-unity-sdk-guide/xerial-services/service-managers/wallet-manager/userdata-class/account-class.md).

# Account Class

The Account class represents the user's account information.

## Properties

* **identifier**: A string representing the user's identifier.
* **id**: A string representing the user's ID.

### Example

```csharp
using System;
namespace Xerial
{
    [Serializable]
    public class Account
    {
        public string identifier;
        public string id;
    }
}
```
