using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayEcoCplifeResidentinfoUploadModel Data Structure.
///
[Serializable]
public class AlipayEcoCplifeResidentinfoUploadModel : AopObject
{
///
/// 请求流水号,由商户自定义,在商户系统内唯一标示一次业务请求。
///
[JsonProperty("batch_id")]
public string BatchId { get; set; }
///
/// 业主所在物业小区ID(支付宝平台唯一小区ID标示)
///
[JsonProperty("community_id")]
public string CommunityId { get; set; }
///
/// 请求上传的住户信息列表,单次至多上传200条住户信息.
///
[JsonProperty("resident_info")]
public List ResidentInfo { get; set; }
}
}