MarketPlace Manager
The MarketPlaceManager class is responsible for managing marketplace-related operations within Unity applications using the Xerial services.
Overview
Usage
using System.Collections.Generic;
using Xerial;
public class MarketPlaceManager
{
// Implementation details
}Example
// Instantiate MarketPlaceManager
MarketPlaceManager marketPlaceManager = new MarketPlaceManager();Constructor
// Initializes a new instance of the MarketPlaceManager class.
public MarketPlaceManager()
{
// Initialization of class members
getStudioCollections = new GetStudioCollections();
requestListedNFTs = new RequestListedNFTs();
requestNFTListing = new RequestNFTListing();
requestNFTPurchase = new RequestNFTPurchase();
getCommunityListedNFTs = new GetCommunityListedNFTs();
requestSecondaryNFTPurchase = new RequestSecondaryNFTPurchase();
}Properties
Last updated