tencentcloud-sdk-taf 1.0.229 → 1.0.230
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200210/models.rb +33 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a145b7106044a04ec71d0681762ce4d0ebfc5b5e
|
4
|
+
data.tar.gz: 8c243bc1902d58f090ed2225e78dd2dd20eda736
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac0b37f50ef22e93fffa64ba267c0cb795567777fe45d9efc2fbedc915a8c35a49505f8ef37af8effe6e3ed21754b5e28ab3d6d3ecf947516a8223cc04ef9fa8
|
7
|
+
data.tar.gz: dc14327cb3b862f0a35e9dcc4accb57fe4c0f3bce99100b25650fa781f2d50b1a33c59f97813d55a7956f8c9bba00a27bb512833006a6de4bf001e189e051aa9
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.230
|
data/lib/v20200210/models.rb
CHANGED
@@ -67,6 +67,26 @@ module TencentCloud
|
|
67
67
|
end
|
68
68
|
end
|
69
69
|
|
70
|
+
# 业务入参
|
71
|
+
class Device < TencentCloud::Common::AbstractModel
|
72
|
+
# @param DeviceId: 业务入参id
|
73
|
+
# @type DeviceId: String
|
74
|
+
# @param DeviceType: 业务入参类型
|
75
|
+
# @type DeviceType: Integer
|
76
|
+
|
77
|
+
attr_accessor :DeviceId, :DeviceType
|
78
|
+
|
79
|
+
def initialize(deviceid=nil, devicetype=nil)
|
80
|
+
@DeviceId = deviceid
|
81
|
+
@DeviceType = devicetype
|
82
|
+
end
|
83
|
+
|
84
|
+
def deserialize(params)
|
85
|
+
@DeviceId = params['DeviceId']
|
86
|
+
@DeviceType = params['DeviceType']
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
70
90
|
# EnhanceTaDegree请求参数结构体
|
71
91
|
class EnhanceTaDegreeRequest < TencentCloud::Common::AbstractModel
|
72
92
|
# @param BspData: 业务数据
|
@@ -278,10 +298,12 @@ module TencentCloud
|
|
278
298
|
# @type ReqType: Integer
|
279
299
|
# @param IsAuthorized: 用户是否授权,1为授权,0为未授权
|
280
300
|
# @type IsAuthorized: Integer
|
301
|
+
# @param DeviceList: 设备信息
|
302
|
+
# @type DeviceList: Array
|
281
303
|
|
282
|
-
attr_accessor :Uid, :AccountType, :ModelIdList, :Ip, :Os, :Osv, :Lat, :Lon, :DeviceModel, :BidFloor, :Age, :Gender, :Location, :DeliveryMode, :AdvertisingType, :Mac, :Phone, :Ua, :App, :Package, :Maker, :DeviceType, :AccessMode, :Sp, :DeviceW, :DeviceH, :FullScreen, :ImpBannerW, :ImpBannerH, :Url, :Context, :Channel, :ReqId, :ReqMd5, :AdType, :AppName, :AppVer, :ReqType, :IsAuthorized
|
304
|
+
attr_accessor :Uid, :AccountType, :ModelIdList, :Ip, :Os, :Osv, :Lat, :Lon, :DeviceModel, :BidFloor, :Age, :Gender, :Location, :DeliveryMode, :AdvertisingType, :Mac, :Phone, :Ua, :App, :Package, :Maker, :DeviceType, :AccessMode, :Sp, :DeviceW, :DeviceH, :FullScreen, :ImpBannerW, :ImpBannerH, :Url, :Context, :Channel, :ReqId, :ReqMd5, :AdType, :AppName, :AppVer, :ReqType, :IsAuthorized, :DeviceList
|
283
305
|
|
284
|
-
def initialize(uid=nil, accounttype=nil, modelidlist=nil, ip=nil, os=nil, osv=nil, lat=nil, lon=nil, devicemodel=nil, bidfloor=nil, age=nil, gender=nil, location=nil, deliverymode=nil, advertisingtype=nil, mac=nil, phone=nil, ua=nil, app=nil, package=nil, maker=nil, devicetype=nil, accessmode=nil, sp=nil, devicew=nil, deviceh=nil, fullscreen=nil, impbannerw=nil, impbannerh=nil, url=nil, context=nil, channel=nil, reqid=nil, reqmd5=nil, adtype=nil, appname=nil, appver=nil, reqtype=nil, isauthorized=nil)
|
306
|
+
def initialize(uid=nil, accounttype=nil, modelidlist=nil, ip=nil, os=nil, osv=nil, lat=nil, lon=nil, devicemodel=nil, bidfloor=nil, age=nil, gender=nil, location=nil, deliverymode=nil, advertisingtype=nil, mac=nil, phone=nil, ua=nil, app=nil, package=nil, maker=nil, devicetype=nil, accessmode=nil, sp=nil, devicew=nil, deviceh=nil, fullscreen=nil, impbannerw=nil, impbannerh=nil, url=nil, context=nil, channel=nil, reqid=nil, reqmd5=nil, adtype=nil, appname=nil, appver=nil, reqtype=nil, isauthorized=nil, devicelist=nil)
|
285
307
|
@Uid = uid
|
286
308
|
@AccountType = accounttype
|
287
309
|
@ModelIdList = modelidlist
|
@@ -321,6 +343,7 @@ module TencentCloud
|
|
321
343
|
@AppVer = appver
|
322
344
|
@ReqType = reqtype
|
323
345
|
@IsAuthorized = isauthorized
|
346
|
+
@DeviceList = devicelist
|
324
347
|
end
|
325
348
|
|
326
349
|
def deserialize(params)
|
@@ -363,6 +386,14 @@ module TencentCloud
|
|
363
386
|
@AppVer = params['AppVer']
|
364
387
|
@ReqType = params['ReqType']
|
365
388
|
@IsAuthorized = params['IsAuthorized']
|
389
|
+
unless params['DeviceList'].nil?
|
390
|
+
@DeviceList = []
|
391
|
+
params['DeviceList'].each do |i|
|
392
|
+
device_tmp = Device.new
|
393
|
+
device_tmp.deserialize(i)
|
394
|
+
@DeviceList << device_tmp
|
395
|
+
end
|
396
|
+
end
|
366
397
|
end
|
367
398
|
end
|
368
399
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-taf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.230
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|