using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// WdkAiotFirmwareVersionCheckResponse. /// public class WdkAiotFirmwareVersionCheckResponse : TopResponse { /// /// result /// [XmlElement("result")] public NAppVersionMtopDoDomain Result { get; set; } /// /// NAppVersionMtopDoDomain Data Structure. /// [Serializable] public class NAppVersionMtopDoDomain : TopObject { /// /// appid /// [XmlElement("app_id")] public long AppId { get; set; } /// /// app名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 是否自动安装 /// [XmlElement("auto_install")] public bool AutoInstall { get; set; } /// /// 下载链接 /// [XmlElement("download_url")] public string DownloadUrl { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 图标地址 /// [XmlElement("icon_url")] public string IconUrl { get; set; } /// /// id /// [XmlElement("id")] public long Id { get; set; } /// /// 安装类型 /// [XmlElement("install_type")] public long InstallType { get; set; } /// /// 包校验码 /// [XmlElement("md5")] public string Md5 { get; set; } /// /// 包名 /// [XmlElement("package_name")] public string PackageName { get; set; } /// /// 设置 /// [XmlElement("settings")] public string Settings { get; set; } /// /// 签名 /// [XmlElement("sign")] public string Sign { get; set; } /// /// 包大小 /// [XmlElement("size")] public long Size { get; set; } /// /// 描述 /// [XmlElement("update_desc")] public string UpdateDesc { get; set; } /// /// 版本号 /// [XmlElement("version_code")] public long VersionCode { get; set; } /// /// 版本名 /// [XmlElement("version_name")] public string VersionName { get; set; } } } }