add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.dobbinsoft.fw.support.captcha.v20190722.models;
 
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.tencentcloudapi.common.AbstractModel;
 
import java.util.HashMap;
 
public class UpdateCaptchaAppIdInfoRequest extends AbstractModel {
 
    /**
    * 验证码应用ID
    */
    @SerializedName("CaptchaAppId")
    @Expose
    private Long CaptchaAppId;
 
    /**
    * 应用名
    */
    @SerializedName("AppName")
    @Expose
    private String AppName;
 
    /**
    * 域名限制
    */
    @SerializedName("DomainLimit")
    @Expose
    private String DomainLimit;
 
    /**
    * 场景类型
    */
    @SerializedName("SceneType")
    @Expose
    private Long SceneType;
 
    /**
    * 验证码类型
    */
    @SerializedName("CapType")
    @Expose
    private Long CapType;
 
    /**
    * 风险级别
    */
    @SerializedName("EvilInterceptGrade")
    @Expose
    private Long EvilInterceptGrade;
 
    /**
    * 智能检测
    */
    @SerializedName("SmartVerify")
    @Expose
    private Long SmartVerify;
 
    /**
    * 开启智能引擎
    */
    @SerializedName("SmartEngine")
    @Expose
    private Long SmartEngine;
 
    /**
    * web风格
    */
    @SerializedName("SchemeColor")
    @Expose
    private String SchemeColor;
 
    /**
    * 语言
    */
    @SerializedName("CaptchaLanguage")
    @Expose
    private Long CaptchaLanguage;
 
    /**
    * 告警邮箱
    */
    @SerializedName("MailAlarm")
    @Expose
    private String MailAlarm;
 
    /**
    * 是否全屏
    */
    @SerializedName("TopFullScreen")
    @Expose
    private Long TopFullScreen;
 
    /**
    * 流量限制
    */
    @SerializedName("TrafficThreshold")
    @Expose
    private Long TrafficThreshold;
 
    /**
     * Get 验证码应用ID 
     * @return CaptchaAppId 验证码应用ID
     */
    public Long getCaptchaAppId() {
        return this.CaptchaAppId;
    }
 
    /**
     * Set 验证码应用ID
     * @param CaptchaAppId 验证码应用ID
     */
    public void setCaptchaAppId(Long CaptchaAppId) {
        this.CaptchaAppId = CaptchaAppId;
    }
 
    /**
     * Get 应用名 
     * @return AppName 应用名
     */
    public String getAppName() {
        return this.AppName;
    }
 
    /**
     * Set 应用名
     * @param AppName 应用名
     */
    public void setAppName(String AppName) {
        this.AppName = AppName;
    }
 
    /**
     * Get 域名限制 
     * @return DomainLimit 域名限制
     */
    public String getDomainLimit() {
        return this.DomainLimit;
    }
 
    /**
     * Set 域名限制
     * @param DomainLimit 域名限制
     */
    public void setDomainLimit(String DomainLimit) {
        this.DomainLimit = DomainLimit;
    }
 
    /**
     * Get 场景类型 
     * @return SceneType 场景类型
     */
    public Long getSceneType() {
        return this.SceneType;
    }
 
    /**
     * Set 场景类型
     * @param SceneType 场景类型
     */
    public void setSceneType(Long SceneType) {
        this.SceneType = SceneType;
    }
 
    /**
     * Get 验证码类型 
     * @return CapType 验证码类型
     */
    public Long getCapType() {
        return this.CapType;
    }
 
    /**
     * Set 验证码类型
     * @param CapType 验证码类型
     */
    public void setCapType(Long CapType) {
        this.CapType = CapType;
    }
 
    /**
     * Get 风险级别 
     * @return EvilInterceptGrade 风险级别
     */
    public Long getEvilInterceptGrade() {
        return this.EvilInterceptGrade;
    }
 
    /**
     * Set 风险级别
     * @param EvilInterceptGrade 风险级别
     */
    public void setEvilInterceptGrade(Long EvilInterceptGrade) {
        this.EvilInterceptGrade = EvilInterceptGrade;
    }
 
    /**
     * Get 智能检测 
     * @return SmartVerify 智能检测
     */
    public Long getSmartVerify() {
        return this.SmartVerify;
    }
 
    /**
     * Set 智能检测
     * @param SmartVerify 智能检测
     */
    public void setSmartVerify(Long SmartVerify) {
        this.SmartVerify = SmartVerify;
    }
 
    /**
     * Get 开启智能引擎 
     * @return SmartEngine 开启智能引擎
     */
    public Long getSmartEngine() {
        return this.SmartEngine;
    }
 
    /**
     * Set 开启智能引擎
     * @param SmartEngine 开启智能引擎
     */
    public void setSmartEngine(Long SmartEngine) {
        this.SmartEngine = SmartEngine;
    }
 
