Class: TencentCloud::Vod::V20180717::MPSSubTaskResult
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::MPSSubTaskResult
- Defined in:
- lib/v20180717/models.rb
Overview
MPS 具体子任务查询结果类型。
Instance Attribute Summary collapse
- #ErrCode ⇒ Object
- #Input ⇒ Object
- #Message ⇒ Object
- #Output ⇒ Object
- #Status ⇒ Object
- #TaskType ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tasktype = nil, status = nil, errcode = nil, message = nil, input = nil, output = nil) ⇒ MPSSubTaskResult
constructor
A new instance of MPSSubTaskResult.
Constructor Details
#initialize(tasktype = nil, status = nil, errcode = nil, message = nil, input = nil, output = nil) ⇒ MPSSubTaskResult
Returns a new instance of MPSSubTaskResult.
16388 16389 16390 16391 16392 16393 16394 16395 |
# File 'lib/v20180717/models.rb', line 16388 def initialize(tasktype=nil, status=nil, errcode=nil, =nil, input=nil, output=nil) @TaskType = tasktype @Status = status @ErrCode = errcode @Message = @Input = input @Output = output end |
Instance Attribute Details
#ErrCode ⇒ Object
16386 16387 16388 |
# File 'lib/v20180717/models.rb', line 16386 def ErrCode @ErrCode end |
#Input ⇒ Object
16386 16387 16388 |
# File 'lib/v20180717/models.rb', line 16386 def Input @Input end |
#Message ⇒ Object
16386 16387 16388 |
# File 'lib/v20180717/models.rb', line 16386 def Message @Message end |
#Output ⇒ Object
16386 16387 16388 |
# File 'lib/v20180717/models.rb', line 16386 def Output @Output end |
#Status ⇒ Object
16386 16387 16388 |
# File 'lib/v20180717/models.rb', line 16386 def Status @Status end |
#TaskType ⇒ Object
16386 16387 16388 |
# File 'lib/v20180717/models.rb', line 16386 def TaskType @TaskType end |
Instance Method Details
#deserialize(params) ⇒ Object
16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 |
# File 'lib/v20180717/models.rb', line 16397 def deserialize(params) @TaskType = params['TaskType'] @Status = params['Status'] @ErrCode = params['ErrCode'] @Message = params['Message'] @Input = params['Input'] unless params['Output'].nil? @Output = MPSTaskOutput.new @Output.deserialize(params['Output']) end end |