You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.2 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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