using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiMicroappRuleGetRuleListResponse.
///
public class OapiMicroappRuleGetRuleListResponse : DingTalkResponse
{
///
/// 返回码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 对返回码的文本描述内容
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 用户绑定的规则id列表
///
[XmlArray("ruleIdList")]
[XmlArrayItem("number")]
public List RuleIdList { get; set; }
}
}