using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiServiceGetUnactiveCorpResponse.
///
public class OapiServiceGetUnactiveCorpResponse : DingTalkResponse
{
///
/// app_id
///
[XmlElement("app_id")]
public long AppId { get; set; }
///
/// corp_list
///
[XmlArray("corp_list")]
[XmlArrayItem("string")]
public List CorpList { get; set; }
///
/// errcode
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// errmsg
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// has_more
///
[XmlElement("has_more")]
public bool HasMore { get; set; }
}
}