using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiMicroappRuleGetUserTotalResponse.
///
public class OapiMicroappRuleGetUserTotalResponse : DingTalkResponse
{
///
/// 返回码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 对返回码的文本描述内容
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 返回入参中各个规则id对应的用户数
///
[XmlArray("result")]
[XmlArrayItem("result")]
public List Result { get; set; }
///
/// ResultDomain Data Structure.
///
[Serializable]
public class ResultDomain : TopObject
{
///
/// ruleId
///
[XmlElement("ruleId")]
public long RuleId { get; set; }
///
/// userTotal
///
[XmlElement("userTotal")]
public long UserTotal { get; set; }
}
}
}