using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiMiniappAppinfoQueryResponse.
///
public class OapiMiniappAppinfoQueryResponse : DingTalkResponse
{
///
/// 返回的数据实体
///
[XmlElement("data")]
public AppInfoDoModelDomain Data { get; set; }
///
/// errcode
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// errmsg
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// AppInfoDoModelDomain Data Structure.
///
[Serializable]
public class AppInfoDoModelDomain : TopObject
{
///
/// alias
///
[XmlElement("alias")]
public string Alias { get; set; }
///
/// 应用通道
///
[XmlElement("app_channel")]
public long AppChannel { get; set; }
///
/// 应用ID
///
[XmlElement("app_id")]
public string AppId { get; set; }
///
/// 应用key
///
[XmlElement("app_key")]
public string AppKey { get; set; }
///
/// 应用类型
///
[XmlElement("app_type")]
public long AppType { get; set; }
///
/// 自动装载
///
[XmlElement("auto_install")]
public long AutoInstall { get; set; }
///
/// 客户端
///
[XmlElement("client_id")]
public long ClientId { get; set; }
///
/// 描述
///
[XmlElement("desc")]
public string Desc { get; set; }
///
/// 设备ID
///
[XmlElement("dev_id")]
public string DevId { get; set; }
///
/// 英文名称
///
[XmlElement("english_name")]
public string EnglishName { get; set; }
///
/// 更新时间
///
[XmlElement("gmt_create")]
public long GmtCreate { get; set; }
///
/// 更新时间
///
[XmlElement("gmt_modified")]
public long GmtModified { get; set; }
///
/// 图标
///
[XmlElement("icon_url")]
public string IconUrl { get; set; }
///
/// ID
///
[XmlElement("id")]
public long Id { get; set; }
///
/// inheritConfig
///
[XmlElement("inherit_config")]
public string InheritConfig { get; set; }
///
/// 租户ID
///
[XmlElement("inst_id")]
public long InstId { get; set; }
///
/// isDeleted
///
[XmlElement("is_deleted")]
public long IsDeleted { get; set; }
///
/// lastDiscards
///
[XmlElement("last_discards")]
public string LastDiscards { get; set; }
///
/// 主URL
///
[XmlElement("main_url")]
public string MainUrl { get; set; }
///
/// 名称
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 来源
///
[XmlElement("origin")]
public long Origin { get; set; }
///
/// 预装载
///
[XmlElement("preset")]
public long Preset { get; set; }
///
/// 大小
///
[XmlElement("size")]
public long Size { get; set; }
///
/// 标语
///
[XmlElement("slogan")]
public string Slogan { get; set; }
///
/// 状态
///
[XmlElement("status")]
public long Status { get; set; }
///
/// 子类型
///
[XmlElement("sub_type")]
public long SubType { get; set; }
///
/// vhost
///
[XmlElement("v_host")]
public string VHost { get; set; }
}
}
}