using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayMarketingDataDashboardCancelModel Data Structure. /// [Serializable] public class AlipayMarketingDataDashboardCancelModel : AopObject { /// /// 批量取消仪表盘授权 /// [XmlArray("dashboard_ids")] [XmlArrayItem("string")] public List DashboardIds { get; set; } } }