using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOpenMiniAmpeInvokeappUnbindModel Data Structure. /// [Serializable] public class AlipayOpenMiniAmpeInvokeappUnbindModel : AopObject { /// /// 产品ID列表 /// [XmlArray("product_id_list")] [XmlArrayItem("number")] public List ProductIdList { get; set; } /// /// 场景码,申请后平台分配 /// [XmlElement("scene_code")] public string SceneCode { get; set; } } }