tencentcloud-sdk-domain 3.0.830 → 3.0.831
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180808/client.rb +336 -0
- data/lib/v20180808/models.rb +914 -0
- metadata +2 -2
data/lib/v20180808/models.rb
CHANGED
@@ -17,6 +17,38 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Domain
|
19
19
|
module V20180808
|
20
|
+
# 用于域名预释放详情页面
|
21
|
+
class AuctionInfo < TencentCloud::Common::AbstractModel
|
22
|
+
# @param Bidder: 竞拍人
|
23
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24
|
+
# @type Bidder: String
|
25
|
+
# @param AuctionTime: 竞拍时间
|
26
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27
|
+
# @type AuctionTime: String
|
28
|
+
# @param AuctionPrice: 竞拍价格
|
29
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30
|
+
# @type AuctionPrice: Float
|
31
|
+
# @param Status: 状态 up: 领先 down: 落后
|
32
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
33
|
+
# @type Status: String
|
34
|
+
|
35
|
+
attr_accessor :Bidder, :AuctionTime, :AuctionPrice, :Status
|
36
|
+
|
37
|
+
def initialize(bidder=nil, auctiontime=nil, auctionprice=nil, status=nil)
|
38
|
+
@Bidder = bidder
|
39
|
+
@AuctionTime = auctiontime
|
40
|
+
@AuctionPrice = auctionprice
|
41
|
+
@Status = status
|
42
|
+
end
|
43
|
+
|
44
|
+
def deserialize(params)
|
45
|
+
@Bidder = params['Bidder']
|
46
|
+
@AuctionTime = params['AuctionTime']
|
47
|
+
@AuctionPrice = params['AuctionPrice']
|
48
|
+
@Status = params['Status']
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
20
52
|
# BatchModifyDomainInfo请求参数结构体
|
21
53
|
class BatchModifyDomainInfoRequest < TencentCloud::Common::AbstractModel
|
22
54
|
# @param Domains: 批量修改的域名。
|
@@ -87,6 +119,75 @@ module TencentCloud
|
|
87
119
|
end
|
88
120
|
end
|
89
121
|
|
122
|
+
# BidDetailPage请求参数结构体
|
123
|
+
class BidDetailPageRequest < TencentCloud::Common::AbstractModel
|
124
|
+
# @param BusinessId: 业务ID
|
125
|
+
# @type BusinessId: String
|
126
|
+
|
127
|
+
attr_accessor :BusinessId
|
128
|
+
|
129
|
+
def initialize(businessid=nil)
|
130
|
+
@BusinessId = businessid
|
131
|
+
end
|
132
|
+
|
133
|
+
def deserialize(params)
|
134
|
+
@BusinessId = params['BusinessId']
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
# BidDetailPage返回参数结构体
|
139
|
+
class BidDetailPageResponse < TencentCloud::Common::AbstractModel
|
140
|
+
# @param Domain: 域名
|
141
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
142
|
+
# @type Domain: String
|
143
|
+
# @param CurrentPrice: 当前域名价格
|
144
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
145
|
+
# @type CurrentPrice: Float
|
146
|
+
# @param BidPrice: 用户上次出价
|
147
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
148
|
+
# @type BidPrice: Float
|
149
|
+
# @param CurrentPriceScope: 当前加价幅度
|
150
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
151
|
+
# @type CurrentPriceScope: Float
|
152
|
+
# @param PriceScope: 加价幅度区间配置
|
153
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
154
|
+
# @type PriceScope: Array
|
155
|
+
# @param DepositPrice: 用户当前已经支付了的保证金
|
156
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
157
|
+
# @type DepositPrice: Float
|
158
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
159
|
+
# @type RequestId: String
|
160
|
+
|
161
|
+
attr_accessor :Domain, :CurrentPrice, :BidPrice, :CurrentPriceScope, :PriceScope, :DepositPrice, :RequestId
|
162
|
+
|
163
|
+
def initialize(domain=nil, currentprice=nil, bidprice=nil, currentpricescope=nil, pricescope=nil, depositprice=nil, requestid=nil)
|
164
|
+
@Domain = domain
|
165
|
+
@CurrentPrice = currentprice
|
166
|
+
@BidPrice = bidprice
|
167
|
+
@CurrentPriceScope = currentpricescope
|
168
|
+
@PriceScope = pricescope
|
169
|
+
@DepositPrice = depositprice
|
170
|
+
@RequestId = requestid
|
171
|
+
end
|
172
|
+
|
173
|
+
def deserialize(params)
|
174
|
+
@Domain = params['Domain']
|
175
|
+
@CurrentPrice = params['CurrentPrice']
|
176
|
+
@BidPrice = params['BidPrice']
|
177
|
+
@CurrentPriceScope = params['CurrentPriceScope']
|
178
|
+
unless params['PriceScope'].nil?
|
179
|
+
@PriceScope = []
|
180
|
+
params['PriceScope'].each do |i|
|
181
|
+
pricescopeconf_tmp = PriceScopeConf.new
|
182
|
+
pricescopeconf_tmp.deserialize(i)
|
183
|
+
@PriceScope << pricescopeconf_tmp
|
184
|
+
end
|
185
|
+
end
|
186
|
+
@DepositPrice = params['DepositPrice']
|
187
|
+
@RequestId = params['RequestId']
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
90
191
|
# BidPreDomains请求参数结构体
|
91
192
|
class BidPreDomainsRequest < TencentCloud::Common::AbstractModel
|
92
193
|
# @param BusinessId: 业务ID
|
@@ -123,6 +224,50 @@ module TencentCloud
|
|
123
224
|
end
|
124
225
|
end
|
125
226
|
|
227
|
+
# BiddingPreRelease请求参数结构体
|
228
|
+
class BiddingPreReleaseRequest < TencentCloud::Common::AbstractModel
|
229
|
+
# @param BusinessId: 业务ID
|
230
|
+
# @type BusinessId: String
|
231
|
+
# @param Price: 价格
|
232
|
+
# @type Price: Float
|
233
|
+
|
234
|
+
attr_accessor :BusinessId, :Price
|
235
|
+
|
236
|
+
def initialize(businessid=nil, price=nil)
|
237
|
+
@BusinessId = businessid
|
238
|
+
@Price = price
|
239
|
+
end
|
240
|
+
|
241
|
+
def deserialize(params)
|
242
|
+
@BusinessId = params['BusinessId']
|
243
|
+
@Price = params['Price']
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
# BiddingPreRelease返回参数结构体
|
248
|
+
class BiddingPreReleaseResponse < TencentCloud::Common::AbstractModel
|
249
|
+
# @param IsNeedPay: 是否需要额外支付
|
250
|
+
# @type IsNeedPay: Boolean
|
251
|
+
# @param BillingParam: 计费请求参数,以Json字符串的形式进行返回。
|
252
|
+
# @type BillingParam: String
|
253
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
254
|
+
# @type RequestId: String
|
255
|
+
|
256
|
+
attr_accessor :IsNeedPay, :BillingParam, :RequestId
|
257
|
+
|
258
|
+
def initialize(isneedpay=nil, billingparam=nil, requestid=nil)
|
259
|
+
@IsNeedPay = isneedpay
|
260
|
+
@BillingParam = billingparam
|
261
|
+
@RequestId = requestid
|
262
|
+
end
|
263
|
+
|
264
|
+
def deserialize(params)
|
265
|
+
@IsNeedPay = params['IsNeedPay']
|
266
|
+
@BillingParam = params['BillingParam']
|
267
|
+
@RequestId = params['RequestId']
|
268
|
+
end
|
269
|
+
end
|
270
|
+
|
126
271
|
# 认证资料信息
|
127
272
|
class CertificateInfo < TencentCloud::Common::AbstractModel
|
128
273
|
# @param CertificateCode: 证件号码。
|
@@ -698,6 +843,33 @@ module TencentCloud
|
|
698
843
|
end
|
699
844
|
end
|
700
845
|
|
846
|
+
# DeleteBidding请求参数结构体
|
847
|
+
class DeleteBiddingRequest < TencentCloud::Common::AbstractModel
|
848
|
+
|
849
|
+
|
850
|
+
def initialize()
|
851
|
+
end
|
852
|
+
|
853
|
+
def deserialize(params)
|
854
|
+
end
|
855
|
+
end
|
856
|
+
|
857
|
+
# DeleteBidding返回参数结构体
|
858
|
+
class DeleteBiddingResponse < TencentCloud::Common::AbstractModel
|
859
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
860
|
+
# @type RequestId: String
|
861
|
+
|
862
|
+
attr_accessor :RequestId
|
863
|
+
|
864
|
+
def initialize(requestid=nil)
|
865
|
+
@RequestId = requestid
|
866
|
+
end
|
867
|
+
|
868
|
+
def deserialize(params)
|
869
|
+
@RequestId = params['RequestId']
|
870
|
+
end
|
871
|
+
end
|
872
|
+
|
701
873
|
# DeleteCustomDnsHost请求参数结构体
|
702
874
|
class DeleteCustomDnsHostRequest < TencentCloud::Common::AbstractModel
|
703
875
|
# @param DomainId: 域名实例ID
|
@@ -838,6 +1010,63 @@ module TencentCloud
|
|
838
1010
|
end
|
839
1011
|
end
|
840
1012
|
|
1013
|
+
# DescribeAuctionList请求参数结构体
|
1014
|
+
class DescribeAuctionListRequest < TencentCloud::Common::AbstractModel
|
1015
|
+
# @param BusinessId: 业务ID
|
1016
|
+
# @type BusinessId: String
|
1017
|
+
# @param Limit: 条数,默认10条
|
1018
|
+
# @type Limit: Integer
|
1019
|
+
# @param OffSet: 偏移量
|
1020
|
+
# @type OffSet: Integer
|
1021
|
+
|
1022
|
+
attr_accessor :BusinessId, :Limit, :OffSet
|
1023
|
+
|
1024
|
+
def initialize(businessid=nil, limit=nil, offset=nil)
|
1025
|
+
@BusinessId = businessid
|
1026
|
+
@Limit = limit
|
1027
|
+
@OffSet = offset
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
def deserialize(params)
|
1031
|
+
@BusinessId = params['BusinessId']
|
1032
|
+
@Limit = params['Limit']
|
1033
|
+
@OffSet = params['OffSet']
|
1034
|
+
end
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
# DescribeAuctionList返回参数结构体
|
1038
|
+
class DescribeAuctionListResponse < TencentCloud::Common::AbstractModel
|
1039
|
+
# @param AuctionList: 竞拍详情列表
|
1040
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1041
|
+
# @type AuctionList: Array
|
1042
|
+
# @param TotalCount: 总数
|
1043
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1044
|
+
# @type TotalCount: Integer
|
1045
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1046
|
+
# @type RequestId: String
|
1047
|
+
|
1048
|
+
attr_accessor :AuctionList, :TotalCount, :RequestId
|
1049
|
+
|
1050
|
+
def initialize(auctionlist=nil, totalcount=nil, requestid=nil)
|
1051
|
+
@AuctionList = auctionlist
|
1052
|
+
@TotalCount = totalcount
|
1053
|
+
@RequestId = requestid
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
def deserialize(params)
|
1057
|
+
unless params['AuctionList'].nil?
|
1058
|
+
@AuctionList = []
|
1059
|
+
params['AuctionList'].each do |i|
|
1060
|
+
auctioninfo_tmp = AuctionInfo.new
|
1061
|
+
auctioninfo_tmp.deserialize(i)
|
1062
|
+
@AuctionList << auctioninfo_tmp
|
1063
|
+
end
|
1064
|
+
end
|
1065
|
+
@TotalCount = params['TotalCount']
|
1066
|
+
@RequestId = params['RequestId']
|
1067
|
+
end
|
1068
|
+
end
|
1069
|
+
|
841
1070
|
# DescribeBatchOperationLogDetails请求参数结构体
|
842
1071
|
class DescribeBatchOperationLogDetailsRequest < TencentCloud::Common::AbstractModel
|
843
1072
|
# @param LogId: 日志ID。
|
@@ -946,6 +1175,237 @@ module TencentCloud
|
|
946
1175
|
end
|
947
1176
|
end
|
948
1177
|
|
1178
|
+
# DescribeBiddingAppointDetail请求参数结构体
|
1179
|
+
class DescribeBiddingAppointDetailRequest < TencentCloud::Common::AbstractModel
|
1180
|
+
|
1181
|
+
|
1182
|
+
def initialize()
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
def deserialize(params)
|
1186
|
+
end
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
# DescribeBiddingAppointDetail返回参数结构体
|
1190
|
+
class DescribeBiddingAppointDetailResponse < TencentCloud::Common::AbstractModel
|
1191
|
+
# @param Status: 1 已预约,2 竞价中,3 等待出价 4 等待支付 5 失败 6 转移中,7 转移成功 8 持有者索回
|
1192
|
+
# @type Status: Integer
|
1193
|
+
# @param BiddingBondRefund: 预约保证金是否已经退回
|
1194
|
+
# yes:退回 no: 未退回
|
1195
|
+
# @type BiddingBondRefund: String
|
1196
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1197
|
+
# @type RequestId: String
|
1198
|
+
|
1199
|
+
attr_accessor :Status, :BiddingBondRefund, :RequestId
|
1200
|
+
|
1201
|
+
def initialize(status=nil, biddingbondrefund=nil, requestid=nil)
|
1202
|
+
@Status = status
|
1203
|
+
@BiddingBondRefund = biddingbondrefund
|
1204
|
+
@RequestId = requestid
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
def deserialize(params)
|
1208
|
+
@Status = params['Status']
|
1209
|
+
@BiddingBondRefund = params['BiddingBondRefund']
|
1210
|
+
@RequestId = params['RequestId']
|
1211
|
+
end
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
# DescribeBiddingAppointList请求参数结构体
|
1215
|
+
class DescribeBiddingAppointListRequest < TencentCloud::Common::AbstractModel
|
1216
|
+
# @param PageSize: 每页数量
|
1217
|
+
# @type PageSize: Integer
|
1218
|
+
# @param Status: 状态: 1 已预约 9 预约持有者索回
|
1219
|
+
# @type Status: Array
|
1220
|
+
# @param SortField: 排序字段:AppointEndTime 预约结束时间
|
1221
|
+
# @type SortField: String
|
1222
|
+
# @param SortOrder: 排序规则:asc升序,desc降序
|
1223
|
+
# @type SortOrder: String
|
1224
|
+
|
1225
|
+
attr_accessor :PageSize, :Status, :SortField, :SortOrder
|
1226
|
+
|
1227
|
+
def initialize(pagesize=nil, status=nil, sortfield=nil, sortorder=nil)
|
1228
|
+
@PageSize = pagesize
|
1229
|
+
@Status = status
|
1230
|
+
@SortField = sortfield
|
1231
|
+
@SortOrder = sortorder
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
def deserialize(params)
|
1235
|
+
@PageSize = params['PageSize']
|
1236
|
+
@Status = params['Status']
|
1237
|
+
@SortField = params['SortField']
|
1238
|
+
@SortOrder = params['SortOrder']
|
1239
|
+
end
|
1240
|
+
end
|
1241
|
+
|
1242
|
+
# DescribeBiddingAppointList返回参数结构体
|
1243
|
+
class DescribeBiddingAppointListResponse < TencentCloud::Common::AbstractModel
|
1244
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1245
|
+
# @type RequestId: String
|
1246
|
+
|
1247
|
+
attr_accessor :RequestId
|
1248
|
+
|
1249
|
+
def initialize(requestid=nil)
|
1250
|
+
@RequestId = requestid
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
def deserialize(params)
|
1254
|
+
@RequestId = params['RequestId']
|
1255
|
+
end
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
# DescribeBiddingDetail请求参数结构体
|
1259
|
+
class DescribeBiddingDetailRequest < TencentCloud::Common::AbstractModel
|
1260
|
+
|
1261
|
+
|
1262
|
+
def initialize()
|
1263
|
+
end
|
1264
|
+
|
1265
|
+
def deserialize(params)
|
1266
|
+
end
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
# DescribeBiddingDetail返回参数结构体
|
1270
|
+
class DescribeBiddingDetailResponse < TencentCloud::Common::AbstractModel
|
1271
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1272
|
+
# @type RequestId: String
|
1273
|
+
|
1274
|
+
attr_accessor :RequestId
|
1275
|
+
|
1276
|
+
def initialize(requestid=nil)
|
1277
|
+
@RequestId = requestid
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
def deserialize(params)
|
1281
|
+
@RequestId = params['RequestId']
|
1282
|
+
end
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
# DescribeBiddingList请求参数结构体
|
1286
|
+
class DescribeBiddingListRequest < TencentCloud::Common::AbstractModel
|
1287
|
+
# @param PageSize: 每页数量
|
1288
|
+
# @type PageSize: Integer
|
1289
|
+
# @param Status: 2 竞价中 3 等待出价 4 交易失败 10 竞价阶段持有者赎回
|
1290
|
+
# @type Status: Array
|
1291
|
+
# @param SortField: 排序字段:BiddingEndTime 竞价结束时间
|
1292
|
+
# BiddingPrice 我的价格
|
1293
|
+
# @type SortField: String
|
1294
|
+
# @param SortOrder: 排序规则:asc升序,desc降序
|
1295
|
+
# @type SortOrder: String
|
1296
|
+
|
1297
|
+
attr_accessor :PageSize, :Status, :SortField, :SortOrder
|
1298
|
+
|
1299
|
+
def initialize(pagesize=nil, status=nil, sortfield=nil, sortorder=nil)
|
1300
|
+
@PageSize = pagesize
|
1301
|
+
@Status = status
|
1302
|
+
@SortField = sortfield
|
1303
|
+
@SortOrder = sortorder
|
1304
|
+
end
|
1305
|
+
|
1306
|
+
def deserialize(params)
|
1307
|
+
@PageSize = params['PageSize']
|
1308
|
+
@Status = params['Status']
|
1309
|
+
@SortField = params['SortField']
|
1310
|
+
@SortOrder = params['SortOrder']
|
1311
|
+
end
|
1312
|
+
end
|
1313
|
+
|
1314
|
+
# DescribeBiddingList返回参数结构体
|
1315
|
+
class DescribeBiddingListResponse < TencentCloud::Common::AbstractModel
|
1316
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1317
|
+
# @type RequestId: String
|
1318
|
+
|
1319
|
+
attr_accessor :RequestId
|
1320
|
+
|
1321
|
+
def initialize(requestid=nil)
|
1322
|
+
@RequestId = requestid
|
1323
|
+
end
|
1324
|
+
|
1325
|
+
def deserialize(params)
|
1326
|
+
@RequestId = params['RequestId']
|
1327
|
+
end
|
1328
|
+
end
|
1329
|
+
|
1330
|
+
# DescribeBiddingSuccessfulDetail请求参数结构体
|
1331
|
+
class DescribeBiddingSuccessfulDetailRequest < TencentCloud::Common::AbstractModel
|
1332
|
+
|
1333
|
+
|
1334
|
+
def initialize()
|
1335
|
+
end
|
1336
|
+
|
1337
|
+
def deserialize(params)
|
1338
|
+
end
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
# DescribeBiddingSuccessfulDetail返回参数结构体
|
1342
|
+
class DescribeBiddingSuccessfulDetailResponse < TencentCloud::Common::AbstractModel
|
1343
|
+
# @param BiddingBondRefund: 保证金,是否退款,yes表示退款,no表示不退款
|
1344
|
+
# @type BiddingBondRefund: String
|
1345
|
+
# @param Status: 状态:1 竞价中,2 待出价,3 竞价失败, 4 等待支付 5 等待转移, 6 转移中,7 交易成功,8 持有者索回,9 已违约
|
1346
|
+
# @type Status: Integer
|
1347
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1348
|
+
# @type RequestId: String
|
1349
|
+
|
1350
|
+
attr_accessor :BiddingBondRefund, :Status, :RequestId
|
1351
|
+
|
1352
|
+
def initialize(biddingbondrefund=nil, status=nil, requestid=nil)
|
1353
|
+
@BiddingBondRefund = biddingbondrefund
|
1354
|
+
@Status = status
|
1355
|
+
@RequestId = requestid
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
def deserialize(params)
|
1359
|
+
@BiddingBondRefund = params['BiddingBondRefund']
|
1360
|
+
@Status = params['Status']
|
1361
|
+
@RequestId = params['RequestId']
|
1362
|
+
end
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
# DescribeBiddingSuccessfulList请求参数结构体
|
1366
|
+
class DescribeBiddingSuccessfulListRequest < TencentCloud::Common::AbstractModel
|
1367
|
+
# @param PageSize: 每页数量
|
1368
|
+
# @type PageSize: Integer
|
1369
|
+
# @param Status: 状态:5 等待支付 6 等待转移, 7 转移中,8 交易成功,11 尾款阶段持有者索回,12 已违约
|
1370
|
+
# @type Status: Array
|
1371
|
+
# @param SortField: 排序字段:SuccessfulTime 预约结束时间
|
1372
|
+
# @type SortField: String
|
1373
|
+
# @param SortOrder: 排序规则:asc升序,desc降序
|
1374
|
+
# @type SortOrder: String
|
1375
|
+
|
1376
|
+
attr_accessor :PageSize, :Status, :SortField, :SortOrder
|
1377
|
+
|
1378
|
+
def initialize(pagesize=nil, status=nil, sortfield=nil, sortorder=nil)
|
1379
|
+
@PageSize = pagesize
|
1380
|
+
@Status = status
|
1381
|
+
@SortField = sortfield
|
1382
|
+
@SortOrder = sortorder
|
1383
|
+
end
|
1384
|
+
|
1385
|
+
def deserialize(params)
|
1386
|
+
@PageSize = params['PageSize']
|
1387
|
+
@Status = params['Status']
|
1388
|
+
@SortField = params['SortField']
|
1389
|
+
@SortOrder = params['SortOrder']
|
1390
|
+
end
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
# DescribeBiddingSuccessfulList返回参数结构体
|
1394
|
+
class DescribeBiddingSuccessfulListResponse < TencentCloud::Common::AbstractModel
|
1395
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1396
|
+
# @type RequestId: String
|
1397
|
+
|
1398
|
+
attr_accessor :RequestId
|
1399
|
+
|
1400
|
+
def initialize(requestid=nil)
|
1401
|
+
@RequestId = requestid
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
def deserialize(params)
|
1405
|
+
@RequestId = params['RequestId']
|
1406
|
+
end
|
1407
|
+
end
|
1408
|
+
|
949
1409
|
# DescribeCustomDnsHostSet请求参数结构体
|
950
1410
|
class DescribeCustomDnsHostSetRequest < TencentCloud::Common::AbstractModel
|
951
1411
|
# @param DomainId: 域名实例ID
|
@@ -1192,6 +1652,62 @@ module TencentCloud
|
|
1192
1652
|
end
|
1193
1653
|
end
|
1194
1654
|
|
1655
|
+
# DescribePayWaitDetail请求参数结构体
|
1656
|
+
class DescribePayWaitDetailRequest < TencentCloud::Common::AbstractModel
|
1657
|
+
# @param BusinessId: 业务ID
|
1658
|
+
# @type BusinessId: String
|
1659
|
+
|
1660
|
+
attr_accessor :BusinessId
|
1661
|
+
|
1662
|
+
def initialize(businessid=nil)
|
1663
|
+
@BusinessId = businessid
|
1664
|
+
end
|
1665
|
+
|
1666
|
+
def deserialize(params)
|
1667
|
+
@BusinessId = params['BusinessId']
|
1668
|
+
end
|
1669
|
+
end
|
1670
|
+
|
1671
|
+
# DescribePayWaitDetail返回参数结构体
|
1672
|
+
class DescribePayWaitDetailResponse < TencentCloud::Common::AbstractModel
|
1673
|
+
# @param Domain: 域名
|
1674
|
+
# @type Domain: String
|
1675
|
+
# @param Status: 域名类型
|
1676
|
+
# @type Status: String
|
1677
|
+
# @param EndTime: 支付结束时间
|
1678
|
+
# @type EndTime: String
|
1679
|
+
# @param RegTime: 域名注册时间
|
1680
|
+
# @type RegTime: String
|
1681
|
+
# @param Price: 域名成交价格
|
1682
|
+
# @type Price: Float
|
1683
|
+
# @param RetDeposit: 待退还保证金
|
1684
|
+
# @type RetDeposit: Float
|
1685
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1686
|
+
# @type RequestId: String
|
1687
|
+
|
1688
|
+
attr_accessor :Domain, :Status, :EndTime, :RegTime, :Price, :RetDeposit, :RequestId
|
1689
|
+
|
1690
|
+
def initialize(domain=nil, status=nil, endtime=nil, regtime=nil, price=nil, retdeposit=nil, requestid=nil)
|
1691
|
+
@Domain = domain
|
1692
|
+
@Status = status
|
1693
|
+
@EndTime = endtime
|
1694
|
+
@RegTime = regtime
|
1695
|
+
@Price = price
|
1696
|
+
@RetDeposit = retdeposit
|
1697
|
+
@RequestId = requestid
|
1698
|
+
end
|
1699
|
+
|
1700
|
+
def deserialize(params)
|
1701
|
+
@Domain = params['Domain']
|
1702
|
+
@Status = params['Status']
|
1703
|
+
@EndTime = params['EndTime']
|
1704
|
+
@RegTime = params['RegTime']
|
1705
|
+
@Price = params['Price']
|
1706
|
+
@RetDeposit = params['RetDeposit']
|
1707
|
+
@RequestId = params['RequestId']
|
1708
|
+
end
|
1709
|
+
end
|
1710
|
+
|
1195
1711
|
# DescribePhoneEmailList请求参数结构体
|
1196
1712
|
class DescribePhoneEmailListRequest < TencentCloud::Common::AbstractModel
|
1197
1713
|
# @param Type: 0:所有类型 1:手机 2:邮箱,默认0
|
@@ -1251,6 +1767,59 @@ module TencentCloud
|
|
1251
1767
|
end
|
1252
1768
|
end
|
1253
1769
|
|
1770
|
+
# DescribePreAuctionList请求参数结构体
|
1771
|
+
class DescribePreAuctionListRequest < TencentCloud::Common::AbstractModel
|
1772
|
+
# @param PageNumber: 页码
|
1773
|
+
# @type PageNumber: Integer
|
1774
|
+
# @param PageSize: 条数
|
1775
|
+
# @type PageSize: Integer
|
1776
|
+
|
1777
|
+
attr_accessor :PageNumber, :PageSize
|
1778
|
+
|
1779
|
+
def initialize(pagenumber=nil, pagesize=nil)
|
1780
|
+
@PageNumber = pagenumber
|
1781
|
+
@PageSize = pagesize
|
1782
|
+
end
|
1783
|
+
|
1784
|
+
def deserialize(params)
|
1785
|
+
@PageNumber = params['PageNumber']
|
1786
|
+
@PageSize = params['PageSize']
|
1787
|
+
end
|
1788
|
+
end
|
1789
|
+
|
1790
|
+
# DescribePreAuctionList返回参数结构体
|
1791
|
+
class DescribePreAuctionListResponse < TencentCloud::Common::AbstractModel
|
1792
|
+
# @param TotalCount: 总数
|
1793
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1794
|
+
# @type TotalCount: Integer
|
1795
|
+
# @param PreAuctionList: 预释放竞价列表
|
1796
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1797
|
+
# @type PreAuctionList: Array
|
1798
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1799
|
+
# @type RequestId: String
|
1800
|
+
|
1801
|
+
attr_accessor :TotalCount, :PreAuctionList, :RequestId
|
1802
|
+
|
1803
|
+
def initialize(totalcount=nil, preauctionlist=nil, requestid=nil)
|
1804
|
+
@TotalCount = totalcount
|
1805
|
+
@PreAuctionList = preauctionlist
|
1806
|
+
@RequestId = requestid
|
1807
|
+
end
|
1808
|
+
|
1809
|
+
def deserialize(params)
|
1810
|
+
@TotalCount = params['TotalCount']
|
1811
|
+
unless params['PreAuctionList'].nil?
|
1812
|
+
@PreAuctionList = []
|
1813
|
+
params['PreAuctionList'].each do |i|
|
1814
|
+
preauctioninfo_tmp = PreAuctionInfo.new
|
1815
|
+
preauctioninfo_tmp.deserialize(i)
|
1816
|
+
@PreAuctionList << preauctioninfo_tmp
|
1817
|
+
end
|
1818
|
+
end
|
1819
|
+
@RequestId = params['RequestId']
|
1820
|
+
end
|
1821
|
+
end
|
1822
|
+
|
1254
1823
|
# DescribePreDomainList请求参数结构体
|
1255
1824
|
class DescribePreDomainListRequest < TencentCloud::Common::AbstractModel
|
1256
1825
|
# @param Page: 页码
|
@@ -1310,6 +1879,139 @@ module TencentCloud
|
|
1310
1879
|
end
|
1311
1880
|
end
|
1312
1881
|
|
1882
|
+
# DescribePreReleaseList请求参数结构体
|
1883
|
+
class DescribePreReleaseListRequest < TencentCloud::Common::AbstractModel
|
1884
|
+
# @param Keywords: 关键词
|
1885
|
+
# @type Keywords: String
|
1886
|
+
# @param DomainStart: 搜索关键字,开头
|
1887
|
+
# @type DomainStart: Boolean
|
1888
|
+
# @param DomainEnd: 搜索关键字结尾
|
1889
|
+
# @type DomainEnd: Boolean
|
1890
|
+
# @param Sort: 排序
|
1891
|
+
# @type Sort: Integer
|
1892
|
+
# @param PriceStart: 起始价格
|
1893
|
+
# @type PriceStart: Float
|
1894
|
+
# @param PriceEnd: 结束价格
|
1895
|
+
# @type PriceEnd: Float
|
1896
|
+
# @param LengthStart: 起始域名长度
|
1897
|
+
# @type LengthStart: Integer
|
1898
|
+
# @param LengthEnd: 结束域名长度
|
1899
|
+
# @type LengthEnd: Integer
|
1900
|
+
# @param PageNumber: 页码
|
1901
|
+
# @type PageNumber: Integer
|
1902
|
+
# @param PageSize: 没页显示数
|
1903
|
+
# @type PageSize: Integer
|
1904
|
+
# @param Suffix: 后缀
|
1905
|
+
# @type Suffix: Array
|
1906
|
+
# @param ClassOne: 一级分类
|
1907
|
+
# @type ClassOne: Integer
|
1908
|
+
# @param ClassTwo: 二级分类
|
1909
|
+
# @type ClassTwo: Array
|
1910
|
+
# @param ClassThree: 三级分类
|
1911
|
+
# @type ClassThree: Array
|
1912
|
+
# @param ClassFour: 四级分类
|
1913
|
+
# @type ClassFour: Array
|
1914
|
+
# @param FilterStart: 排除关键字,开头
|
1915
|
+
# @type FilterStart: Boolean
|
1916
|
+
# @param FilterEnd: 排除关键字,结尾
|
1917
|
+
# @type FilterEnd: Boolean
|
1918
|
+
# @param FilterWords: 排除关键字
|
1919
|
+
# @type FilterWords: String
|
1920
|
+
# @param TransType: 交易类型
|
1921
|
+
# @type TransType: Integer
|
1922
|
+
# @param IsTop: 搜索白金域名
|
1923
|
+
# @type IsTop: Boolean
|
1924
|
+
# @param EndTimeSort: 结束时间排序啊 desc:倒序 asc:正序
|
1925
|
+
# @type EndTimeSort: String
|
1926
|
+
# @param EndTime: 结束时间
|
1927
|
+
# @type EndTime: String
|
1928
|
+
|
1929
|
+
attr_accessor :Keywords, :DomainStart, :DomainEnd, :Sort, :PriceStart, :PriceEnd, :LengthStart, :LengthEnd, :PageNumber, :PageSize, :Suffix, :ClassOne, :ClassTwo, :ClassThree, :ClassFour, :FilterStart, :FilterEnd, :FilterWords, :TransType, :IsTop, :EndTimeSort, :EndTime
|
1930
|
+
|
1931
|
+
def initialize(keywords=nil, domainstart=nil, domainend=nil, sort=nil, pricestart=nil, priceend=nil, lengthstart=nil, lengthend=nil, pagenumber=nil, pagesize=nil, suffix=nil, classone=nil, classtwo=nil, classthree=nil, classfour=nil, filterstart=nil, filterend=nil, filterwords=nil, transtype=nil, istop=nil, endtimesort=nil, endtime=nil)
|
1932
|
+
@Keywords = keywords
|
1933
|
+
@DomainStart = domainstart
|
1934
|
+
@DomainEnd = domainend
|
1935
|
+
@Sort = sort
|
1936
|
+
@PriceStart = pricestart
|
1937
|
+
@PriceEnd = priceend
|
1938
|
+
@LengthStart = lengthstart
|
1939
|
+
@LengthEnd = lengthend
|
1940
|
+
@PageNumber = pagenumber
|
1941
|
+
@PageSize = pagesize
|
1942
|
+
@Suffix = suffix
|
1943
|
+
@ClassOne = classone
|
1944
|
+
@ClassTwo = classtwo
|
1945
|
+
@ClassThree = classthree
|
1946
|
+
@ClassFour = classfour
|
1947
|
+
@FilterStart = filterstart
|
1948
|
+
@FilterEnd = filterend
|
1949
|
+
@FilterWords = filterwords
|
1950
|
+
@TransType = transtype
|
1951
|
+
@IsTop = istop
|
1952
|
+
@EndTimeSort = endtimesort
|
1953
|
+
@EndTime = endtime
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
def deserialize(params)
|
1957
|
+
@Keywords = params['Keywords']
|
1958
|
+
@DomainStart = params['DomainStart']
|
1959
|
+
@DomainEnd = params['DomainEnd']
|
1960
|
+
@Sort = params['Sort']
|
1961
|
+
@PriceStart = params['PriceStart']
|
1962
|
+
@PriceEnd = params['PriceEnd']
|
1963
|
+
@LengthStart = params['LengthStart']
|
1964
|
+
@LengthEnd = params['LengthEnd']
|
1965
|
+
@PageNumber = params['PageNumber']
|
1966
|
+
@PageSize = params['PageSize']
|
1967
|
+
@Suffix = params['Suffix']
|
1968
|
+
@ClassOne = params['ClassOne']
|
1969
|
+
@ClassTwo = params['ClassTwo']
|
1970
|
+
@ClassThree = params['ClassThree']
|
1971
|
+
@ClassFour = params['ClassFour']
|
1972
|
+
@FilterStart = params['FilterStart']
|
1973
|
+
@FilterEnd = params['FilterEnd']
|
1974
|
+
@FilterWords = params['FilterWords']
|
1975
|
+
@TransType = params['TransType']
|
1976
|
+
@IsTop = params['IsTop']
|
1977
|
+
@EndTimeSort = params['EndTimeSort']
|
1978
|
+
@EndTime = params['EndTime']
|
1979
|
+
end
|
1980
|
+
end
|
1981
|
+
|
1982
|
+
# DescribePreReleaseList返回参数结构体
|
1983
|
+
class DescribePreReleaseListResponse < TencentCloud::Common::AbstractModel
|
1984
|
+
# @param TotalCount: 数量
|
1985
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1986
|
+
# @type TotalCount: Integer
|
1987
|
+
# @param PreReleaseList: 预释放列表
|
1988
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1989
|
+
# @type PreReleaseList: Array
|
1990
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1991
|
+
# @type RequestId: String
|
1992
|
+
|
1993
|
+
attr_accessor :TotalCount, :PreReleaseList, :RequestId
|
1994
|
+
|
1995
|
+
def initialize(totalcount=nil, prereleaselist=nil, requestid=nil)
|
1996
|
+
@TotalCount = totalcount
|
1997
|
+
@PreReleaseList = prereleaselist
|
1998
|
+
@RequestId = requestid
|
1999
|
+
end
|
2000
|
+
|
2001
|
+
def deserialize(params)
|
2002
|
+
@TotalCount = params['TotalCount']
|
2003
|
+
unless params['PreReleaseList'].nil?
|
2004
|
+
@PreReleaseList = []
|
2005
|
+
params['PreReleaseList'].each do |i|
|
2006
|
+
prereleaseinfo_tmp = PreReleaseInfo.new
|
2007
|
+
prereleaseinfo_tmp.deserialize(i)
|
2008
|
+
@PreReleaseList << prereleaseinfo_tmp
|
2009
|
+
end
|
2010
|
+
end
|
2011
|
+
@RequestId = params['RequestId']
|
2012
|
+
end
|
2013
|
+
end
|
2014
|
+
|
1313
2015
|
# DescribeReservedBidInfo请求参数结构体
|
1314
2016
|
class DescribeReservedBidInfoRequest < TencentCloud::Common::AbstractModel
|
1315
2017
|
# @param BusinessId: 业务ID
|
@@ -1578,6 +2280,82 @@ module TencentCloud
|
|
1578
2280
|
end
|
1579
2281
|
end
|
1580
2282
|
|
2283
|
+
# DescribeUnPreDomainDetail请求参数结构体
|
2284
|
+
class DescribeUnPreDomainDetailRequest < TencentCloud::Common::AbstractModel
|
2285
|
+
# @param Domain: 域名
|
2286
|
+
# @type Domain: String
|
2287
|
+
|
2288
|
+
attr_accessor :Domain
|
2289
|
+
|
2290
|
+
def initialize(domain=nil)
|
2291
|
+
@Domain = domain
|
2292
|
+
end
|
2293
|
+
|
2294
|
+
def deserialize(params)
|
2295
|
+
@Domain = params['Domain']
|
2296
|
+
end
|
2297
|
+
end
|
2298
|
+
|
2299
|
+
# DescribeUnPreDomainDetail返回参数结构体
|
2300
|
+
class DescribeUnPreDomainDetailResponse < TencentCloud::Common::AbstractModel
|
2301
|
+
# @param Domain: 域名
|
2302
|
+
# @type Domain: String
|
2303
|
+
# @param PreCount: 预约人数
|
2304
|
+
# @type PreCount: Integer
|
2305
|
+
# @param RegTime: 域名注册时间
|
2306
|
+
# @type RegTime: String
|
2307
|
+
# @param DeleteTime: 域名删除时间
|
2308
|
+
# @type DeleteTime: String
|
2309
|
+
# @param ExpireTime: 到期时间
|
2310
|
+
# @type ExpireTime: String
|
2311
|
+
# @param Status: 域名状态
|
2312
|
+
# @type Status: String
|
2313
|
+
# @param CurrentPrice: 域名价格
|
2314
|
+
# @type CurrentPrice: Float
|
2315
|
+
# @param AppointBondPrice: 域名保证金
|
2316
|
+
# @type AppointBondPrice: Float
|
2317
|
+
# @param IsAppoint: 是否已经预约
|
2318
|
+
# @type IsAppoint: Boolean
|
2319
|
+
# @param BusinessId: 业务ID
|
2320
|
+
# @type BusinessId: String
|
2321
|
+
# @param IsDomainUser: 是否为原持有者域名
|
2322
|
+
# @type IsDomainUser: Boolean
|
2323
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2324
|
+
# @type RequestId: String
|
2325
|
+
|
2326
|
+
attr_accessor :Domain, :PreCount, :RegTime, :DeleteTime, :ExpireTime, :Status, :CurrentPrice, :AppointBondPrice, :IsAppoint, :BusinessId, :IsDomainUser, :RequestId
|
2327
|
+
|
2328
|
+
def initialize(domain=nil, precount=nil, regtime=nil, deletetime=nil, expiretime=nil, status=nil, currentprice=nil, appointbondprice=nil, isappoint=nil, businessid=nil, isdomainuser=nil, requestid=nil)
|
2329
|
+
@Domain = domain
|
2330
|
+
@PreCount = precount
|
2331
|
+
@RegTime = regtime
|
2332
|
+
@DeleteTime = deletetime
|
2333
|
+
@ExpireTime = expiretime
|
2334
|
+
@Status = status
|
2335
|
+
@CurrentPrice = currentprice
|
2336
|
+
@AppointBondPrice = appointbondprice
|
2337
|
+
@IsAppoint = isappoint
|
2338
|
+
@BusinessId = businessid
|
2339
|
+
@IsDomainUser = isdomainuser
|
2340
|
+
@RequestId = requestid
|
2341
|
+
end
|
2342
|
+
|
2343
|
+
def deserialize(params)
|
2344
|
+
@Domain = params['Domain']
|
2345
|
+
@PreCount = params['PreCount']
|
2346
|
+
@RegTime = params['RegTime']
|
2347
|
+
@DeleteTime = params['DeleteTime']
|
2348
|
+
@ExpireTime = params['ExpireTime']
|
2349
|
+
@Status = params['Status']
|
2350
|
+
@CurrentPrice = params['CurrentPrice']
|
2351
|
+
@AppointBondPrice = params['AppointBondPrice']
|
2352
|
+
@IsAppoint = params['IsAppoint']
|
2353
|
+
@BusinessId = params['BusinessId']
|
2354
|
+
@IsDomainUser = params['IsDomainUser']
|
2355
|
+
@RequestId = params['RequestId']
|
2356
|
+
end
|
2357
|
+
end
|
2358
|
+
|
1581
2359
|
# 获取域名基础信息
|
1582
2360
|
class DomainBaseInfo < TencentCloud::Common::AbstractModel
|
1583
2361
|
# @param DomainId: 域名资源ID。
|
@@ -2257,6 +3035,110 @@ module TencentCloud
|
|
2257
3035
|
end
|
2258
3036
|
end
|
2259
3037
|
|
3038
|
+
# 预释放竞价列表
|
3039
|
+
class PreAuctionInfo < TencentCloud::Common::AbstractModel
|
3040
|
+
# @param Domain: 域名
|
3041
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3042
|
+
# @type Domain: String
|
3043
|
+
# @param BiddingTime: 竞价倒计时
|
3044
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3045
|
+
# @type BiddingTime: String
|
3046
|
+
# @param BidCount: 出价次数
|
3047
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3048
|
+
# @type BidCount: Integer
|
3049
|
+
# @param Price: 当前价格
|
3050
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3051
|
+
# @type Price: Float
|
3052
|
+
# @param Op: 用户操作 bid:出价 "noAction":无法操作
|
3053
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3054
|
+
# @type Op: String
|
3055
|
+
# @param BusinessId: 业务ID
|
3056
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3057
|
+
# @type BusinessId: String
|
3058
|
+
|
3059
|
+
attr_accessor :Domain, :BiddingTime, :BidCount, :Price, :Op, :BusinessId
|
3060
|
+
|
3061
|
+
def initialize(domain=nil, biddingtime=nil, bidcount=nil, price=nil, op=nil, businessid=nil)
|
3062
|
+
@Domain = domain
|
3063
|
+
@BiddingTime = biddingtime
|
3064
|
+
@BidCount = bidcount
|
3065
|
+
@Price = price
|
3066
|
+
@Op = op
|
3067
|
+
@BusinessId = businessid
|
3068
|
+
end
|
3069
|
+
|
3070
|
+
def deserialize(params)
|
3071
|
+
@Domain = params['Domain']
|
3072
|
+
@BiddingTime = params['BiddingTime']
|
3073
|
+
@BidCount = params['BidCount']
|
3074
|
+
@Price = params['Price']
|
3075
|
+
@Op = params['Op']
|
3076
|
+
@BusinessId = params['BusinessId']
|
3077
|
+
end
|
3078
|
+
end
|
3079
|
+
|
3080
|
+
# 预释放列表信息
|
3081
|
+
class PreReleaseInfo < TencentCloud::Common::AbstractModel
|
3082
|
+
# @param Domain: 域名
|
3083
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3084
|
+
# @type Domain: String
|
3085
|
+
# @param ReservationTime: 预订倒计时
|
3086
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3087
|
+
# @type ReservationTime: String
|
3088
|
+
# @param RegTime: 域名注册时间
|
3089
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3090
|
+
# @type RegTime: String
|
3091
|
+
# @param DelTime: 域名删除时间
|
3092
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3093
|
+
# @type DelTime: String
|
3094
|
+
# @param CurrentPeople: 当前人数
|
3095
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3096
|
+
# @type CurrentPeople: Integer
|
3097
|
+
# @param Price: 当前价格
|
3098
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3099
|
+
# @type Price: Float
|
3100
|
+
# @param IsFollow: 是否收藏
|
3101
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3102
|
+
# @type IsFollow: Boolean
|
3103
|
+
# @param IsAppoint: 是否已经预约
|
3104
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3105
|
+
# @type IsAppoint: Boolean
|
3106
|
+
# @param BusinessId: 业务ID
|
3107
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3108
|
+
# @type BusinessId: String
|
3109
|
+
# @param IsDomainUser: 是否为原持有者
|
3110
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3111
|
+
# @type IsDomainUser: Boolean
|
3112
|
+
|
3113
|
+
attr_accessor :Domain, :ReservationTime, :RegTime, :DelTime, :CurrentPeople, :Price, :IsFollow, :IsAppoint, :BusinessId, :IsDomainUser
|
3114
|
+
|
3115
|
+
def initialize(domain=nil, reservationtime=nil, regtime=nil, deltime=nil, currentpeople=nil, price=nil, isfollow=nil, isappoint=nil, businessid=nil, isdomainuser=nil)
|
3116
|
+
@Domain = domain
|
3117
|
+
@ReservationTime = reservationtime
|
3118
|
+
@RegTime = regtime
|
3119
|
+
@DelTime = deltime
|
3120
|
+
@CurrentPeople = currentpeople
|
3121
|
+
@Price = price
|
3122
|
+
@IsFollow = isfollow
|
3123
|
+
@IsAppoint = isappoint
|
3124
|
+
@BusinessId = businessid
|
3125
|
+
@IsDomainUser = isdomainuser
|
3126
|
+
end
|
3127
|
+
|
3128
|
+
def deserialize(params)
|
3129
|
+
@Domain = params['Domain']
|
3130
|
+
@ReservationTime = params['ReservationTime']
|
3131
|
+
@RegTime = params['RegTime']
|
3132
|
+
@DelTime = params['DelTime']
|
3133
|
+
@CurrentPeople = params['CurrentPeople']
|
3134
|
+
@Price = params['Price']
|
3135
|
+
@IsFollow = params['IsFollow']
|
3136
|
+
@IsAppoint = params['IsAppoint']
|
3137
|
+
@BusinessId = params['BusinessId']
|
3138
|
+
@IsDomainUser = params['IsDomainUser']
|
3139
|
+
end
|
3140
|
+
end
|
3141
|
+
|
2260
3142
|
# 域名价格信息
|
2261
3143
|
class PriceInfo < TencentCloud::Common::AbstractModel
|
2262
3144
|
# @param Tld: 域名后缀,例如.com
|
@@ -2289,6 +3171,38 @@ module TencentCloud
|
|
2289
3171
|
end
|
2290
3172
|
end
|
2291
3173
|
|
3174
|
+
# 预释放价格区间配置
|
3175
|
+
class PriceScopeConf < TencentCloud::Common::AbstractModel
|
3176
|
+
# @param MaxPrice: 最高价格
|
3177
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3178
|
+
# @type MaxPrice: Float
|
3179
|
+
# @param MinPrice: 最低价格
|
3180
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3181
|
+
# @type MinPrice: Float
|
3182
|
+
# @param Price: 价格幅度
|
3183
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3184
|
+
# @type Price: Float
|
3185
|
+
# @param DepositPrice: 保证金
|
3186
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3187
|
+
# @type DepositPrice: Float
|
3188
|
+
|
3189
|
+
attr_accessor :MaxPrice, :MinPrice, :Price, :DepositPrice
|
3190
|
+
|
3191
|
+
def initialize(maxprice=nil, minprice=nil, price=nil, depositprice=nil)
|
3192
|
+
@MaxPrice = maxprice
|
3193
|
+
@MinPrice = minprice
|
3194
|
+
@Price = price
|
3195
|
+
@DepositPrice = depositprice
|
3196
|
+
end
|
3197
|
+
|
3198
|
+
def deserialize(params)
|
3199
|
+
@MaxPrice = params['MaxPrice']
|
3200
|
+
@MinPrice = params['MinPrice']
|
3201
|
+
@Price = params['Price']
|
3202
|
+
@DepositPrice = params['DepositPrice']
|
3203
|
+
end
|
3204
|
+
end
|
3205
|
+
|
2292
3206
|
# RenewDomainBatch请求参数结构体
|
2293
3207
|
class RenewDomainBatchRequest < TencentCloud::Common::AbstractModel
|
2294
3208
|
# @param Period: 域名续费的年限。
|