Attributes

The Attributes struct represents additional attributes associated with a non-fungible token (NFT) within Unity applications using the Xerial services.

Overview

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

Usage

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

Last updated