using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOverseasTravelBenefitChangeNotifyModel Data Structure. /// [Serializable] public class AlipayOverseasTravelBenefitChangeNotifyModel : AopObject { /// /// 收单站在gn的id /// [XmlElement("acquirer_id")] public string AcquirerId { get; set; } /// /// 权益详情列表 /// [XmlArray("benefit_detail_info_list")] [XmlArrayItem("benefit_detail_info")] public List BenefitDetailInfoList { get; set; } /// /// 发卡站在gn的id /// [XmlElement("psp_id")] public string PspId { get; set; } } }