# NFTs

## Usage

```csharp
using System;
using System.Collections.Generic;

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

### Properties

* **amount**: An integer representing the amount of the NFT.
* **collection**: An instance of the `Collection` struct representing the collection to which the NFT belongs.
* **metadata**: An instance of the `Metadata` struct representing the metadata associated with the NFT.
* **maxSupply**: A string representing the maximum supply of the NFT.
* **edition**: An integer representing the edition of the NFT.
* **tokens**: A list of `Token` structs representing the tokens associated with the NFT.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://xerial.gitbook.io/xerial-doc/gaming-toolkit/xerial-unity-sdk-guide/xerial-services/service-managers/inventory-manager/nfts.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
