Class: TencentCloud::Tms::V20201229::SentimentAnalysis
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tms::V20201229::SentimentAnalysis
- Defined in:
- lib/v20201229/models.rb
Overview
情感分析结果
Instance Attribute Summary collapse
-
#Code ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Detail ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Label ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Message ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Score ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(label = nil, score = nil, detail = nil, code = nil, message = nil) ⇒ SentimentAnalysis
constructor
A new instance of SentimentAnalysis.
Constructor Details
#initialize(label = nil, score = nil, detail = nil, code = nil, message = nil) ⇒ SentimentAnalysis
Returns a new instance of SentimentAnalysis.
237 238 239 240 241 242 243 |
# File 'lib/v20201229/models.rb', line 237 def initialize(label=nil, score=nil, detail=nil, code=nil, =nil) @Label = label @Score = score @Detail = detail @Code = code @Message = end |
Instance Attribute Details
#Code ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
235 236 237 |
# File 'lib/v20201229/models.rb', line 235 def Code @Code end |
#Detail ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
235 236 237 |
# File 'lib/v20201229/models.rb', line 235 def Detail @Detail end |
#Label ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
235 236 237 |
# File 'lib/v20201229/models.rb', line 235 def Label @Label end |
#Message ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
235 236 237 |
# File 'lib/v20201229/models.rb', line 235 def Message @Message end |
#Score ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
235 236 237 |
# File 'lib/v20201229/models.rb', line 235 def Score @Score end |
Instance Method Details
#deserialize(params) ⇒ Object
245 246 247 248 249 250 251 252 253 254 |
# File 'lib/v20201229/models.rb', line 245 def deserialize(params) @Label = params['Label'] @Score = params['Score'] unless params['Detail'].nil? @Detail = SentimentDetail.new @Detail.deserialize(params['Detail']) end @Code = params['Code'] @Message = params['Message'] end |