using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayEcoCplifeCommunityBatchqueryResponse.
///
public class AlipayEcoCplifeCommunityBatchqueryResponse : AopResponse
{
///
/// 若查询到符合条件的小区,返回物业小区摘要信息列表
///
[JsonProperty("community_list")]
public List CommunityList { get; set; }
///
/// 当前页码
///
[JsonProperty("current_page_num")]
public long CurrentPageNum { get; set; }
///
/// 开发者帮助物业创建成功并符合查询条件的小区总数。 若不传入app_auth_token参数,则返回开发者代创建成功的所有小区总数。 若传入app_auth_token参数,则返回对应开发者帮助该授权物业公司创建成功的小区总数。
///
[JsonProperty("total_community_count")]
public long TotalCommunityCount { get; set; }
}
}