> 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/inventory-manager/nfts/attributes.md).

# Attributes

## Overview

It encapsulates information such as the type, name, and value of the attribute.

### Usage

```csharp
using System;

namespace Xerial
{
    [Serializable]
    public struct Attributes
    {
        // Implementation details
    }
}
```

### Properties

* **type**: A string representing the type of the attribute.
* **name**: A string representing the name of the attribute.
* **value**: A string representing the value of the attribute.

### Conclusion
