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