using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayOpenPublicFollowBatchqueryResponse.
///
public class AlipayOpenPublicFollowBatchqueryResponse : AopResponse
{
///
/// 本次调用获取的userId个数,最大值为10000
///
[JsonProperty("count")]
public string Count { get; set; }
///
/// 查询分组的userid
///
[JsonProperty("next_user_id")]
public string NextUserId { get; set; }
///
/// 用户的userId列表
///
[JsonProperty("user_id_list")]
public List UserIdList { get; set; }
}
}