Class: TencentCloud::Cme::V20191029::VideoExportCompletedEvent
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::VideoExportCompletedEvent
- Defined in:
- lib/v20191029/models.rb
Overview
视频导出完成事件。
Instance Attribute Summary collapse
-
#ErrCode ⇒ Object
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。. -
#ErrMsg ⇒ Object
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。. -
#Output ⇒ Object
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。. -
#Status ⇒ Object
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。. -
#TaskId ⇒ Object
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(taskid = nil, status = nil, errcode = nil, errmsg = nil, output = nil) ⇒ VideoExportCompletedEvent
constructor
A new instance of VideoExportCompletedEvent.
Constructor Details
#initialize(taskid = nil, status = nil, errcode = nil, errmsg = nil, output = nil) ⇒ VideoExportCompletedEvent
Returns a new instance of VideoExportCompletedEvent.
6526 6527 6528 6529 6530 6531 6532 |
# File 'lib/v20191029/models.rb', line 6526 def initialize(taskid=nil, status=nil, errcode=nil, errmsg=nil, output=nil) @TaskId = taskid @Status = status @ErrCode = errcode @ErrMsg = errmsg @Output = output end |
Instance Attribute Details
#ErrCode ⇒ Object
6524 6525 6526 |
# File 'lib/v20191029/models.rb', line 6524 def ErrCode @ErrCode end |
#ErrMsg ⇒ Object
6524 6525 6526 |
# File 'lib/v20191029/models.rb', line 6524 def ErrMsg @ErrMsg end |
#Output ⇒ Object
6524 6525 6526 |
# File 'lib/v20191029/models.rb', line 6524 def Output @Output end |
#Status ⇒ Object
6524 6525 6526 |
# File 'lib/v20191029/models.rb', line 6524 def Status @Status end |
#TaskId ⇒ Object
6524 6525 6526 |
# File 'lib/v20191029/models.rb', line 6524 def TaskId @TaskId end |
Instance Method Details
#deserialize(params) ⇒ Object
6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 |
# File 'lib/v20191029/models.rb', line 6534 def deserialize(params) @TaskId = params['TaskId'] @Status = params['Status'] @ErrCode = params['ErrCode'] @ErrMsg = params['ErrMsg'] unless params['Output'].nil? @Output = VideoEditProjectOutput.new @Output.deserialize(params['Output']) end end |