using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoCplifeNoticeDeleteModel Data Structure. /// [Serializable] public class AlipayEcoCplifeNoticeDeleteModel : AopObject { /// /// 待删除通知的支付宝小区ID,如果为空,则在所有小区下线该通知. /// [XmlArray("community_id_set")] [XmlArrayItem("string")] public List CommunityIdSet { get; set; } /// /// 待删除的通知ID,(见alipay.eco.cplife.notice.publish接口返回参数列表.) /// [XmlElement("notice_id")] public string NoticeId { get; set; } } }