using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// NetFlowDeviceOfferInfoResponse Data Structure. /// [Serializable] public class NetFlowDeviceOfferInfoResponse : AopObject { /// /// 物联网卡卡状态 /// [XmlElement("card_status")] public string CardStatus { get; set; } /// /// 流量到期时间 /// [XmlElement("expire_time")] public string ExpireTime { get; set; } /// /// 流量充值记录信息 /// [XmlElement("net_flow_offer_info_list")] public NetFlowOfferInfo NetFlowOfferInfoList { get; set; } /// /// 充值金额描述 /// [XmlElement("offer_amount")] public string OfferAmount { get; set; } /// /// 充值商品地址 /// [XmlElement("offer_url")] public string OfferUrl { get; set; } } }