Class: TencentCloud::Mps::V20190612::ActivityResult
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::ActivityResult
- Defined in:
- lib/v20190612/models.rb
Overview
编排任务输出
Instance Attribute Summary collapse
-
#ActivityResItem ⇒ Object
- Transcode:转码。
- SampleSnapshot:采样截图。
- AnimatedGraphics:转动图。
- SnapshotByTimeOffset:时间点截图。
- ImageSprites:雪碧图。
- AdaptiveDynamicStreaming:自适应码流。
- AiContentReview:内容审核。
- AIRecognition:智能识别。
- AIAnalysis:智能分析。
- AiQualityControl:媒体质检。
- SmartSubtitles:智能字幕。
- SmartErase:智能擦除。
. -
#ActivityType ⇒ Object
- Transcode:转码。
- SampleSnapshot:采样截图。
- AnimatedGraphics:转动图。
- SnapshotByTimeOffset:时间点截图。
- ImageSprites:雪碧图。
- AdaptiveDynamicStreaming:自适应码流。
- AiContentReview:内容审核。
- AIRecognition:智能识别。
- AIAnalysis:智能分析。
- AiQualityControl:媒体质检。
- SmartSubtitles:智能字幕。
- SmartErase:智能擦除。
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(activitytype = nil, activityresitem = nil) ⇒ ActivityResult
constructor
A new instance of ActivityResult.
Constructor Details
#initialize(activitytype = nil, activityresitem = nil) ⇒ ActivityResult
Returns a new instance of ActivityResult.
489 490 491 492 |
# File 'lib/v20190612/models.rb', line 489 def initialize(activitytype=nil, activityresitem=nil) @ActivityType = activitytype @ActivityResItem = activityresitem end |
Instance Attribute Details
#ActivityResItem ⇒ Object
487 488 489 |
# File 'lib/v20190612/models.rb', line 487 def ActivityResItem @ActivityResItem end |
#ActivityType ⇒ Object
487 488 489 |
# File 'lib/v20190612/models.rb', line 487 def ActivityType @ActivityType end |
Instance Method Details
#deserialize(params) ⇒ Object
494 495 496 497 498 499 500 |
# File 'lib/v20190612/models.rb', line 494 def deserialize(params) @ActivityType = params['ActivityType'] unless params['ActivityResItem'].nil? @ActivityResItem = ActivityResItem.new @ActivityResItem.deserialize(params['ActivityResItem']) end end |