tencentcloud-sdk-domain 1.0.200

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1740 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ module TencentCloud
18
+ module Domain
19
+ module V20180808
20
+ # BatchModifyDomainInfo请求参数结构体
21
+ class BatchModifyDomainInfoRequest < TencentCloud::Common::AbstractModel
22
+ # @param Domains: 批量修改的域名。
23
+ # @type Domains: Array
24
+ # @param TemplateId: 模板ID。
25
+ # @type TemplateId: String
26
+ # @param LockTransfer: true: 开启60天内禁止转移注册商锁定
27
+ # false:关闭60天内禁止转移注册商锁定
28
+ # 默认 true
29
+ # @type LockTransfer: Boolean
30
+
31
+ attr_accessor :Domains, :TemplateId, :LockTransfer
32
+
33
+ def initialize(domains=nil, templateid=nil, locktransfer=nil)
34
+ @Domains = domains
35
+ @TemplateId = templateid
36
+ @LockTransfer = locktransfer
37
+ end
38
+
39
+ def deserialize(params)
40
+ @Domains = params['Domains']
41
+ @TemplateId = params['TemplateId']
42
+ @LockTransfer = params['LockTransfer']
43
+ end
44
+ end
45
+
46
+ # BatchModifyDomainInfo返回参数结构体
47
+ class BatchModifyDomainInfoResponse < TencentCloud::Common::AbstractModel
48
+ # @param LogId: 日志ID
49
+ # @type LogId: Integer
50
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
51
+ # @type RequestId: String
52
+
53
+ attr_accessor :LogId, :RequestId
54
+
55
+ def initialize(logid=nil, requestid=nil)
56
+ @LogId = logid
57
+ @RequestId = requestid
58
+ end
59
+
60
+ def deserialize(params)
61
+ @LogId = params['LogId']
62
+ @RequestId = params['RequestId']
63
+ end
64
+ end
65
+
66
+ # 批量任务状态
67
+ class BatchStatus < TencentCloud::Common::AbstractModel
68
+ # @param LogId: 批量任务id
69
+ # @type LogId: Integer
70
+ # @param Status: 批量任务状态 doing:进行中 success:成功 failed:失败 partial_success:部分成功
71
+ # @type Status: String
72
+ # @param BatchAction: 批量任务类型
73
+ # @type BatchAction: String
74
+
75
+ attr_accessor :LogId, :Status, :BatchAction
76
+
77
+ def initialize(logid=nil, status=nil, batchaction=nil)
78
+ @LogId = logid
79
+ @Status = status
80
+ @BatchAction = batchaction
81
+ end
82
+
83
+ def deserialize(params)
84
+ @LogId = params['LogId']
85
+ @Status = params['Status']
86
+ @BatchAction = params['BatchAction']
87
+ end
88
+ end
89
+
90
+ # 认证资料信息
91
+ class CertificateInfo < TencentCloud::Common::AbstractModel
92
+ # @param CertificateCode: 证件号码。
93
+ # @type CertificateCode: String
94
+ # @param CertificateType: 证件类型。
95
+ # SFZ: 身份证。
96
+ # HZ: 护照。
97
+ # TXZ: 中国港澳居民来往内地通行证。
98
+ # TWSFZ: 中国台湾居民来往大陆通行证。
99
+ # GWSFZ: 外国人永久居留身份证。
100
+ # ORG: 组织机构代码证
101
+ # YYZZ: 工商营业执照。
102
+ # TYDMZ: 统一社会信用代码证书。
103
+ # BDDH: 部队代号
104
+ # JDXKZ: 军队单位对外有偿服务许可证。
105
+ # SYZS: 事业单位法定代表人证书。
106
+ # GWCZDJZ: 外国企业常驻代表机构登记证。
107
+ # STDJZ: 社会团体法定代表人登记证书。
108
+ # ZJDJZ: 宗教活动场所登记证。
109
+ # MBDJZ: 民办非企业单位登记证书。
110
+ # JJDJZ: 基金会法定代表人登记证书。
111
+ # LSXKZ: 律师事务所执业许可证。
112
+ # GWZHDJZ: 外国在华文化中心登记证。
113
+ # GWLYDJZ: 外国政府旅游部门常驻代表机构批准登记证。
114
+ # SFXKZ: 司法鉴定许可证
115
+ # GWJGZJ: 外国机构证件。
116
+ # SHFWJGZ: 社会服务机构登记证书。
117
+ # MBXXXKZ: 民办学校办学许可证。
118
+ # YLJGXKZ: 医疗机构执业许可证。
119
+ # GAJZZ: 中国港澳居住证。
120
+ # TWJZZ: 中国台湾居住证。
121
+ # QTTYDM: 其他-统一社会信用代码证书。
122
+ # GZJGZY: 公证机构执业证。
123
+ # @type CertificateType: String
124
+ # @param ImgUrl: 证件照片地址。
125
+ # @type ImgUrl: String
126
+
127
+ attr_accessor :CertificateCode, :CertificateType, :ImgUrl
128
+
129
+ def initialize(certificatecode=nil, certificatetype=nil, imgurl=nil)
130
+ @CertificateCode = certificatecode
131
+ @CertificateType = certificatetype
132
+ @ImgUrl = imgurl
133
+ end
134
+
135
+ def deserialize(params)
136
+ @CertificateCode = params['CertificateCode']
137
+ @CertificateType = params['CertificateType']
138
+ @ImgUrl = params['ImgUrl']
139
+ end
140
+ end
141
+
142
+ # CheckBatchStatus请求参数结构体
143
+ class CheckBatchStatusRequest < TencentCloud::Common::AbstractModel
144
+ # @param LogIds: 操作日志 ID数组,最多 200 个
145
+ # @type LogIds: Array
146
+
147
+ attr_accessor :LogIds
148
+
149
+ def initialize(logids=nil)
150
+ @LogIds = logids
151
+ end
152
+
153
+ def deserialize(params)
154
+ @LogIds = params['LogIds']
155
+ end
156
+ end
157
+
158
+ # CheckBatchStatus返回参数结构体
159
+ class CheckBatchStatusResponse < TencentCloud::Common::AbstractModel
160
+ # @param StatusSet: 批量任务状态集
161
+ # @type StatusSet: Array
162
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
163
+ # @type RequestId: String
164
+
165
+ attr_accessor :StatusSet, :RequestId
166
+
167
+ def initialize(statusset=nil, requestid=nil)
168
+ @StatusSet = statusset
169
+ @RequestId = requestid
170
+ end
171
+
172
+ def deserialize(params)
173
+ unless params['StatusSet'].nil?
174
+ @StatusSet = []
175
+ params['StatusSet'].each do |i|
176
+ batchstatus_tmp = BatchStatus.new
177
+ batchstatus_tmp.deserialize(i)
178
+ @StatusSet << batchstatus_tmp
179
+ end
180
+ end
181
+ @RequestId = params['RequestId']
182
+ end
183
+ end
184
+
185
+ # CheckDomain请求参数结构体
186
+ class CheckDomainRequest < TencentCloud::Common::AbstractModel
187
+ # @param DomainName: 所查询域名名称
188
+ # @type DomainName: String
189
+ # @param Period: 年限。该参数为空时无法查询溢价词域名
190
+ # @type Period: String
191
+
192
+ attr_accessor :DomainName, :Period
193
+
194
+ def initialize(domainname=nil, period=nil)
195
+ @DomainName = domainname
196
+ @Period = period
197
+ end
198
+
199
+ def deserialize(params)
200
+ @DomainName = params['DomainName']
201
+ @Period = params['Period']
202
+ end
203
+ end
204
+
205
+ # CheckDomain返回参数结构体
206
+ class CheckDomainResponse < TencentCloud::Common::AbstractModel
207
+ # @param DomainName: 所查询域名名称
208
+ # @type DomainName: String
209
+ # @param Available: 是否能够注册
210
+ # @type Available: Boolean
211
+ # @param Reason: 不能注册原因
212
+ # @type Reason: String
213
+ # @param Premium: 是否是溢价词
214
+ # @type Premium: Boolean
215
+ # @param Price: 域名价格
216
+ # @type Price: Integer
217
+ # @param BlackWord: 是否是敏感词
218
+ # @type BlackWord: Boolean
219
+ # @param Describe: 溢价词描述
220
+ # 注意:此字段可能返回 null,表示取不到有效值。
221
+ # @type Describe: String
222
+ # @param FeeRenew: 溢价词的续费价格
223
+ # 注意:此字段可能返回 null,表示取不到有效值。
224
+ # @type FeeRenew: Integer
225
+ # @param RealPrice: 域名真实价格, 溢价词时价格跟年限有关,非溢价词时价格为1年的价格
226
+ # 注意:此字段可能返回 null,表示取不到有效值。
227
+ # @type RealPrice: Integer
228
+ # @param FeeTransfer: 溢价词的转入价格
229
+ # 注意:此字段可能返回 null,表示取不到有效值。
230
+ # @type FeeTransfer: Integer
231
+ # @param FeeRestore: 溢价词的赎回价格
232
+ # @type FeeRestore: Integer
233
+ # @param Period: 检测年限
234
+ # @type Period: Integer
235
+ # @param RecordSupport: 是否支持北京备案 true 支持 false 不支持
236
+ # @type RecordSupport: Boolean
237
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
238
+ # @type RequestId: String
239
+
240
+ attr_accessor :DomainName, :Available, :Reason, :Premium, :Price, :BlackWord, :Describe, :FeeRenew, :RealPrice, :FeeTransfer, :FeeRestore, :Period, :RecordSupport, :RequestId
241
+
242
+ def initialize(domainname=nil, available=nil, reason=nil, premium=nil, price=nil, blackword=nil, describe=nil, feerenew=nil, realprice=nil, feetransfer=nil, feerestore=nil, period=nil, recordsupport=nil, requestid=nil)
243
+ @DomainName = domainname
244
+ @Available = available
245
+ @Reason = reason
246
+ @Premium = premium
247
+ @Price = price
248
+ @BlackWord = blackword
249
+ @Describe = describe
250
+ @FeeRenew = feerenew
251
+ @RealPrice = realprice
252
+ @FeeTransfer = feetransfer
253
+ @FeeRestore = feerestore
254
+ @Period = period
255
+ @RecordSupport = recordsupport
256
+ @RequestId = requestid
257
+ end
258
+
259
+ def deserialize(params)
260
+ @DomainName = params['DomainName']
261
+ @Available = params['Available']
262
+ @Reason = params['Reason']
263
+ @Premium = params['Premium']
264
+ @Price = params['Price']
265
+ @BlackWord = params['BlackWord']
266
+ @Describe = params['Describe']
267
+ @FeeRenew = params['FeeRenew']
268
+ @RealPrice = params['RealPrice']
269
+ @FeeTransfer = params['FeeTransfer']
270
+ @FeeRestore = params['FeeRestore']
271
+ @Period = params['Period']
272
+ @RecordSupport = params['RecordSupport']
273
+ @RequestId = params['RequestId']
274
+ end
275
+ end
276
+
277
+ # 域名联系人信息
278
+ class ContactInfo < TencentCloud::Common::AbstractModel
279
+ # @param OrganizationNameCN: 注册人(中文)
280
+ # @type OrganizationNameCN: String
281
+ # @param OrganizationName: 注册人(英文)
282
+ # @type OrganizationName: String
283
+ # @param RegistrantNameCN: 联系人(中文)
284
+ # @type RegistrantNameCN: String
285
+ # @param RegistrantName: 联系人(英文)
286
+ # @type RegistrantName: String
287
+ # @param ProvinceCN: 省份(中文)
288
+ # @type ProvinceCN: String
289
+ # @param CityCN: 城市(中文)
290
+ # @type CityCN: String
291
+ # @param StreetCN: 街道(中文)
292
+ # @type StreetCN: String
293
+ # @param Street: 街道(英文)
294
+ # @type Street: String
295
+ # @param CountryCN: 国家(中文)
296
+ # @type CountryCN: String
297
+ # @param Telephone: 联系人手机号
298
+ # @type Telephone: String
299
+ # @param Email: 联系人邮箱
300
+ # @type Email: String
301
+ # @param ZipCode: 邮编
302
+ # @type ZipCode: String
303
+ # @param RegistrantType: 用户类型 E:组织, I:个人
304
+ # @type RegistrantType: String
305
+ # @param Province: 省份(英文)。作为入参时可以不填
306
+ # @type Province: String
307
+ # @param City: 城市(英文)。作为入参时可以不填
308
+ # @type City: String
309
+ # @param Country: 国家(英文)。作为入参时可以不填
310
+ # @type Country: String
311
+
312
+ attr_accessor :OrganizationNameCN, :OrganizationName, :RegistrantNameCN, :RegistrantName, :ProvinceCN, :CityCN, :StreetCN, :Street, :CountryCN, :Telephone, :Email, :ZipCode, :RegistrantType, :Province, :City, :Country
313
+
314
+ def initialize(organizationnamecn=nil, organizationname=nil, registrantnamecn=nil, registrantname=nil, provincecn=nil, citycn=nil, streetcn=nil, street=nil, countrycn=nil, telephone=nil, email=nil, zipcode=nil, registranttype=nil, province=nil, city=nil, country=nil)
315
+ @OrganizationNameCN = organizationnamecn
316
+ @OrganizationName = organizationname
317
+ @RegistrantNameCN = registrantnamecn
318
+ @RegistrantName = registrantname
319
+ @ProvinceCN = provincecn
320
+ @CityCN = citycn
321
+ @StreetCN = streetcn
322
+ @Street = street
323
+ @CountryCN = countrycn
324
+ @Telephone = telephone
325
+ @Email = email
326
+ @ZipCode = zipcode
327
+ @RegistrantType = registranttype
328
+ @Province = province
329
+ @City = city
330
+ @Country = country
331
+ end
332
+
333
+ def deserialize(params)
334
+ @OrganizationNameCN = params['OrganizationNameCN']
335
+ @OrganizationName = params['OrganizationName']
336
+ @RegistrantNameCN = params['RegistrantNameCN']
337
+ @RegistrantName = params['RegistrantName']
338
+ @ProvinceCN = params['ProvinceCN']
339
+ @CityCN = params['CityCN']
340
+ @StreetCN = params['StreetCN']
341
+ @Street = params['Street']
342
+ @CountryCN = params['CountryCN']
343
+ @Telephone = params['Telephone']
344
+ @Email = params['Email']
345
+ @ZipCode = params['ZipCode']
346
+ @RegistrantType = params['RegistrantType']
347
+ @Province = params['Province']
348
+ @City = params['City']
349
+ @Country = params['Country']
350
+ end
351
+ end
352
+
353
+ # CreateDomainBatch请求参数结构体
354
+ class CreateDomainBatchRequest < TencentCloud::Common::AbstractModel
355
+ # @param TemplateId: 模板ID。详情请查看:[获取模板列表](https://cloud.tencent.com/document/product/242/48940)
356
+ # @type TemplateId: String
357
+ # @param Period: 购买域名的年限,可选值:[1-10]
358
+ # @type Period: Integer
359
+ # @param Domains: 批量购买的域名,最多为4000个
360
+ # @type Domains: Array
361
+ # @param PayMode: 付费模式 0手动在线付费,1使用余额付费,2使用特惠包
362
+ # @type PayMode: Integer
363
+ # @param AutoRenewFlag: 自动续费开关。有两个可选值:
364
+ # 0 表示关闭,不自动续费(默认值)
365
+ # 1 表示开启,将自动续费
366
+ # @type AutoRenewFlag: Integer
367
+ # @param PackageResourceId: 使用的特惠包ID,PayMode为2时必填
368
+ # @type PackageResourceId: String
369
+
370
+ attr_accessor :TemplateId, :Period, :Domains, :PayMode, :AutoRenewFlag, :PackageResourceId
371
+
372
+ def initialize(templateid=nil, period=nil, domains=nil, paymode=nil, autorenewflag=nil, packageresourceid=nil)
373
+ @TemplateId = templateid
374
+ @Period = period
375
+ @Domains = domains
376
+ @PayMode = paymode
377
+ @AutoRenewFlag = autorenewflag
378
+ @PackageResourceId = packageresourceid
379
+ end
380
+
381
+ def deserialize(params)
382
+ @TemplateId = params['TemplateId']
383
+ @Period = params['Period']
384
+ @Domains = params['Domains']
385
+ @PayMode = params['PayMode']
386
+ @AutoRenewFlag = params['AutoRenewFlag']
387
+ @PackageResourceId = params['PackageResourceId']
388
+ end
389
+ end
390
+
391
+ # CreateDomainBatch返回参数结构体
392
+ class CreateDomainBatchResponse < TencentCloud::Common::AbstractModel
393
+ # @param LogId: 批量日志ID
394
+ # 注意:此字段可能返回 null,表示取不到有效值。
395
+ # @type LogId: Integer
396
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
397
+ # @type RequestId: String
398
+
399
+ attr_accessor :LogId, :RequestId
400
+
401
+ def initialize(logid=nil, requestid=nil)
402
+ @LogId = logid
403
+ @RequestId = requestid
404
+ end
405
+
406
+ def deserialize(params)
407
+ @LogId = params['LogId']
408
+ @RequestId = params['RequestId']
409
+ end
410
+ end
411
+
412
+ # CreatePhoneEmail请求参数结构体
413
+ class CreatePhoneEmailRequest < TencentCloud::Common::AbstractModel
414
+ # @param Code: 手机号或者邮箱
415
+ # @type Code: String
416
+ # @param Type: 1:手机 2:邮箱
417
+ # @type Type: Integer
418
+ # @param VerifyCode: 验证码
419
+ # @type VerifyCode: String
420
+
421
+ attr_accessor :Code, :Type, :VerifyCode
422
+
423
+ def initialize(code=nil, type=nil, verifycode=nil)
424
+ @Code = code
425
+ @Type = type
426
+ @VerifyCode = verifycode
427
+ end
428
+
429
+ def deserialize(params)
430
+ @Code = params['Code']
431
+ @Type = params['Type']
432
+ @VerifyCode = params['VerifyCode']
433
+ end
434
+ end
435
+
436
+ # CreatePhoneEmail返回参数结构体
437
+ class CreatePhoneEmailResponse < TencentCloud::Common::AbstractModel
438
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
439
+ # @type RequestId: String
440
+
441
+ attr_accessor :RequestId
442
+
443
+ def initialize(requestid=nil)
444
+ @RequestId = requestid
445
+ end
446
+
447
+ def deserialize(params)
448
+ @RequestId = params['RequestId']
449
+ end
450
+ end
451
+
452
+ # CreateTemplate请求参数结构体
453
+ class CreateTemplateRequest < TencentCloud::Common::AbstractModel
454
+ # @param ContactInfo: 联系人信息
455
+ # @type ContactInfo: :class:`Tencentcloud::Domain.v20180808.models.ContactInfo`
456
+ # @param CertificateInfo: 证件信息
457
+ # @type CertificateInfo: :class:`Tencentcloud::Domain.v20180808.models.CertificateInfo`
458
+
459
+ attr_accessor :ContactInfo, :CertificateInfo
460
+
461
+ def initialize(contactinfo=nil, certificateinfo=nil)
462
+ @ContactInfo = contactinfo
463
+ @CertificateInfo = certificateinfo
464
+ end
465
+
466
+ def deserialize(params)
467
+ unless params['ContactInfo'].nil?
468
+ @ContactInfo = ContactInfo.new
469
+ @ContactInfo.deserialize(params['ContactInfo'])
470
+ end
471
+ unless params['CertificateInfo'].nil?
472
+ @CertificateInfo = CertificateInfo.new
473
+ @CertificateInfo.deserialize(params['CertificateInfo'])
474
+ end
475
+ end
476
+ end
477
+
478
+ # CreateTemplate返回参数结构体
479
+ class CreateTemplateResponse < TencentCloud::Common::AbstractModel
480
+ # @param Template: 模板信息
481
+ # @type Template: :class:`Tencentcloud::Domain.v20180808.models.TemplateInfo`
482
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
483
+ # @type RequestId: String
484
+
485
+ attr_accessor :Template, :RequestId
486
+
487
+ def initialize(template=nil, requestid=nil)
488
+ @Template = template
489
+ @RequestId = requestid
490
+ end
491
+
492
+ def deserialize(params)
493
+ unless params['Template'].nil?
494
+ @Template = TemplateInfo.new
495
+ @Template.deserialize(params['Template'])
496
+ end
497
+ @RequestId = params['RequestId']
498
+ end
499
+ end
500
+
501
+ # DeletePhoneEmail请求参数结构体
502
+ class DeletePhoneEmailRequest < TencentCloud::Common::AbstractModel
503
+ # @param Code: 手机或者邮箱
504
+ # @type Code: String
505
+ # @param Type: 1:手机 2:邮箱
506
+ # @type Type: Integer
507
+
508
+ attr_accessor :Code, :Type
509
+
510
+ def initialize(code=nil, type=nil)
511
+ @Code = code
512
+ @Type = type
513
+ end
514
+
515
+ def deserialize(params)
516
+ @Code = params['Code']
517
+ @Type = params['Type']
518
+ end
519
+ end
520
+
521
+ # DeletePhoneEmail返回参数结构体
522
+ class DeletePhoneEmailResponse < TencentCloud::Common::AbstractModel
523
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
524
+ # @type RequestId: String
525
+
526
+ attr_accessor :RequestId
527
+
528
+ def initialize(requestid=nil)
529
+ @RequestId = requestid
530
+ end
531
+
532
+ def deserialize(params)
533
+ @RequestId = params['RequestId']
534
+ end
535
+ end
536
+
537
+ # DeleteTemplate请求参数结构体
538
+ class DeleteTemplateRequest < TencentCloud::Common::AbstractModel
539
+ # @param TemplateId: 模板ID
540
+ # @type TemplateId: String
541
+
542
+ attr_accessor :TemplateId
543
+
544
+ def initialize(templateid=nil)
545
+ @TemplateId = templateid
546
+ end
547
+
548
+ def deserialize(params)
549
+ @TemplateId = params['TemplateId']
550
+ end
551
+ end
552
+
553
+ # DeleteTemplate返回参数结构体
554
+ class DeleteTemplateResponse < TencentCloud::Common::AbstractModel
555
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
556
+ # @type RequestId: String
557
+
558
+ attr_accessor :RequestId
559
+
560
+ def initialize(requestid=nil)
561
+ @RequestId = requestid
562
+ end
563
+
564
+ def deserialize(params)
565
+ @RequestId = params['RequestId']
566
+ end
567
+ end
568
+
569
+ # DescribeBatchOperationLogDetails请求参数结构体
570
+ class DescribeBatchOperationLogDetailsRequest < TencentCloud::Common::AbstractModel
571
+ # @param LogId: 日志ID。
572
+ # @type LogId: Integer
573
+ # @param Offset: 偏移量,默认为0。
574
+ # @type Offset: Integer
575
+ # @param Limit: 返回数量,默认为20,最大值为200。
576
+ # @type Limit: Integer
577
+
578
+ attr_accessor :LogId, :Offset, :Limit
579
+
580
+ def initialize(logid=nil, offset=nil, limit=nil)
581
+ @LogId = logid
582
+ @Offset = offset
583
+ @Limit = limit
584
+ end
585
+
586
+ def deserialize(params)
587
+ @LogId = params['LogId']
588
+ @Offset = params['Offset']
589
+ @Limit = params['Limit']
590
+ end
591
+ end
592
+
593
+ # DescribeBatchOperationLogDetails返回参数结构体
594
+ class DescribeBatchOperationLogDetailsResponse < TencentCloud::Common::AbstractModel
595
+ # @param TotalCount: 总数量。
596
+ # @type TotalCount: Integer
597
+ # @param DomainBatchDetailSet: 日志详情列表。
598
+ # 注意:此字段可能返回 null,表示取不到有效值。
599
+ # @type DomainBatchDetailSet: Array
600
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
601
+ # @type RequestId: String
602
+
603
+ attr_accessor :TotalCount, :DomainBatchDetailSet, :RequestId
604
+
605
+ def initialize(totalcount=nil, domainbatchdetailset=nil, requestid=nil)
606
+ @TotalCount = totalcount
607
+ @DomainBatchDetailSet = domainbatchdetailset
608
+ @RequestId = requestid
609
+ end
610
+
611
+ def deserialize(params)
612
+ @TotalCount = params['TotalCount']
613
+ unless params['DomainBatchDetailSet'].nil?
614
+ @DomainBatchDetailSet = []
615
+ params['DomainBatchDetailSet'].each do |i|
616
+ domainbatchdetailset_tmp = DomainBatchDetailSet.new
617
+ domainbatchdetailset_tmp.deserialize(i)
618
+ @DomainBatchDetailSet << domainbatchdetailset_tmp
619
+ end
620
+ end
621
+ @RequestId = params['RequestId']
622
+ end
623
+ end
624
+
625
+ # DescribeBatchOperationLogs请求参数结构体
626
+ class DescribeBatchOperationLogsRequest < TencentCloud::Common::AbstractModel
627
+ # @param Offset: 偏移量,默认为0。
628
+ # @type Offset: Integer
629
+ # @param Limit: 返回数量,默认为20,最大值为200。
630
+ # @type Limit: Integer
631
+
632
+ attr_accessor :Offset, :Limit
633
+
634
+ def initialize(offset=nil, limit=nil)
635
+ @Offset = offset
636
+ @Limit = limit
637
+ end
638
+
639
+ def deserialize(params)
640
+ @Offset = params['Offset']
641
+ @Limit = params['Limit']
642
+ end
643
+ end
644
+
645
+ # DescribeBatchOperationLogs返回参数结构体
646
+ class DescribeBatchOperationLogsResponse < TencentCloud::Common::AbstractModel
647
+ # @param TotalCount: 总数量
648
+ # @type TotalCount: Integer
649
+ # @param DomainBatchLogSet: 日志列表
650
+ # 注意:此字段可能返回 null,表示取不到有效值。
651
+ # @type DomainBatchLogSet: Array
652
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
653
+ # @type RequestId: String
654
+
655
+ attr_accessor :TotalCount, :DomainBatchLogSet, :RequestId
656
+
657
+ def initialize(totalcount=nil, domainbatchlogset=nil, requestid=nil)
658
+ @TotalCount = totalcount
659
+ @DomainBatchLogSet = domainbatchlogset
660
+ @RequestId = requestid
661
+ end
662
+
663
+ def deserialize(params)
664
+ @TotalCount = params['TotalCount']
665
+ unless params['DomainBatchLogSet'].nil?
666
+ @DomainBatchLogSet = []
667
+ params['DomainBatchLogSet'].each do |i|
668
+ domainbatchlogset_tmp = DomainBatchLogSet.new
669
+ domainbatchlogset_tmp.deserialize(i)
670
+ @DomainBatchLogSet << domainbatchlogset_tmp
671
+ end
672
+ end
673
+ @RequestId = params['RequestId']
674
+ end
675
+ end
676
+
677
+ # DescribeDomainBaseInfo请求参数结构体
678
+ class DescribeDomainBaseInfoRequest < TencentCloud::Common::AbstractModel
679
+ # @param Domain: 域名
680
+ # @type Domain: String
681
+
682
+ attr_accessor :Domain
683
+
684
+ def initialize(domain=nil)
685
+ @Domain = domain
686
+ end
687
+
688
+ def deserialize(params)
689
+ @Domain = params['Domain']
690
+ end
691
+ end
692
+
693
+ # DescribeDomainBaseInfo返回参数结构体
694
+ class DescribeDomainBaseInfoResponse < TencentCloud::Common::AbstractModel
695
+ # @param DomainInfo: 域名信息
696
+ # @type DomainInfo: :class:`Tencentcloud::Domain.v20180808.models.DomainBaseInfo`
697
+ # @param Uin: 用户Uin
698
+ # 注意:此字段可能返回 null,表示取不到有效值。
699
+ # @type Uin: String
700
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
701
+ # @type RequestId: String
702
+
703
+ attr_accessor :DomainInfo, :Uin, :RequestId
704
+
705
+ def initialize(domaininfo=nil, uin=nil, requestid=nil)
706
+ @DomainInfo = domaininfo
707
+ @Uin = uin
708
+ @RequestId = requestid
709
+ end
710
+
711
+ def deserialize(params)
712
+ unless params['DomainInfo'].nil?
713
+ @DomainInfo = DomainBaseInfo.new
714
+ @DomainInfo.deserialize(params['DomainInfo'])
715
+ end
716
+ @Uin = params['Uin']
717
+ @RequestId = params['RequestId']
718
+ end
719
+ end
720
+
721
+ # DescribeDomainNameList请求参数结构体
722
+ class DescribeDomainNameListRequest < TencentCloud::Common::AbstractModel
723
+ # @param Offset: 偏移量,默认为0
724
+ # @type Offset: Integer
725
+ # @param Limit: 返回数量,默认为20,取值范围[1,100]
726
+ # @type Limit: Integer
727
+
728
+ attr_accessor :Offset, :Limit
729
+
730
+ def initialize(offset=nil, limit=nil)
731
+ @Offset = offset
732
+ @Limit = limit
733
+ end
734
+
735
+ def deserialize(params)
736
+ @Offset = params['Offset']
737
+ @Limit = params['Limit']
738
+ end
739
+ end
740
+
741
+ # DescribeDomainNameList返回参数结构体
742
+ class DescribeDomainNameListResponse < TencentCloud::Common::AbstractModel
743
+ # @param DomainSet: 域名信息集合
744
+ # 注意:此字段可能返回 null,表示取不到有效值。
745
+ # @type DomainSet: Array
746
+ # @param TotalCount: 域名总数量
747
+ # @type TotalCount: Integer
748
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
749
+ # @type RequestId: String
750
+
751
+ attr_accessor :DomainSet, :TotalCount, :RequestId
752
+
753
+ def initialize(domainset=nil, totalcount=nil, requestid=nil)
754
+ @DomainSet = domainset
755
+ @TotalCount = totalcount
756
+ @RequestId = requestid
757
+ end
758
+
759
+ def deserialize(params)
760
+ unless params['DomainSet'].nil?
761
+ @DomainSet = []
762
+ params['DomainSet'].each do |i|
763
+ domainlist_tmp = DomainList.new
764
+ domainlist_tmp.deserialize(i)
765
+ @DomainSet << domainlist_tmp
766
+ end
767
+ end
768
+ @TotalCount = params['TotalCount']
769
+ @RequestId = params['RequestId']
770
+ end
771
+ end
772
+
773
+ # DescribeDomainPriceList请求参数结构体
774
+ class DescribeDomainPriceListRequest < TencentCloud::Common::AbstractModel
775
+ # @param TldList: 查询价格的后缀列表。默认则为全部后缀
776
+ # @type TldList: Array
777
+ # @param Year: 查询购买的年份,默认会列出所有年份的价格
778
+ # @type Year: Array
779
+ # @param Operation: 域名的购买类型:new 新购,renew 续费,redem 赎回,tran 转入
780
+ # @type Operation: Array
781
+
782
+ attr_accessor :TldList, :Year, :Operation
783
+
784
+ def initialize(tldlist=nil, year=nil, operation=nil)
785
+ @TldList = tldlist
786
+ @Year = year
787
+ @Operation = operation
788
+ end
789
+
790
+ def deserialize(params)
791
+ @TldList = params['TldList']
792
+ @Year = params['Year']
793
+ @Operation = params['Operation']
794
+ end
795
+ end
796
+
797
+ # DescribeDomainPriceList返回参数结构体
798
+ class DescribeDomainPriceListResponse < TencentCloud::Common::AbstractModel
799
+ # @param PriceList: 域名价格列表
800
+ # @type PriceList: Array
801
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
802
+ # @type RequestId: String
803
+
804
+ attr_accessor :PriceList, :RequestId
805
+
806
+ def initialize(pricelist=nil, requestid=nil)
807
+ @PriceList = pricelist
808
+ @RequestId = requestid
809
+ end
810
+
811
+ def deserialize(params)
812
+ unless params['PriceList'].nil?
813
+ @PriceList = []
814
+ params['PriceList'].each do |i|
815
+ priceinfo_tmp = PriceInfo.new
816
+ priceinfo_tmp.deserialize(i)
817
+ @PriceList << priceinfo_tmp
818
+ end
819
+ end
820
+ @RequestId = params['RequestId']
821
+ end
822
+ end
823
+
824
+ # DescribePhoneEmailList请求参数结构体
825
+ class DescribePhoneEmailListRequest < TencentCloud::Common::AbstractModel
826
+ # @param Type: 0:所有类型 1:手机 2:邮箱,默认0
827
+ # @type Type: Integer
828
+ # @param Offset: 偏移量,默认为0
829
+ # @type Offset: Integer
830
+ # @param Limit: 返回数量,默认为20,取值范围[1,200]
831
+ # @type Limit: Integer
832
+ # @param Code: 手机或者邮箱精确搜索
833
+ # @type Code: String
834
+
835
+ attr_accessor :Type, :Offset, :Limit, :Code
836
+
837
+ def initialize(type=nil, offset=nil, limit=nil, code=nil)
838
+ @Type = type
839
+ @Offset = offset
840
+ @Limit = limit
841
+ @Code = code
842
+ end
843
+
844
+ def deserialize(params)
845
+ @Type = params['Type']
846
+ @Offset = params['Offset']
847
+ @Limit = params['Limit']
848
+ @Code = params['Code']
849
+ end
850
+ end
851
+
852
+ # DescribePhoneEmailList返回参数结构体
853
+ class DescribePhoneEmailListResponse < TencentCloud::Common::AbstractModel
854
+ # @param PhoneEmailList: 手机或者邮箱列表
855
+ # @type PhoneEmailList: Array
856
+ # @param TotalCount: 总数量。
857
+ # @type TotalCount: Integer
858
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
859
+ # @type RequestId: String
860
+
861
+ attr_accessor :PhoneEmailList, :TotalCount, :RequestId
862
+
863
+ def initialize(phoneemaillist=nil, totalcount=nil, requestid=nil)
864
+ @PhoneEmailList = phoneemaillist
865
+ @TotalCount = totalcount
866
+ @RequestId = requestid
867
+ end
868
+
869
+ def deserialize(params)
870
+ unless params['PhoneEmailList'].nil?
871
+ @PhoneEmailList = []
872
+ params['PhoneEmailList'].each do |i|
873
+ phoneemaildata_tmp = PhoneEmailData.new
874
+ phoneemaildata_tmp.deserialize(i)
875
+ @PhoneEmailList << phoneemaildata_tmp
876
+ end
877
+ end
878
+ @TotalCount = params['TotalCount']
879
+ @RequestId = params['RequestId']
880
+ end
881
+ end
882
+
883
+ # DescribeTemplateList请求参数结构体
884
+ class DescribeTemplateListRequest < TencentCloud::Common::AbstractModel
885
+ # @param Offset: 偏移量,默认为0。
886
+ # @type Offset: Integer
887
+ # @param Limit: 返回数量,默认为20,最大值为100。
888
+ # @type Limit: Integer
889
+ # @param Type: 用户注册类型,默认:all , 个人:I ,企业: E
890
+ # @type Type: String
891
+ # @param Status: 认证状态:未实名认证:NotUpload, 实名审核中:InAudit,已实名认证:Approved,实名审核失败:Reject
892
+ # @type Status: String
893
+ # @param Keyword: 域名所有者筛选
894
+ # @type Keyword: String
895
+
896
+ attr_accessor :Offset, :Limit, :Type, :Status, :Keyword
897
+
898
+ def initialize(offset=nil, limit=nil, type=nil, status=nil, keyword=nil)
899
+ @Offset = offset
900
+ @Limit = limit
901
+ @Type = type
902
+ @Status = status
903
+ @Keyword = keyword
904
+ end
905
+
906
+ def deserialize(params)
907
+ @Offset = params['Offset']
908
+ @Limit = params['Limit']
909
+ @Type = params['Type']
910
+ @Status = params['Status']
911
+ @Keyword = params['Keyword']
912
+ end
913
+ end
914
+
915
+ # DescribeTemplateList返回参数结构体
916
+ class DescribeTemplateListResponse < TencentCloud::Common::AbstractModel
917
+ # @param TotalCount: 模板数量。
918
+ # @type TotalCount: Integer
919
+ # @param TemplateSet: 模板详细信息列表。
920
+ # @type TemplateSet: Array
921
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
922
+ # @type RequestId: String
923
+
924
+ attr_accessor :TotalCount, :TemplateSet, :RequestId
925
+
926
+ def initialize(totalcount=nil, templateset=nil, requestid=nil)
927
+ @TotalCount = totalcount
928
+ @TemplateSet = templateset
929
+ @RequestId = requestid
930
+ end
931
+
932
+ def deserialize(params)
933
+ @TotalCount = params['TotalCount']
934
+ unless params['TemplateSet'].nil?
935
+ @TemplateSet = []
936
+ params['TemplateSet'].each do |i|
937
+ templateinfo_tmp = TemplateInfo.new
938
+ templateinfo_tmp.deserialize(i)
939
+ @TemplateSet << templateinfo_tmp
940
+ end
941
+ end
942
+ @RequestId = params['RequestId']
943
+ end
944
+ end
945
+
946
+ # DescribeTemplate请求参数结构体
947
+ class DescribeTemplateRequest < TencentCloud::Common::AbstractModel
948
+ # @param TemplateId: 模板ID
949
+ # @type TemplateId: String
950
+
951
+ attr_accessor :TemplateId
952
+
953
+ def initialize(templateid=nil)
954
+ @TemplateId = templateid
955
+ end
956
+
957
+ def deserialize(params)
958
+ @TemplateId = params['TemplateId']
959
+ end
960
+ end
961
+
962
+ # DescribeTemplate返回参数结构体
963
+ class DescribeTemplateResponse < TencentCloud::Common::AbstractModel
964
+ # @param Template: 模板信息
965
+ # @type Template: :class:`Tencentcloud::Domain.v20180808.models.TemplateInfo`
966
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
967
+ # @type RequestId: String
968
+
969
+ attr_accessor :Template, :RequestId
970
+
971
+ def initialize(template=nil, requestid=nil)
972
+ @Template = template
973
+ @RequestId = requestid
974
+ end
975
+
976
+ def deserialize(params)
977
+ unless params['Template'].nil?
978
+ @Template = TemplateInfo.new
979
+ @Template.deserialize(params['Template'])
980
+ end
981
+ @RequestId = params['RequestId']
982
+ end
983
+ end
984
+
985
+ # 获取域名基础信息
986
+ class DomainBaseInfo < TencentCloud::Common::AbstractModel
987
+ # @param DomainId: 域名资源ID。
988
+ # @type DomainId: String
989
+ # @param DomainName: 域名名称。
990
+ # @type DomainName: String
991
+ # @param RealNameAuditStatus: 域名实名认证状态。
992
+ # NotUpload:未实名认证
993
+ # InAudit:实名审核中
994
+ # Approved:实名审核通过
995
+ # Reject:实名审核失败
996
+ # NoAudit: 无需实名认证
997
+ # @type RealNameAuditStatus: String
998
+ # @param RealNameAuditUnpassReason: 域名实名认证不通过原因。
999
+ # 注意:此字段可能返回 null,表示取不到有效值。
1000
+ # @type RealNameAuditUnpassReason: String
1001
+ # @param DomainNameAuditStatus: 域名命名审核状态。
1002
+ # NotAudit:命名审核未上传
1003
+ # Pending:命名审核待上传
1004
+ # Auditing:域名命名审核中
1005
+ # Approved:域名命名审核通过
1006
+ # Rejected:域名命名审核拒绝
1007
+ # @type DomainNameAuditStatus: String
1008
+ # @param DomainNameAuditUnpassReason: 域名命名审核不通过原因。
1009
+ # 注意:此字段可能返回 null,表示取不到有效值。
1010
+ # @type DomainNameAuditUnpassReason: String
1011
+ # @param CreationDate: 注册时间。
1012
+ # @type CreationDate: String
1013
+ # @param ExpirationDate: 到期时间
1014
+ # @type ExpirationDate: String
1015
+ # @param DomainStatus: 域名状态。
1016
+ # ok:正常
1017
+ # serverHold:注册局暂停解析
1018
+ # clientHold:注册商暂停解析
1019
+ # pendingTransfer:转移中
1020
+ # renewingPeriod:续费期
1021
+ # redemptionPeriod:偿还期
1022
+ # pendingDelete:删除期
1023
+ # serverTransferProhibited:注册局禁止转移
1024
+ # serverUpdateProhibited:注册局禁止更新
1025
+ # serverDeleteProhibited:注册局禁止删除
1026
+ # clientTransferProhibited:注册商禁止转移
1027
+ # clientUpdateProhibited:注册商禁止更新
1028
+ # clientDeleteProhibited:注册商禁止删除
1029
+ # @type DomainStatus: Array
1030
+ # @param BuyStatus: 域名购买状态。
1031
+ # ok:正常
1032
+ # RegisterPending:待注册
1033
+ # RegisterDoing:注册中
1034
+ # RegisterFailed:注册失败
1035
+ # AboutToExpire: 即将过期
1036
+ # RenewPending:已进入续费期,需要进行续费
1037
+ # RenewDoing:续费中
1038
+ # RedemptionPending:已进入赎回期,需要进行续费
1039
+ # RedemptionDoing:赎回中
1040
+ # TransferPending:待转入中
1041
+ # TransferTransing:转入中
1042
+ # TransferFailed:转入失败
1043
+ # @type BuyStatus: String
1044
+ # @param RegistrarType: 注册商类型
1045
+ # epp: DNSPod, Inc.(烟台帝思普网络科技有限公司)
1046
+ # qcloud: Tencent Cloud Computing (Beijing) Limited Liability Company(腾讯云计算(北京)有限责任公司)
1047
+ # yunxun: Guangzhou Yunxun Information Technology Co., Ltd.(广州云讯信息科技有限公司)
1048
+ # xinnet: Xin Net Technology Corporation(北京新网数码信息技术有限公司)
1049
+ # @type RegistrarType: String
1050
+ # @param NameServer: 域名绑定的ns
1051
+ # @type NameServer: Array
1052
+ # @param LockTransfer: true:开启锁定
1053
+ # false:关闭锁定
1054
+ # @type LockTransfer: Boolean
1055
+ # @param LockEndTime: 锁定结束时间
1056
+ # @type LockEndTime: String
1057
+
1058
+ attr_accessor :DomainId, :DomainName, :RealNameAuditStatus, :RealNameAuditUnpassReason, :DomainNameAuditStatus, :DomainNameAuditUnpassReason, :CreationDate, :ExpirationDate, :DomainStatus, :BuyStatus, :RegistrarType, :NameServer, :LockTransfer, :LockEndTime
1059
+
1060
+ def initialize(domainid=nil, domainname=nil, realnameauditstatus=nil, realnameauditunpassreason=nil, domainnameauditstatus=nil, domainnameauditunpassreason=nil, creationdate=nil, expirationdate=nil, domainstatus=nil, buystatus=nil, registrartype=nil, nameserver=nil, locktransfer=nil, lockendtime=nil)
1061
+ @DomainId = domainid
1062
+ @DomainName = domainname
1063
+ @RealNameAuditStatus = realnameauditstatus
1064
+ @RealNameAuditUnpassReason = realnameauditunpassreason
1065
+ @DomainNameAuditStatus = domainnameauditstatus
1066
+ @DomainNameAuditUnpassReason = domainnameauditunpassreason
1067
+ @CreationDate = creationdate
1068
+ @ExpirationDate = expirationdate
1069
+ @DomainStatus = domainstatus
1070
+ @BuyStatus = buystatus
1071
+ @RegistrarType = registrartype
1072
+ @NameServer = nameserver
1073
+ @LockTransfer = locktransfer
1074
+ @LockEndTime = lockendtime
1075
+ end
1076
+
1077
+ def deserialize(params)
1078
+ @DomainId = params['DomainId']
1079
+ @DomainName = params['DomainName']
1080
+ @RealNameAuditStatus = params['RealNameAuditStatus']
1081
+ @RealNameAuditUnpassReason = params['RealNameAuditUnpassReason']
1082
+ @DomainNameAuditStatus = params['DomainNameAuditStatus']
1083
+ @DomainNameAuditUnpassReason = params['DomainNameAuditUnpassReason']
1084
+ @CreationDate = params['CreationDate']
1085
+ @ExpirationDate = params['ExpirationDate']
1086
+ @DomainStatus = params['DomainStatus']
1087
+ @BuyStatus = params['BuyStatus']
1088
+ @RegistrarType = params['RegistrarType']
1089
+ @NameServer = params['NameServer']
1090
+ @LockTransfer = params['LockTransfer']
1091
+ @LockEndTime = params['LockEndTime']
1092
+ end
1093
+ end
1094
+
1095
+ # 批量操作日志详情
1096
+ class DomainBatchDetailSet < TencentCloud::Common::AbstractModel
1097
+ # @param Id: 详情ID
1098
+ # @type Id: Integer
1099
+ # @param Domain: 域名
1100
+ # @type Domain: String
1101
+ # @param Status: 执行状态:
1102
+ # doing 执行中。
1103
+ # failed 操作失败。
1104
+ # success 操作成功。
1105
+ # @type Status: String
1106
+ # @param Reason: 失败原因
1107
+ # 注意:此字段可能返回 null,表示取不到有效值。
1108
+ # @type Reason: String
1109
+ # @param CreatedOn: 创建时间
1110
+ # @type CreatedOn: String
1111
+ # @param UpdatedOn: 更新时间
1112
+ # @type UpdatedOn: String
1113
+
1114
+ attr_accessor :Id, :Domain, :Status, :Reason, :CreatedOn, :UpdatedOn
1115
+
1116
+ def initialize(id=nil, domain=nil, status=nil, reason=nil, createdon=nil, updatedon=nil)
1117
+ @Id = id
1118
+ @Domain = domain
1119
+ @Status = status
1120
+ @Reason = reason
1121
+ @CreatedOn = createdon
1122
+ @UpdatedOn = updatedon
1123
+ end
1124
+
1125
+ def deserialize(params)
1126
+ @Id = params['Id']
1127
+ @Domain = params['Domain']
1128
+ @Status = params['Status']
1129
+ @Reason = params['Reason']
1130
+ @CreatedOn = params['CreatedOn']
1131
+ @UpdatedOn = params['UpdatedOn']
1132
+ end
1133
+ end
1134
+
1135
+ # 批量操作记录
1136
+ class DomainBatchLogSet < TencentCloud::Common::AbstractModel
1137
+ # @param LogId: 日志ID
1138
+ # @type LogId: Integer
1139
+ # @param Number: 数量
1140
+ # @type Number: Integer
1141
+ # @param Status: 执行状态:
1142
+ # doing 执行中。
1143
+ # done 执行完成。
1144
+ # @type Status: String
1145
+ # @param CreatedOn: 提交时间
1146
+ # @type CreatedOn: String
1147
+
1148
+ attr_accessor :LogId, :Number, :Status, :CreatedOn
1149
+
1150
+ def initialize(logid=nil, number=nil, status=nil, createdon=nil)
1151
+ @LogId = logid
1152
+ @Number = number
1153
+ @Status = status
1154
+ @CreatedOn = createdon
1155
+ end
1156
+
1157
+ def deserialize(params)
1158
+ @LogId = params['LogId']
1159
+ @Number = params['Number']
1160
+ @Status = params['Status']
1161
+ @CreatedOn = params['CreatedOn']
1162
+ end
1163
+ end
1164
+
1165
+ # 域名列表
1166
+ class DomainList < TencentCloud::Common::AbstractModel
1167
+ # @param IsPremium: 是否是溢价域名:
1168
+ # ture 是
1169
+ # false 不是
1170
+ # @type IsPremium: Boolean
1171
+ # @param DomainId: 域名资源ID。
1172
+ # @type DomainId: String
1173
+ # @param DomainName: 域名名称。
1174
+ # @type DomainName: String
1175
+ # @param AutoRenew: 是否已设置自动续费 。
1176
+ # 0:未设置
1177
+ # 1:已设置
1178
+ # @type AutoRenew: Integer
1179
+ # @param CreationDate: 注册时间。
1180
+ # @type CreationDate: String
1181
+ # @param ExpirationDate: 到期时间。
1182
+ # @type ExpirationDate: String
1183
+ # @param Tld: 域名后缀
1184
+ # @type Tld: String
1185
+ # @param CodeTld: 编码后的后缀(中文会进行编码)
1186
+ # @type CodeTld: String
1187
+ # @param BuyStatus: 域名购买状态。
1188
+ # ok:正常
1189
+ # AboutToExpire: 即将到期
1190
+ # RegisterPending:注册中
1191
+ # RegisterDoing:注册中
1192
+ # RegisterFailed:注册失败
1193
+ # RenewPending:续费期
1194
+ # RenewDoing:续费中
1195
+ # RedemptionPending:赎回期
1196
+ # RedemptionDoing:赎回中
1197
+ # TransferPending:转入中
1198
+ # TransferTransing:转入中
1199
+ # TransferFailed:转入失败
1200
+ # @type BuyStatus: String
1201
+
1202
+ attr_accessor :IsPremium, :DomainId, :DomainName, :AutoRenew, :CreationDate, :ExpirationDate, :Tld, :CodeTld, :BuyStatus
1203
+
1204
+ def initialize(ispremium=nil, domainid=nil, domainname=nil, autorenew=nil, creationdate=nil, expirationdate=nil, tld=nil, codetld=nil, buystatus=nil)
1205
+ @IsPremium = ispremium
1206
+ @DomainId = domainid
1207
+ @DomainName = domainname
1208
+ @AutoRenew = autorenew
1209
+ @CreationDate = creationdate
1210
+ @ExpirationDate = expirationdate
1211
+ @Tld = tld
1212
+ @CodeTld = codetld
1213
+ @BuyStatus = buystatus
1214
+ end
1215
+
1216
+ def deserialize(params)
1217
+ @IsPremium = params['IsPremium']
1218
+ @DomainId = params['DomainId']
1219
+ @DomainName = params['DomainName']
1220
+ @AutoRenew = params['AutoRenew']
1221
+ @CreationDate = params['CreationDate']
1222
+ @ExpirationDate = params['ExpirationDate']
1223
+ @Tld = params['Tld']
1224
+ @CodeTld = params['CodeTld']
1225
+ @BuyStatus = params['BuyStatus']
1226
+ end
1227
+ end
1228
+
1229
+ # ModifyDomainDNSBatch请求参数结构体
1230
+ class ModifyDomainDNSBatchRequest < TencentCloud::Common::AbstractModel
1231
+ # @param Domains: 批量操作的域名。
1232
+ # @type Domains: Array
1233
+ # @param Dns: 域名DNS 数组。
1234
+ # @type Dns: Array
1235
+
1236
+ attr_accessor :Domains, :Dns
1237
+
1238
+ def initialize(domains=nil, dns=nil)
1239
+ @Domains = domains
1240
+ @Dns = dns
1241
+ end
1242
+
1243
+ def deserialize(params)
1244
+ @Domains = params['Domains']
1245
+ @Dns = params['Dns']
1246
+ end
1247
+ end
1248
+
1249
+ # ModifyDomainDNSBatch返回参数结构体
1250
+ class ModifyDomainDNSBatchResponse < TencentCloud::Common::AbstractModel
1251
+ # @param LogId: 日志ID。
1252
+ # @type LogId: Integer
1253
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1254
+ # @type RequestId: String
1255
+
1256
+ attr_accessor :LogId, :RequestId
1257
+
1258
+ def initialize(logid=nil, requestid=nil)
1259
+ @LogId = logid
1260
+ @RequestId = requestid
1261
+ end
1262
+
1263
+ def deserialize(params)
1264
+ @LogId = params['LogId']
1265
+ @RequestId = params['RequestId']
1266
+ end
1267
+ end
1268
+
1269
+ # ModifyDomainOwnerBatch请求参数结构体
1270
+ class ModifyDomainOwnerBatchRequest < TencentCloud::Common::AbstractModel
1271
+ # @param Domains: 要过户的域名。
1272
+ # @type Domains: Array
1273
+ # @param NewOwnerUin: 转入账户的uin。
1274
+ # @type NewOwnerUin: String
1275
+ # @param TransferDns: 是否同时转移对应的 DNS 解析域名,默认false
1276
+ # @type TransferDns: Boolean
1277
+
1278
+ attr_accessor :Domains, :NewOwnerUin, :TransferDns
1279
+
1280
+ def initialize(domains=nil, newowneruin=nil, transferdns=nil)
1281
+ @Domains = domains
1282
+ @NewOwnerUin = newowneruin
1283
+ @TransferDns = transferdns
1284
+ end
1285
+
1286
+ def deserialize(params)
1287
+ @Domains = params['Domains']
1288
+ @NewOwnerUin = params['NewOwnerUin']
1289
+ @TransferDns = params['TransferDns']
1290
+ end
1291
+ end
1292
+
1293
+ # ModifyDomainOwnerBatch返回参数结构体
1294
+ class ModifyDomainOwnerBatchResponse < TencentCloud::Common::AbstractModel
1295
+ # @param LogId: 日志id
1296
+ # @type LogId: Integer
1297
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1298
+ # @type RequestId: String
1299
+
1300
+ attr_accessor :LogId, :RequestId
1301
+
1302
+ def initialize(logid=nil, requestid=nil)
1303
+ @LogId = logid
1304
+ @RequestId = requestid
1305
+ end
1306
+
1307
+ def deserialize(params)
1308
+ @LogId = params['LogId']
1309
+ @RequestId = params['RequestId']
1310
+ end
1311
+ end
1312
+
1313
+ # 手机号邮箱列表
1314
+ class PhoneEmailData < TencentCloud::Common::AbstractModel
1315
+ # @param Code: 手机号或者邮箱
1316
+ # @type Code: String
1317
+ # @param Type: 1:手机 2:邮箱
1318
+ # @type Type: Integer
1319
+ # @param CreatedOn: 创建时间
1320
+ # @type CreatedOn: String
1321
+
1322
+ attr_accessor :Code, :Type, :CreatedOn
1323
+
1324
+ def initialize(code=nil, type=nil, createdon=nil)
1325
+ @Code = code
1326
+ @Type = type
1327
+ @CreatedOn = createdon
1328
+ end
1329
+
1330
+ def deserialize(params)
1331
+ @Code = params['Code']
1332
+ @Type = params['Type']
1333
+ @CreatedOn = params['CreatedOn']
1334
+ end
1335
+ end
1336
+
1337
+ # 域名价格信息
1338
+ class PriceInfo < TencentCloud::Common::AbstractModel
1339
+ # @param Tld: 域名后缀,例如.com
1340
+ # @type Tld: String
1341
+ # @param Year: 购买年限,范围[1-10]
1342
+ # @type Year: Integer
1343
+ # @param Price: 域名原价
1344
+ # @type Price: Integer
1345
+ # @param RealPrice: 域名现价
1346
+ # @type RealPrice: Integer
1347
+ # @param Operation: 商品的购买类型,新购,续费,赎回,转入,续费并转入
1348
+ # @type Operation: String
1349
+
1350
+ attr_accessor :Tld, :Year, :Price, :RealPrice, :Operation
1351
+
1352
+ def initialize(tld=nil, year=nil, price=nil, realprice=nil, operation=nil)
1353
+ @Tld = tld
1354
+ @Year = year
1355
+ @Price = price
1356
+ @RealPrice = realprice
1357
+ @Operation = operation
1358
+ end
1359
+
1360
+ def deserialize(params)
1361
+ @Tld = params['Tld']
1362
+ @Year = params['Year']
1363
+ @Price = params['Price']
1364
+ @RealPrice = params['RealPrice']
1365
+ @Operation = params['Operation']
1366
+ end
1367
+ end
1368
+
1369
+ # RenewDomainBatch请求参数结构体
1370
+ class RenewDomainBatchRequest < TencentCloud::Common::AbstractModel
1371
+ # @param Period: 域名续费的年限。
1372
+ # @type Period: Integer
1373
+ # @param Domains: 批量续费的域名。
1374
+ # @type Domains: Array
1375
+ # @param PayMode: 付费模式 0手动在线付费,1使用余额付费。
1376
+ # @type PayMode: Integer
1377
+ # @param AutoRenewFlag: 自动续费开关。有三个可选值:
1378
+ # 0 表示关闭,不自动续费
1379
+ # 1 表示开启,将自动续费
1380
+ # 2 表示不处理,保留域名原有状态(默认值)
1381
+ # @type AutoRenewFlag: Integer
1382
+
1383
+ attr_accessor :Period, :Domains, :PayMode, :AutoRenewFlag
1384
+
1385
+ def initialize(period=nil, domains=nil, paymode=nil, autorenewflag=nil)
1386
+ @Period = period
1387
+ @Domains = domains
1388
+ @PayMode = paymode
1389
+ @AutoRenewFlag = autorenewflag
1390
+ end
1391
+
1392
+ def deserialize(params)
1393
+ @Period = params['Period']
1394
+ @Domains = params['Domains']
1395
+ @PayMode = params['PayMode']
1396
+ @AutoRenewFlag = params['AutoRenewFlag']
1397
+ end
1398
+ end
1399
+
1400
+ # RenewDomainBatch返回参数结构体
1401
+ class RenewDomainBatchResponse < TencentCloud::Common::AbstractModel
1402
+ # @param LogId: 操作日志ID。
1403
+ # @type LogId: Integer
1404
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1405
+ # @type RequestId: String
1406
+
1407
+ attr_accessor :LogId, :RequestId
1408
+
1409
+ def initialize(logid=nil, requestid=nil)
1410
+ @LogId = logid
1411
+ @RequestId = requestid
1412
+ end
1413
+
1414
+ def deserialize(params)
1415
+ @LogId = params['LogId']
1416
+ @RequestId = params['RequestId']
1417
+ end
1418
+ end
1419
+
1420
+ # SendPhoneEmailCode请求参数结构体
1421
+ class SendPhoneEmailCodeRequest < TencentCloud::Common::AbstractModel
1422
+ # @param Code: 手机或者邮箱号。
1423
+ # @type Code: String
1424
+ # @param Type: 1:手机 2:邮箱。
1425
+ # @type Type: Integer
1426
+
1427
+ attr_accessor :Code, :Type
1428
+
1429
+ def initialize(code=nil, type=nil)
1430
+ @Code = code
1431
+ @Type = type
1432
+ end
1433
+
1434
+ def deserialize(params)
1435
+ @Code = params['Code']
1436
+ @Type = params['Type']
1437
+ end
1438
+ end
1439
+
1440
+ # SendPhoneEmailCode返回参数结构体
1441
+ class SendPhoneEmailCodeResponse < TencentCloud::Common::AbstractModel
1442
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1443
+ # @type RequestId: String
1444
+
1445
+ attr_accessor :RequestId
1446
+
1447
+ def initialize(requestid=nil)
1448
+ @RequestId = requestid
1449
+ end
1450
+
1451
+ def deserialize(params)
1452
+ @RequestId = params['RequestId']
1453
+ end
1454
+ end
1455
+
1456
+ # SetDomainAutoRenew请求参数结构体
1457
+ class SetDomainAutoRenewRequest < TencentCloud::Common::AbstractModel
1458
+ # @param DomainId: 域名ID。
1459
+ # @type DomainId: String
1460
+ # @param AutoRenew: AutoRenew 有三个可选值:
1461
+ # 0:不设置自动续费
1462
+ # 1:设置自动续费
1463
+ # 2:设置到期后不续费
1464
+ # @type AutoRenew: Integer
1465
+
1466
+ attr_accessor :DomainId, :AutoRenew
1467
+
1468
+ def initialize(domainid=nil, autorenew=nil)
1469
+ @DomainId = domainid
1470
+ @AutoRenew = autorenew
1471
+ end
1472
+
1473
+ def deserialize(params)
1474
+ @DomainId = params['DomainId']
1475
+ @AutoRenew = params['AutoRenew']
1476
+ end
1477
+ end
1478
+
1479
+ # SetDomainAutoRenew返回参数结构体
1480
+ class SetDomainAutoRenewResponse < TencentCloud::Common::AbstractModel
1481
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1482
+ # @type RequestId: String
1483
+
1484
+ attr_accessor :RequestId
1485
+
1486
+ def initialize(requestid=nil)
1487
+ @RequestId = requestid
1488
+ end
1489
+
1490
+ def deserialize(params)
1491
+ @RequestId = params['RequestId']
1492
+ end
1493
+ end
1494
+
1495
+ # Template数据
1496
+ class TemplateInfo < TencentCloud::Common::AbstractModel
1497
+ # @param TemplateId: 模板ID
1498
+ # @type TemplateId: String
1499
+ # @param AuditStatus: 认证状态:未实名认证:NotUpload, 实名审核中:InAudit,已实名认证:Approved,实名审核失败:Reject
1500
+ # @type AuditStatus: String
1501
+ # @param CreatedOn: 创建时间
1502
+ # @type CreatedOn: String
1503
+ # @param UpdatedOn: 更新时间
1504
+ # @type UpdatedOn: String
1505
+ # @param UserUin: 用户UIN
1506
+ # @type UserUin: String
1507
+ # @param IsDefault: 是否是默认模板: 是:yes,否:no
1508
+ # @type IsDefault: String
1509
+ # @param AuditReason: 认证失败原因
1510
+ # @type AuditReason: String
1511
+ # @param CertificateInfo: 认证信息
1512
+ # @type CertificateInfo: :class:`Tencentcloud::Domain.v20180808.models.CertificateInfo`
1513
+ # @param ContactInfo: 联系人信息
1514
+ # @type ContactInfo: :class:`Tencentcloud::Domain.v20180808.models.ContactInfo`
1515
+ # @param IsValidTemplate: 模板是否符合规范, 1是 0 否
1516
+ # @type IsValidTemplate: Integer
1517
+ # @param InvalidReason: 不符合规范原因
1518
+ # @type InvalidReason: String
1519
+
1520
+ attr_accessor :TemplateId, :AuditStatus, :CreatedOn, :UpdatedOn, :UserUin, :IsDefault, :AuditReason, :CertificateInfo, :ContactInfo, :IsValidTemplate, :InvalidReason
1521
+
1522
+ def initialize(templateid=nil, auditstatus=nil, createdon=nil, updatedon=nil, useruin=nil, isdefault=nil, auditreason=nil, certificateinfo=nil, contactinfo=nil, isvalidtemplate=nil, invalidreason=nil)
1523
+ @TemplateId = templateid
1524
+ @AuditStatus = auditstatus
1525
+ @CreatedOn = createdon
1526
+ @UpdatedOn = updatedon
1527
+ @UserUin = useruin
1528
+ @IsDefault = isdefault
1529
+ @AuditReason = auditreason
1530
+ @CertificateInfo = certificateinfo
1531
+ @ContactInfo = contactinfo
1532
+ @IsValidTemplate = isvalidtemplate
1533
+ @InvalidReason = invalidreason
1534
+ end
1535
+
1536
+ def deserialize(params)
1537
+ @TemplateId = params['TemplateId']
1538
+ @AuditStatus = params['AuditStatus']
1539
+ @CreatedOn = params['CreatedOn']
1540
+ @UpdatedOn = params['UpdatedOn']
1541
+ @UserUin = params['UserUin']
1542
+ @IsDefault = params['IsDefault']
1543
+ @AuditReason = params['AuditReason']
1544
+ unless params['CertificateInfo'].nil?
1545
+ @CertificateInfo = CertificateInfo.new
1546
+ @CertificateInfo.deserialize(params['CertificateInfo'])
1547
+ end
1548
+ unless params['ContactInfo'].nil?
1549
+ @ContactInfo = ContactInfo.new
1550
+ @ContactInfo.deserialize(params['ContactInfo'])
1551
+ end
1552
+ @IsValidTemplate = params['IsValidTemplate']
1553
+ @InvalidReason = params['InvalidReason']
1554
+ end
1555
+ end
1556
+
1557
+ # TransferInDomainBatch请求参数结构体
1558
+ class TransferInDomainBatchRequest < TencentCloud::Common::AbstractModel
1559
+ # @param Domains: 转入的域名名称数组。
1560
+ # @type Domains: Array
1561
+ # @param PassWords: 域名转移码数组。
1562
+ # @type PassWords: Array
1563
+ # @param TemplateId: 模板ID。
1564
+ # @type TemplateId: String
1565
+ # @param PayMode: 付费模式 0手动在线付费,1使用余额付费。
1566
+ # @type PayMode: Integer
1567
+ # @param AutoRenewFlag: 自动续费开关。有两个可选值:
1568
+ # 0 表示关闭,不自动续费(默认值)
1569
+ # 1 表示开启,将自动续费
1570
+ # @type AutoRenewFlag: Integer
1571
+ # @param LockTransfer: true: 开启60天内禁止转移注册商锁定
1572
+ # false:关闭60天内禁止转移注册商锁定
1573
+ # 默认 true
1574
+ # @type LockTransfer: Boolean
1575
+
1576
+ attr_accessor :Domains, :PassWords, :TemplateId, :PayMode, :AutoRenewFlag, :LockTransfer
1577
+
1578
+ def initialize(domains=nil, passwords=nil, templateid=nil, paymode=nil, autorenewflag=nil, locktransfer=nil)
1579
+ @Domains = domains
1580
+ @PassWords = passwords
1581
+ @TemplateId = templateid
1582
+ @PayMode = paymode
1583
+ @AutoRenewFlag = autorenewflag
1584
+ @LockTransfer = locktransfer
1585
+ end
1586
+
1587
+ def deserialize(params)
1588
+ @Domains = params['Domains']
1589
+ @PassWords = params['PassWords']
1590
+ @TemplateId = params['TemplateId']
1591
+ @PayMode = params['PayMode']
1592
+ @AutoRenewFlag = params['AutoRenewFlag']
1593
+ @LockTransfer = params['LockTransfer']
1594
+ end
1595
+ end
1596
+
1597
+ # TransferInDomainBatch返回参数结构体
1598
+ class TransferInDomainBatchResponse < TencentCloud::Common::AbstractModel
1599
+ # @param LogId: 日志ID
1600
+ # @type LogId: Integer
1601
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1602
+ # @type RequestId: String
1603
+
1604
+ attr_accessor :LogId, :RequestId
1605
+
1606
+ def initialize(logid=nil, requestid=nil)
1607
+ @LogId = logid
1608
+ @RequestId = requestid
1609
+ end
1610
+
1611
+ def deserialize(params)
1612
+ @LogId = params['LogId']
1613
+ @RequestId = params['RequestId']
1614
+ end
1615
+ end
1616
+
1617
+ # TransferProhibitionBatch请求参数结构体
1618
+ class TransferProhibitionBatchRequest < TencentCloud::Common::AbstractModel
1619
+ # @param Domains: 批量操作的域名。
1620
+ # @type Domains: Array
1621
+ # @param Status: 是否开启禁止域名转移。
1622
+ # True: 开启禁止域名转移状态。
1623
+ # False:关闭禁止域名转移状态。
1624
+ # @type Status: Boolean
1625
+
1626
+ attr_accessor :Domains, :Status
1627
+
1628
+ def initialize(domains=nil, status=nil)
1629
+ @Domains = domains
1630
+ @Status = status
1631
+ end
1632
+
1633
+ def deserialize(params)
1634
+ @Domains = params['Domains']
1635
+ @Status = params['Status']
1636
+ end
1637
+ end
1638
+
1639
+ # TransferProhibitionBatch返回参数结构体
1640
+ class TransferProhibitionBatchResponse < TencentCloud::Common::AbstractModel
1641
+ # @param LogId: 日志ID
1642
+ # @type LogId: Integer
1643
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1644
+ # @type RequestId: String
1645
+
1646
+ attr_accessor :LogId, :RequestId
1647
+
1648
+ def initialize(logid=nil, requestid=nil)
1649
+ @LogId = logid
1650
+ @RequestId = requestid
1651
+ end
1652
+
1653
+ def deserialize(params)
1654
+ @LogId = params['LogId']
1655
+ @RequestId = params['RequestId']
1656
+ end
1657
+ end
1658
+
1659
+ # UpdateProhibitionBatch请求参数结构体
1660
+ class UpdateProhibitionBatchRequest < TencentCloud::Common::AbstractModel
1661
+ # @param Domains: 批量操作的域名。
1662
+ # @type Domains: Array
1663
+ # @param Status: 是否开启禁止域名更新。
1664
+ # True:开启禁止域名更新状态。
1665
+ # False:关闭禁止域名更新状态。
1666
+ # @type Status: Boolean
1667
+
1668
+ attr_accessor :Domains, :Status
1669
+
1670
+ def initialize(domains=nil, status=nil)
1671
+ @Domains = domains
1672
+ @Status = status
1673
+ end
1674
+
1675
+ def deserialize(params)
1676
+ @Domains = params['Domains']
1677
+ @Status = params['Status']
1678
+ end
1679
+ end
1680
+
1681
+ # UpdateProhibitionBatch返回参数结构体
1682
+ class UpdateProhibitionBatchResponse < TencentCloud::Common::AbstractModel
1683
+ # @param LogId: 日志ID
1684
+ # @type LogId: Integer
1685
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1686
+ # @type RequestId: String
1687
+
1688
+ attr_accessor :LogId, :RequestId
1689
+
1690
+ def initialize(logid=nil, requestid=nil)
1691
+ @LogId = logid
1692
+ @RequestId = requestid
1693
+ end
1694
+
1695
+ def deserialize(params)
1696
+ @LogId = params['LogId']
1697
+ @RequestId = params['RequestId']
1698
+ end
1699
+ end
1700
+
1701
+ # UploadImage请求参数结构体
1702
+ class UploadImageRequest < TencentCloud::Common::AbstractModel
1703
+ # @param ImageFile: 资质照片,照片的base64编码。
1704
+ # @type ImageFile: String
1705
+
1706
+ attr_accessor :ImageFile
1707
+
1708
+ def initialize(imagefile=nil)
1709
+ @ImageFile = imagefile
1710
+ end
1711
+
1712
+ def deserialize(params)
1713
+ @ImageFile = params['ImageFile']
1714
+ end
1715
+ end
1716
+
1717
+ # UploadImage返回参数结构体
1718
+ class UploadImageResponse < TencentCloud::Common::AbstractModel
1719
+ # @param AccessUrl: 资质照片地址。
1720
+ # @type AccessUrl: String
1721
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1722
+ # @type RequestId: String
1723
+
1724
+ attr_accessor :AccessUrl, :RequestId
1725
+
1726
+ def initialize(accessurl=nil, requestid=nil)
1727
+ @AccessUrl = accessurl
1728
+ @RequestId = requestid
1729
+ end
1730
+
1731
+ def deserialize(params)
1732
+ @AccessUrl = params['AccessUrl']
1733
+ @RequestId = params['RequestId']
1734
+ end
1735
+ end
1736
+
1737
+ end
1738
+ end
1739
+ end
1740
+