Class: TencentCloud::Mps::V20190612::EditMediaTask
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::EditMediaTask
- Defined in:
- lib/v20190612/models.rb
Overview
编辑视频任务信息
Instance Attribute Summary collapse
-
#ErrCode ⇒ Object
- PROCESSING:处理中;
- FINISH:已完成。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。. -
#Input ⇒ Object
- PROCESSING:处理中;
- FINISH:已完成。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。. -
#Message ⇒ Object
- PROCESSING:处理中;
- FINISH:已完成。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。. -
#Output ⇒ Object
- PROCESSING:处理中;
- FINISH:已完成。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。. -
#Status ⇒ Object
- PROCESSING:处理中;
- FINISH:已完成。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。. -
#TaskId ⇒ Object
- PROCESSING:处理中;
- FINISH:已完成。
- 0:成功;
- 其他值:失败。
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(taskid = nil, status = nil, errcode = nil, message = nil, input = nil, output = nil) ⇒ EditMediaTask
constructor
A new instance of EditMediaTask.
Constructor Details
#initialize(taskid = nil, status = nil, errcode = nil, message = nil, input = nil, output = nil) ⇒ EditMediaTask
Returns a new instance of EditMediaTask.
16059 16060 16061 16062 16063 16064 16065 16066 |
# File 'lib/v20190612/models.rb', line 16059 def initialize(taskid=nil, status=nil, errcode=nil, =nil, input=nil, output=nil) @TaskId = taskid @Status = status @ErrCode = errcode @Message = @Input = input @Output = output end |
Instance Attribute Details
#ErrCode ⇒ Object
16057 16058 16059 |
# File 'lib/v20190612/models.rb', line 16057 def ErrCode @ErrCode end |
#Input ⇒ Object
16057 16058 16059 |
# File 'lib/v20190612/models.rb', line 16057 def Input @Input end |
#Message ⇒ Object
16057 16058 16059 |
# File 'lib/v20190612/models.rb', line 16057 def Message @Message end |
#Output ⇒ Object
16057 16058 16059 |
# File 'lib/v20190612/models.rb', line 16057 def Output @Output end |
#Status ⇒ Object
16057 16058 16059 |
# File 'lib/v20190612/models.rb', line 16057 def Status @Status end |
#TaskId ⇒ Object
16057 16058 16059 |
# File 'lib/v20190612/models.rb', line 16057 def TaskId @TaskId end |
Instance Method Details
#deserialize(params) ⇒ Object
16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 |
# File 'lib/v20190612/models.rb', line 16068 def deserialize(params) @TaskId = params['TaskId'] @Status = params['Status'] @ErrCode = params['ErrCode'] @Message = params['Message'] unless params['Input'].nil? @Input = EditMediaTaskInput.new @Input.deserialize(params['Input']) end unless params['Output'].nil? @Output = EditMediaTaskOutput.new @Output.deserialize(params['Output']) end end |