Class: TencentCloud::Mps::V20190612::AiAnalysisTaskCutoutResult
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::AiAnalysisTaskCutoutResult
- Defined in:
- lib/v20190612/models.rb
Overview
视频智能抠图结果数据结构
Instance Attribute Summary collapse
-
#BeginProcessTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#ErrCodeExt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#FinishTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Input ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Message ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Output ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Progress ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(status = nil, errcodeext = nil, message = nil, input = nil, output = nil, progress = nil, beginprocesstime = nil, finishtime = nil) ⇒ AiAnalysisTaskCutoutResult
constructor
A new instance of AiAnalysisTaskCutoutResult.
Constructor Details
#initialize(status = nil, errcodeext = nil, message = nil, input = nil, output = nil, progress = nil, beginprocesstime = nil, finishtime = nil) ⇒ AiAnalysisTaskCutoutResult
Returns a new instance of AiAnalysisTaskCutoutResult.
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 |
# File 'lib/v20190612/models.rb', line 1354 def initialize(status=nil, errcodeext=nil, =nil, input=nil, output=nil, progress=nil, beginprocesstime=nil, finishtime=nil) @Status = status @ErrCodeExt = errcodeext @Message = @Input = input @Output = output @Progress = progress @BeginProcessTime = beginprocesstime @FinishTime = finishtime end |
Instance Attribute Details
#BeginProcessTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1352 1353 1354 |
# File 'lib/v20190612/models.rb', line 1352 def BeginProcessTime @BeginProcessTime end |
#ErrCodeExt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1352 1353 1354 |
# File 'lib/v20190612/models.rb', line 1352 def ErrCodeExt @ErrCodeExt end |
#FinishTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1352 1353 1354 |
# File 'lib/v20190612/models.rb', line 1352 def FinishTime @FinishTime end |
#Input ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1352 1353 1354 |
# File 'lib/v20190612/models.rb', line 1352 def Input @Input end |
#Message ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1352 1353 1354 |
# File 'lib/v20190612/models.rb', line 1352 def Message @Message end |
#Output ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1352 1353 1354 |
# File 'lib/v20190612/models.rb', line 1352 def Output @Output end |
#Progress ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1352 1353 1354 |
# File 'lib/v20190612/models.rb', line 1352 def Progress @Progress end |
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1352 1353 1354 |
# File 'lib/v20190612/models.rb', line 1352 def Status @Status end |
Instance Method Details
#deserialize(params) ⇒ Object
1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 |
# File 'lib/v20190612/models.rb', line 1365 def deserialize(params) @Status = params['Status'] @ErrCodeExt = params['ErrCodeExt'] @Message = params['Message'] unless params['Input'].nil? @Input = AiAnalysisTaskCutoutInput.new @Input.deserialize(params['Input']) end unless params['Output'].nil? @Output = AiAnalysisTaskCutoutOutput.new @Output.deserialize(params['Output']) end @Progress = params['Progress'] @BeginProcessTime = params['BeginProcessTime'] @FinishTime = params['FinishTime'] end |