tencentcloud-sdk-tiia 1.0.349 → 1.0.350
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/v20190529/models.rb +14 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e78886d80ed096447f90c353a64c960041d72c36
|
4
|
+
data.tar.gz: 54d53efd540e99a9465e60108ce56f3a2ce9a363
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc8eb89c17b9c12a86c06059f7f1e2d7c42edd40802cee7bf13f287bfb7e7e4e2d1ead77220635e74ea950760e66d9768618960f19a3edbacb6d390796ebb624
|
7
|
+
data.tar.gz: 4987937750c9ae530f8f50a64fcb1e1f3a37c44c6caef6937d951328a3852dc65333bfa990c083896ca5836ff27a7d3d0014c88e443c36e7a6562e8e30203af4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.350
|
data/lib/v20190529/models.rb
CHANGED
@@ -1679,14 +1679,18 @@ module TencentCloud
|
|
1679
1679
|
# @type Colors: Array
|
1680
1680
|
# @param Attributes: 属性信息。
|
1681
1681
|
# @type Attributes: Array
|
1682
|
+
# @param AllBox: 图像的所有主体区域。
|
1683
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1684
|
+
# @type AllBox: Array
|
1682
1685
|
|
1683
|
-
attr_accessor :Box, :CategoryId, :Colors, :Attributes
|
1686
|
+
attr_accessor :Box, :CategoryId, :Colors, :Attributes, :AllBox
|
1684
1687
|
|
1685
|
-
def initialize(box=nil, categoryid=nil, colors=nil, attributes=nil)
|
1688
|
+
def initialize(box=nil, categoryid=nil, colors=nil, attributes=nil, allbox=nil)
|
1686
1689
|
@Box = box
|
1687
1690
|
@CategoryId = categoryid
|
1688
1691
|
@Colors = colors
|
1689
1692
|
@Attributes = attributes
|
1693
|
+
@AllBox = allbox
|
1690
1694
|
end
|
1691
1695
|
|
1692
1696
|
def deserialize(params)
|
@@ -1711,6 +1715,14 @@ module TencentCloud
|
|
1711
1715
|
@Attributes << attribute_tmp
|
1712
1716
|
end
|
1713
1717
|
end
|
1718
|
+
unless params['AllBox'].nil?
|
1719
|
+
@AllBox = []
|
1720
|
+
params['AllBox'].each do |i|
|
1721
|
+
box_tmp = Box.new
|
1722
|
+
box_tmp.deserialize(i)
|
1723
|
+
@AllBox << box_tmp
|
1724
|
+
end
|
1725
|
+
end
|
1714
1726
|
end
|
1715
1727
|
end
|
1716
1728
|
|