using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AnttechBlockchainTwcPreauthinfoQueryModel Data Structure. /// [Serializable] public class AnttechBlockchainTwcPreauthinfoQueryModel : AopObject { /// /// 预授权码 /// [XmlElement("authno")] public string Authno { get; set; } /// /// 付款者支付宝账户 /// [XmlElement("buyeruid")] public string Buyeruid { get; set; } /// /// 收款者支付宝账号uid /// [XmlElement("selleruid")] public string Selleruid { get; set; } /// /// 预授权金额 /// [XmlElement("totalamount")] public string Totalamount { get; set; } } }