Class: TencentCloud::Mps::V20190612::AiAnalysisTaskDubbingOutput
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::AiAnalysisTaskDubbingOutput
- Defined in:
- lib/v20190612/models.rb
Overview
智能译制结果信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(videopath = nil, speakerpath = nil, outputstorage = nil) ⇒ AiAnalysisTaskDubbingOutput
constructor
A new instance of AiAnalysisTaskDubbingOutput.
Constructor Details
#initialize(videopath = nil, speakerpath = nil, outputstorage = nil) ⇒ AiAnalysisTaskDubbingOutput
Returns a new instance of AiAnalysisTaskDubbingOutput.
1565 1566 1567 1568 1569 |
# File 'lib/v20190612/models.rb', line 1565 def initialize(videopath=nil, speakerpath=nil, outputstorage=nil) @VideoPath = videopath @SpeakerPath = speakerpath @OutputStorage = outputstorage end |
Instance Attribute Details
#OutputStorage ⇒ Object
1563 1564 1565 |
# File 'lib/v20190612/models.rb', line 1563 def OutputStorage @OutputStorage end |
#SpeakerPath ⇒ Object
1563 1564 1565 |
# File 'lib/v20190612/models.rb', line 1563 def SpeakerPath @SpeakerPath end |
#VideoPath ⇒ Object
1563 1564 1565 |
# File 'lib/v20190612/models.rb', line 1563 def VideoPath @VideoPath end |
Instance Method Details
#deserialize(params) ⇒ Object
1571 1572 1573 1574 1575 1576 1577 1578 |
# File 'lib/v20190612/models.rb', line 1571 def deserialize(params) @VideoPath = params['VideoPath'] @SpeakerPath = params['SpeakerPath'] unless params['OutputStorage'].nil? @OutputStorage = TaskOutputStorage.new @OutputStorage.deserialize(params['OutputStorage']) end end |