using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayUserAccountUseridBatchqueryResponse. /// public class AlipayUserAccountUseridBatchqueryResponse : AopResponse { /// /// 用户列表 /// [XmlArray("user_id_list")] [XmlArrayItem("string")] public List UserIdList { get; set; } } }