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