using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiMiniappMiniappversionQueryResponse. /// public class OapiMiniappMiniappversionQueryResponse : DingTalkResponse { /// /// 返回的数据实体 /// [XmlElement("data")] public MiniAppVersionDoModelDomain Data { get; set; } /// /// errcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errmsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// MiniAppVersionDoModelDomain Data Structure. /// [Serializable] public class MiniAppVersionDoModelDomain : TopObject { /// /// 应用ID /// [XmlElement("appId")] public string AppId { get; set; } /// /// 审核结束时间 /// [XmlElement("audit_finish_time")] public long AuditFinishTime { get; set; } /// /// 审核提交时间 /// [XmlElement("audit_submit_time")] public long AuditSubmitTime { get; set; } /// /// 构建源 /// [XmlElement("build_source")] public string BuildSource { get; set; } /// /// 客户端类型 /// [XmlElement("client_type")] public long ClientType { get; set; } /// /// 描述 /// [XmlElement("description")] public string Description { get; set; } /// /// 过期版本 /// [XmlElement("exp_version")] public long ExpVersion { get; set; } /// /// 扩展信息 /// [XmlElement("extra_info")] public string ExtraInfo { get; set; } /// /// 更新时间 /// [XmlElement("gmt_create")] public long GmtCreate { get; set; } /// /// 更新时间 /// [XmlElement("gmt_modified")] public long GmtModified { get; set; } /// /// 灰度开始时间 /// [XmlElement("gray_start_time")] public long GrayStartTime { get; set; } /// /// 灰度策略 /// [XmlElement("gray_strategy")] public string GrayStrategy { get; set; } /// /// ID /// [XmlElement("id")] public long Id { get; set; } /// /// 租户ID /// [XmlElement("inst_id")] public long InstId { get; set; } /// /// isDeleted /// [XmlElement("is_deleted")] public long IsDeleted { get; set; } /// /// 下线时间 /// [XmlElement("offline_time")] public long OfflineTime { get; set; } /// /// 包地址 /// [XmlElement("package_url")] public string PackageUrl { get; set; } /// /// 商户ID /// [XmlElement("pid")] public string Pid { get; set; } /// /// 回滚时间 /// [XmlElement("rollback_time")] public long RollbackTime { get; set; } /// /// 上架时间 /// [XmlElement("shelf_time")] public long ShelfTime { get; set; } /// /// 状态 /// [XmlElement("status")] public string Status { get; set; } /// /// 子状态 /// [XmlElement("sub_status")] public string SubStatus { get; set; } /// /// 模板拓展参数 /// [XmlElement("template_extra")] public string TemplateExtra { get; set; } /// /// 版本 /// [XmlElement("version")] public string Version { get; set; } } } }