using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using Newtonsoft.Json;
namespace MoralisUnity.Web3Api.Models
{
[DataContract]
public class Trade
{
///
/// The transaction hash
/// example: 0x057Ec652A4F150f7FF94f089A38008f49a0DF88e
///
[DataMember(Name = "transaction_hash", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "transaction_hash")]
public string TransactionHash { get; set; }
///
/// The transaction index
///
[DataMember(Name = "transaction_index", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "transaction_index")]
public string TransactionIndex { get; set; }
///
/// The token id(s) traded
///
[DataMember(Name = "token_ids", EmitDefaultValue = false)]
[JsonProperty(PropertyName = "token_ids")]
public List