using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiUserListidResponse.
///
public class OapiUserListidResponse : DingTalkResponse
{
///
/// 错误码。0代表成功。
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息。
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 返回结果
///
[XmlElement("result")]
public ListUserByDeptResponseDomain Result { get; set; }
///
/// ListUserByDeptResponseDomain Data Structure.
///
[Serializable]
public class ListUserByDeptResponseDomain : TopObject
{
///
/// 用户id列表
///
[XmlArray("userid_list")]
[XmlArrayItem("string")]
public List UseridList { get; set; }
}
}
}