Class: TencentCloud::Mps::V20190612::AiAnalysisTaskReelOutput
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::AiAnalysisTaskReelOutput
- Defined in:
- lib/v20190612/models.rb
Overview
AI解说二创结果信息
Instance Attribute Summary collapse
-
#OutputStorage ⇒ Object
注意: 1.
-
#ScriptPath ⇒ Object
注意: 1.
-
#VideoPath ⇒ Object
注意: 1.
-
#VideoPaths ⇒ Object
注意: 1.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(videopath = nil, videopaths = nil, scriptpath = nil, outputstorage = nil) ⇒ AiAnalysisTaskReelOutput
constructor
A new instance of AiAnalysisTaskReelOutput.
Constructor Details
#initialize(videopath = nil, videopaths = nil, scriptpath = nil, outputstorage = nil) ⇒ AiAnalysisTaskReelOutput
Returns a new instance of AiAnalysisTaskReelOutput.
2045 2046 2047 2048 2049 2050 |
# File 'lib/v20190612/models.rb', line 2045 def initialize(videopath=nil, videopaths=nil, scriptpath=nil, outputstorage=nil) @VideoPath = videopath @VideoPaths = videopaths @ScriptPath = scriptpath @OutputStorage = outputstorage end |
Instance Attribute Details
#OutputStorage ⇒ Object
注意:
- 当返回一个文件时,
VideoPath返回一个文件路径,VideoPaths也会填充同样路径的一个元素。 - 当返回多个文件时,
VideoPath返回为空字符串,VideoPaths返回多文件路径列表。
2043 2044 2045 |
# File 'lib/v20190612/models.rb', line 2043 def OutputStorage @OutputStorage end |
#ScriptPath ⇒ Object
注意:
- 当返回一个文件时,
VideoPath返回一个文件路径,VideoPaths也会填充同样路径的一个元素。 - 当返回多个文件时,
VideoPath返回为空字符串,VideoPaths返回多文件路径列表。
2043 2044 2045 |
# File 'lib/v20190612/models.rb', line 2043 def ScriptPath @ScriptPath end |
#VideoPath ⇒ Object
注意:
- 当返回一个文件时,
VideoPath返回一个文件路径,VideoPaths也会填充同样路径的一个元素。 - 当返回多个文件时,
VideoPath返回为空字符串,VideoPaths返回多文件路径列表。
2043 2044 2045 |
# File 'lib/v20190612/models.rb', line 2043 def VideoPath @VideoPath end |
#VideoPaths ⇒ Object
注意:
- 当返回一个文件时,
VideoPath返回一个文件路径,VideoPaths也会填充同样路径的一个元素。 - 当返回多个文件时,
VideoPath返回为空字符串,VideoPaths返回多文件路径列表。
2043 2044 2045 |
# File 'lib/v20190612/models.rb', line 2043 def VideoPaths @VideoPaths end |
Instance Method Details
#deserialize(params) ⇒ Object
2052 2053 2054 2055 2056 2057 2058 2059 2060 |
# File 'lib/v20190612/models.rb', line 2052 def deserialize(params) @VideoPath = params['VideoPath'] @VideoPaths = params['VideoPaths'] @ScriptPath = params['ScriptPath'] unless params['OutputStorage'].nil? @OutputStorage = TaskOutputStorage.new @OutputStorage.deserialize(params['OutputStorage']) end end |