using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BlockChainTransactionApiDO Data Structure.
///
[Serializable]
public class BlockChainTransactionApiDO : AopObject
{
///
/// 区块链ID
///
[XmlElement("block_chain_id")]
public string BlockChainId { get; set; }
///
/// 块hash
///
[XmlElement("block_hash")]
public string BlockHash { get; set; }
///
/// 块高
///
[XmlElement("block_height")]
public long BlockHeight { get; set; }
///
/// 智能科技统一客户ID
///
[XmlElement("cid")]
public string Cid { get; set; }
///
/// 起始账户
///
[XmlElement("from_account")]
public string FromAccount { get; set; }
///
/// gas消耗
///
[XmlElement("gas_used")]
public long GasUsed { get; set; }
///
/// 目标账户
///
[XmlElement("to_account")]
public string ToAccount { get; set; }
///
/// 交易hash
///
[XmlElement("transaction_hash")]
public string TransactionHash { get; set; }
///
/// 交易时间戳
///
[XmlElement("transaction_timestamp")]
public long TransactionTimestamp { get; set; }
///
/// 交易类型
///
[XmlElement("transaction_type")]
public long TransactionType { get; set; }
///
/// 交易金额
///
[XmlElement("value")]
public long Value { get; set; }
}
}