using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// TbapiQueryAmountResponse Data Structure. /// [Serializable] public class TbapiQueryAmountResponse : AopObject { /// /// 指定产品码额度 /// [XmlElement("amt_map")] public string AmtMap { get; set; } /// /// 可用产品组额度 /// [XmlElement("available_group_amt")] public string AvailableGroupAmt { get; set; } } }