using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenInviteOrderQueryResponse. /// public class AlipayOpenInviteOrderQueryResponse : AopResponse { /// /// 商家支付宝账号对应的ID,2088开头 /// [XmlElement("merchant_pid")] public string MerchantPid { get; set; } /// /// 产品签约状态对象 /// [XmlArray("sign_status_list")] [XmlArrayItem("product_invite_status_info")] public List SignStatusList { get; set; } } }