    /**
     * Get web风格 
     * @return SchemeColor web风格
     */
    public String getSchemeColor() {
        return this.SchemeColor;
    }
 
    /**
     * Set web风格
     * @param SchemeColor web风格
     */
    public void setSchemeColor(String SchemeColor) {
        this.SchemeColor = SchemeColor;
    }
 
    /**
     * Get 语言 
     * @return CaptchaLanguage 语言
     */
    public Long getCaptchaLanguage() {
        return this.CaptchaLanguage;
    }
 
    /**
     * Set 语言
     * @param CaptchaLanguage 语言
     */
    public void setCaptchaLanguage(Long CaptchaLanguage) {
        this.CaptchaLanguage = CaptchaLanguage;
    }
 
    /**
     * Get 告警邮箱 
     * @return MailAlarm 告警邮箱
     */
    public String getMailAlarm() {
        return this.MailAlarm;
    }
 
    /**
     * Set 告警邮箱
     * @param MailAlarm 告警邮箱
     */
    public void setMailAlarm(String MailAlarm) {
        this.MailAlarm = MailAlarm;
    }
 
    /**
     * Get 是否全屏 
     * @return TopFullScreen 是否全屏
     */
    public Long getTopFullScreen() {
        return this.TopFullScreen;
    }
 
    /**
     * Set 是否全屏
     * @param TopFullScreen 是否全屏
     */
    public void setTopFullScreen(Long TopFullScreen) {
        this.TopFullScreen = TopFullScreen;
    }
 
    /**
     * Get 流量限制 
     * @return TrafficThreshold 流量限制
     */
    public Long getTrafficThreshold() {
        return this.TrafficThreshold;
    }
 
    /**
     * Set 流量限制
     * @param TrafficThreshold 流量限制
     */
    public void setTrafficThreshold(Long TrafficThreshold) {
        this.TrafficThreshold = TrafficThreshold;
    }
 
    public UpdateCaptchaAppIdInfoRequest() {
    }
 
    /**
     * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
     *       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
     */
    public UpdateCaptchaAppIdInfoRequest(UpdateCaptchaAppIdInfoRequest source) {
        if (source.CaptchaAppId != null) {
            this.CaptchaAppId = new Long(source.CaptchaAppId);
        }
        if (source.AppName != null) {
            this.AppName = new String(source.AppName);
        }
        if (source.DomainLimit != null) {
            this.DomainLimit = new String(source.DomainLimit);
        }
        if (source.SceneType != null) {
            this.SceneType = new Long(source.SceneType);
        }
        if (source.CapType != null) {
            this.CapType = new Long(source.CapType);
        }
        if (source.EvilInterceptGrade != null) {
            this.EvilInterceptGrade = new Long(source.EvilInterceptGrade);
        }
        if (source.SmartVerify != null) {
            this.SmartVerify = new Long(source.SmartVerify);
        }
        if (source.SmartEngine != null) {
            this.SmartEngine = new Long(source.SmartEngine);
        }
        if (source.SchemeColor != null) {
            this.SchemeColor = new String(source.SchemeColor);
        }
        if (source.CaptchaLanguage != null) {
            this.CaptchaLanguage = new Long(source.CaptchaLanguage);
        }
        if (source.MailAlarm != null) {
            this.MailAlarm = new String(source.MailAlarm);
        }
        if (source.TopFullScreen != null) {
            this.TopFullScreen = new Long(source.TopFullScreen);
        }
        if (source.TrafficThreshold != null) {
            this.TrafficThreshold = new Long(source.TrafficThreshold);
        }
    }
 
 
    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap<String, String> map, String prefix) {
        this.setParamSimple(map, prefix + "CaptchaAppId", this.CaptchaAppId);
        this.setParamSimple(map, prefix + "AppName", this.AppName);
        this.setParamSimple(map, prefix + "DomainLimit", this.DomainLimit);
        this.setParamSimple(map, prefix + "SceneType", this.SceneType);
        this.setParamSimple(map, prefix + "CapType", this.CapType);
        this.setParamSimple(map, prefix + "EvilInterceptGrade", this.EvilInterceptGrade);
        this.setParamSimple(map, prefix + "SmartVerify", this.SmartVerify);
        this.setParamSimple(map, prefix + "SmartEngine", this.SmartEngine);
        this.setParamSimple(map, prefix + "SchemeColor", this.SchemeColor);
        this.setParamSimple(map, prefix + "CaptchaLanguage", this.CaptchaLanguage);
        this.setParamSimple(map, prefix + "MailAlarm", this.MailAlarm);
        this.setParamSimple(map, prefix + "TopFullScreen", this.TopFullScreen);
        this.setParamSimple(map, prefix + "TrafficThreshold", this.TrafficThreshold);
 
    }
}