Class: TencentCloud::Mps::V20190612::SmartSubtitleTaskFullTextResult
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::SmartSubtitleTaskFullTextResult
- Defined in:
- lib/v20190612/models.rb
Overview
智能字幕全文识别结果。
Instance Attribute Summary collapse
-
#ErrCode ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#ErrCodeExt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Input ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Message ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Output ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Progress ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(status = nil, errcodeext = nil, errcode = nil, message = nil, input = nil, output = nil, progress = nil) ⇒ SmartSubtitleTaskFullTextResult
constructor
A new instance of SmartSubtitleTaskFullTextResult.
Constructor Details
#initialize(status = nil, errcodeext = nil, errcode = nil, message = nil, input = nil, output = nil, progress = nil) ⇒ SmartSubtitleTaskFullTextResult
Returns a new instance of SmartSubtitleTaskFullTextResult.
28469 28470 28471 28472 28473 28474 28475 28476 28477 |
# File 'lib/v20190612/models.rb', line 28469 def initialize(status=nil, errcodeext=nil, errcode=nil, =nil, input=nil, output=nil, progress=nil) @Status = status @ErrCodeExt = errcodeext @ErrCode = errcode @Message = @Input = input @Output = output @Progress = progress end |
Instance Attribute Details
#ErrCode ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28467 28468 28469 |
# File 'lib/v20190612/models.rb', line 28467 def ErrCode @ErrCode end |
#ErrCodeExt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28467 28468 28469 |
# File 'lib/v20190612/models.rb', line 28467 def ErrCodeExt @ErrCodeExt end |
#Input ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28467 28468 28469 |
# File 'lib/v20190612/models.rb', line 28467 def Input @Input end |
#Message ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28467 28468 28469 |
# File 'lib/v20190612/models.rb', line 28467 def Message @Message end |
#Output ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28467 28468 28469 |
# File 'lib/v20190612/models.rb', line 28467 def Output @Output end |
#Progress ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28467 28468 28469 |
# File 'lib/v20190612/models.rb', line 28467 def Progress @Progress end |
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28467 28468 28469 |
# File 'lib/v20190612/models.rb', line 28467 def Status @Status end |
Instance Method Details
#deserialize(params) ⇒ Object
28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 |
# File 'lib/v20190612/models.rb', line 28479 def deserialize(params) @Status = params['Status'] @ErrCodeExt = params['ErrCodeExt'] @ErrCode = params['ErrCode'] @Message = params['Message'] unless params['Input'].nil? @Input = SmartSubtitleTaskResultInput.new @Input.deserialize(params['Input']) end unless params['Output'].nil? @Output = SmartSubtitleTaskTextResultOutput.new @Output.deserialize(params['Output']) end @Progress = params['Progress'] end |