tencentcloud-sdk-hunyuan 3.0.1094 → 3.0.1105
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/v20230901/models.rb +34 -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: 2adf811e4371efc5cec1e34c00a89c9fce73a856
|
4
|
+
data.tar.gz: feaf51430f67e1202ed7ee864a90645d03b9dbc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2eefaa6588267000c45663990d5809430ecadcdd3ef35ee852abf6053cc006f9b0961a4e46a1118aaf61b2466df3bbf1c712bcace6032504c78f73ed45514c72
|
7
|
+
data.tar.gz: 19a2e1de77f0987e731eba9855de493a4b7577061acf9d3472388310cb818799a8aa327451fc0764d0c612bed001f79b0df7c1d2cf84081e4f251c21aa5703e4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1105
|
data/lib/v20230901/models.rb
CHANGED
@@ -1858,11 +1858,21 @@ module TencentCloud
|
|
1858
1858
|
# 说明:
|
1859
1859
|
# 1. type 为 image 时,地址为图片的预览地址;其他类型时,地址为封面图地址。
|
1860
1860
|
# @type Url: String
|
1861
|
+
# @param Width: 如果Url为图片地址,标识图片宽度。
|
1862
|
+
# @type Width: Integer
|
1863
|
+
# @param Height: 如果Url为图片地址,标识图片高度。
|
1864
|
+
# @type Height: Integer
|
1861
1865
|
# @param JumpUrl: 多媒体详情地址。
|
1862
1866
|
# 说明:
|
1863
1867
|
# 1. 仅 type 为 image 时,该字段有值。
|
1864
1868
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1865
1869
|
# @type JumpUrl: String
|
1870
|
+
# @param ThumbURL: 缩略图地址。
|
1871
|
+
# @type ThumbURL: String
|
1872
|
+
# @param ThumbWidth: 缩略图宽度
|
1873
|
+
# @type ThumbWidth: Integer
|
1874
|
+
# @param ThumbHeight: 缩略图高度
|
1875
|
+
# @type ThumbHeight: Integer
|
1866
1876
|
# @param Title: 名称。
|
1867
1877
|
# 说明:
|
1868
1878
|
# 1. type 为 image 时,该字段为空。
|
@@ -1881,23 +1891,42 @@ module TencentCloud
|
|
1881
1891
|
# 1. 仅 type 为 music 时,该字段有值。
|
1882
1892
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1883
1893
|
# @type Ext: :class:`Tencentcloud::Hunyuan.v20230901.models.SongExt`
|
1894
|
+
# @param PublishTime: 发布时间。
|
1895
|
+
# @type PublishTime: String
|
1896
|
+
# @param SiteName: 站点名称
|
1897
|
+
# @type SiteName: String
|
1898
|
+
# @param SiteIcon: 站点图标
|
1899
|
+
# @type SiteIcon: String
|
1884
1900
|
|
1885
|
-
attr_accessor :Type, :Url, :JumpUrl, :Title, :Desc, :Singer, :Ext
|
1901
|
+
attr_accessor :Type, :Url, :Width, :Height, :JumpUrl, :ThumbURL, :ThumbWidth, :ThumbHeight, :Title, :Desc, :Singer, :Ext, :PublishTime, :SiteName, :SiteIcon
|
1886
1902
|
|
1887
|
-
def initialize(type=nil, url=nil, jumpurl=nil, title=nil, desc=nil, singer=nil, ext=nil)
|
1903
|
+
def initialize(type=nil, url=nil, width=nil, height=nil, jumpurl=nil, thumburl=nil, thumbwidth=nil, thumbheight=nil, title=nil, desc=nil, singer=nil, ext=nil, publishtime=nil, sitename=nil, siteicon=nil)
|
1888
1904
|
@Type = type
|
1889
1905
|
@Url = url
|
1906
|
+
@Width = width
|
1907
|
+
@Height = height
|
1890
1908
|
@JumpUrl = jumpurl
|
1909
|
+
@ThumbURL = thumburl
|
1910
|
+
@ThumbWidth = thumbwidth
|
1911
|
+
@ThumbHeight = thumbheight
|
1891
1912
|
@Title = title
|
1892
1913
|
@Desc = desc
|
1893
1914
|
@Singer = singer
|
1894
1915
|
@Ext = ext
|
1916
|
+
@PublishTime = publishtime
|
1917
|
+
@SiteName = sitename
|
1918
|
+
@SiteIcon = siteicon
|
1895
1919
|
end
|
1896
1920
|
|
1897
1921
|
def deserialize(params)
|
1898
1922
|
@Type = params['Type']
|
1899
1923
|
@Url = params['Url']
|
1924
|
+
@Width = params['Width']
|
1925
|
+
@Height = params['Height']
|
1900
1926
|
@JumpUrl = params['JumpUrl']
|
1927
|
+
@ThumbURL = params['ThumbURL']
|
1928
|
+
@ThumbWidth = params['ThumbWidth']
|
1929
|
+
@ThumbHeight = params['ThumbHeight']
|
1901
1930
|
@Title = params['Title']
|
1902
1931
|
@Desc = params['Desc']
|
1903
1932
|
@Singer = params['Singer']
|
@@ -1905,6 +1934,9 @@ module TencentCloud
|
|
1905
1934
|
@Ext = SongExt.new
|
1906
1935
|
@Ext.deserialize(params['Ext'])
|
1907
1936
|
end
|
1937
|
+
@PublishTime = params['PublishTime']
|
1938
|
+
@SiteName = params['SiteName']
|
1939
|
+
@SiteIcon = params['SiteIcon']
|
1908
1940
|
end
|
1909
1941
|
end
|
1910
1942
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-hunyuan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1105
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|