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.
28123 28124 28125 28126 28127 28128 28129 28130 28131 |
# File 'lib/v20190612/models.rb', line 28123 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,表示取不到有效值。
28121 28122 28123 |
# File 'lib/v20190612/models.rb', line 28121 def ErrCode @ErrCode end |
#ErrCodeExt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28121 28122 28123 |
# File 'lib/v20190612/models.rb', line 28121 def ErrCodeExt @ErrCodeExt end |
#Input ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28121 28122 28123 |
# File 'lib/v20190612/models.rb', line 28121 def Input @Input end |
#Message ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28121 28122 28123 |
# File 'lib/v20190612/models.rb', line 28121 def Message @Message end |
#Output ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28121 28122 28123 |
# File 'lib/v20190612/models.rb', line 28121 def Output @Output end |
#Progress ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28121 28122 28123 |
# File 'lib/v20190612/models.rb', line 28121 def Progress @Progress end |
#Status ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
28121 28122 28123 |
# File 'lib/v20190612/models.rb', line 28121 def Status @Status end |
Instance Method Details
#deserialize(params) ⇒ Object
28133 28134 28135 28136 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 |
# File 'lib/v20190612/models.rb', line 28133 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 |