using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiMiniappDeploywindowQueryResponse. /// public class OapiMiniappDeploywindowQueryResponse : DingTalkResponse { /// /// 返回的数据实体 /// [XmlElement("data")] public DeployWindowDoModelDomain Data { get; set; } /// /// errcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errmsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// DeployWindowDoModelDomain Data Structure. /// [Serializable] public class DeployWindowDoModelDomain : TopObject { /// /// 安卓最大版本 /// [XmlElement("android_client_max")] public string AndroidClientMax { get; set; } /// /// 安卓最小版本 /// [XmlElement("android_client_min")] public string AndroidClientMin { get; set; } /// /// 安卓实例ID /// [XmlElement("android_instance_id")] public long AndroidInstanceId { get; set; } /// /// 应用ID /// [XmlElement("app_id")] public string AppId { get; set; } /// /// 客户端 /// [XmlElement("client_id")] public long ClientId { get; set; } /// /// 包ID /// [XmlElement("deploy_package_id")] public long DeployPackageId { get; set; } /// /// 更新时间 /// [XmlElement("gmt_create")] public long GmtCreate { get; set; } /// /// 更新时间 /// [XmlElement("gmt_modified")] public long GmtModified { get; set; } /// /// ID /// [XmlElement("id")] public long Id { get; set; } /// /// 租户ID /// [XmlElement("inst_id")] public long InstId { get; set; } /// /// IOS客户端最大版本 /// [XmlElement("ios_client_max")] public string IosClientMax { get; set; } /// /// IOS客户端最小版本 /// [XmlElement("ios_client_min")] public string IosClientMin { get; set; } /// /// IOS实例ID /// [XmlElement("ios_instance_id")] public long IosInstanceId { get; set; } /// /// 名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 安卓平台 /// [XmlElement("platform_android")] public long PlatformAndroid { get; set; } /// /// ios平台 /// [XmlElement("platform_ios")] public long PlatformIos { get; set; } /// /// 版本 /// [XmlElement("version")] public string Version { get; set; } } } }