using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AnttechDataServiceBlockchainTransactionQueryModel Data Structure. /// [Serializable] public class AnttechDataServiceBlockchainTransactionQueryModel : AopObject { /// /// 区块链ID /// [XmlElement("block_chain_id")] public string BlockChainId { get; set; } /// /// 区块链块唯一hash /// [XmlElement("block_hash")] public string BlockHash { get; set; } /// /// 交易结束时间戳 /// [XmlElement("end_timestamp")] public long EndTimestamp { get; set; } /// /// 交易来源账户 /// [XmlElement("from_account")] public string FromAccount { get; set; } /// /// 分页页号 /// [XmlElement("page_no")] public long PageNo { get; set; } /// /// 每页大小 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 交易开始时间戳 /// [XmlElement("start_timestamp")] public long StartTimestamp { get; set; } /// /// 交易目标账户 /// [XmlElement("to_account")] public string ToAccount { get; set; } /// /// 交易唯一hash /// [XmlElement("transaction_hash")] public string TransactionHash { get; set; } /// /// 交易类型 /// [XmlElement("transaction_type")] public long TransactionType { get; set; } } }