wtt
2024-10-25 e7965a19a7c7cfb8fdb28ed6cc922d523c7d4aeb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiMiniappMiniappversionQueryResponse.
    /// </summary>
    public class OapiMiniappMiniappversionQueryResponse : DingTalkResponse
    {
        /// <summary>
        /// 返回的数据实体
        /// </summary>
        [XmlElement("data")]
        public MiniAppVersionDoModelDomain Data { get; set; }
 
        /// <summary>
        /// errcode
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// errmsg
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
    /// <summary>
/// MiniAppVersionDoModelDomain Data Structure.
/// </summary>
[Serializable]
 
public class MiniAppVersionDoModelDomain : TopObject
{
            /// <summary>
            /// 应用ID
            /// </summary>
            [XmlElement("appId")]
            public string AppId { get; set; }
    
            /// <summary>
            /// 审核结束时间
            /// </summary>
            [XmlElement("audit_finish_time")]
            public long AuditFinishTime { get; set; }
    
            /// <summary>
            /// 审核提交时间
            /// </summary>
            [XmlElement("audit_submit_time")]
            public long AuditSubmitTime { get; set; }
    
            /// <summary>
            /// 构建源
            /// </summary>
            [XmlElement("build_source")]
            public string BuildSource { get; set; }
    
            /// <summary>
            /// 客户端类型
            /// </summary>
            [XmlElement("client_type")]
            public long ClientType { get; set; }
    
            /// <summary>
            /// 描述
            /// </summary>
            [XmlElement("description")]
            public string Description { get; set; }
    
            /// <summary>
            /// 过期版本
            /// </summary>
            [XmlElement("exp_version")]
            public long ExpVersion { get; set; }
    
            /// <summary>
            /// 扩展信息
            /// </summary>
            [XmlElement("extra_info")]
            public string ExtraInfo { get; set; }
    
            /// <summary>
            /// 更新时间
            /// </summary>
            [XmlElement("gmt_create")]
            public long GmtCreate { get; set; }
    
            /// <summary>
            /// 更新时间
            /// </summary>
            [XmlElement("gmt_modified")]
            public long GmtModified { get; set; }
    
            /// <summary>
            /// 灰度开始时间
            /// </summary>
            [XmlElement("gray_start_time")]
            public long GrayStartTime { get; set; }
    
            /// <summary>
            /// 灰度策略
            /// </summary>
            [XmlElement("gray_strategy")]
            public string GrayStrategy { get; set; }
    
            /// <summary>
            /// ID
            /// </summary>
            [XmlElement("id")]
            public long Id { get; set; }
    
            /// <summary>
            /// 租户ID
            /// </summary>
            [XmlElement("inst_id")]
            public long InstId { get; set; }
    
            /// <summary>
            /// isDeleted
            /// </summary>
            [XmlElement("is_deleted")]
            public long IsDeleted { get; set; }
    
            /// <summary>
            /// 下线时间
            /// </summary>
            [XmlElement("offline_time")]
            public long OfflineTime { get; set; }
    
            /// <summary>
            /// 包地址
            /// </summary>
            [XmlElement("package_url")]
            public string PackageUrl { get; set; }
    
            /// <summary>
            /// 商户ID
            /// </summary>
            [XmlElement("pid")]
            public string Pid { get; set; }
    
            /// <summary>
            /// 回滚时间
            /// </summary>
            [XmlElement("rollback_time")]
            public long RollbackTime { get; set; }
    
            /// <summary>
            /// 上架时间
            /// </summary>
            [XmlElement("shelf_time")]
            public long ShelfTime { get; set; }
    
            /// <summary>
            /// 状态
            /// </summary>
            [XmlElement("status")]
            public string Status { get; set; }
    
            /// <summary>
            /// 子状态
            /// </summary>
            [XmlElement("sub_status")]
            public string SubStatus { get; set; }
    
            /// <summary>
            /// 模板拓展参数
            /// </summary>
            [XmlElement("template_extra")]
            public string TemplateExtra { get; set; }
    
            /// <summary>
            /// 版本
            /// </summary>
            [XmlElement("version")]
            public string Version { get; set; }
}
 
    }
}