using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoCplifeResidentinfoDeleteModel Data Structure. /// [Serializable] public class AlipayEcoCplifeResidentinfoDeleteModel : AopObject { /// /// 待删除的住户所在的小区ID(支付宝平台统一小区ID标识) /// [JsonProperty("community_id")] public string CommunityId { get; set; } /// /// 待删除住户在物业系统中的唯一标示,一次至多传入200条用户ID /// [JsonProperty("out_resident_id_set")] public List OutResidentIdSet { get; set; } } }