Class: TencentCloud::Ams::V20201229::RecognitionResult
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ams::V20201229::RecognitionResult
- Defined in:
- lib/v20201229/models.rb
Overview
识别类标签结果信息
Instance Attribute Summary collapse
-
#Label ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(label = nil, tags = nil) ⇒ RecognitionResult
constructor
A new instance of RecognitionResult.
Constructor Details
#initialize(label = nil, tags = nil) ⇒ RecognitionResult
Returns a new instance of RecognitionResult.
1027 1028 1029 1030 |
# File 'lib/v20201229/models.rb', line 1027 def initialize(label=nil, =nil) @Label = label @Tags = end |
Instance Attribute Details
#Label ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
1025 1026 1027 |
# File 'lib/v20201229/models.rb', line 1025 def Label @Label end |
#Tags ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
1025 1026 1027 |
# File 'lib/v20201229/models.rb', line 1025 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 |
# File 'lib/v20201229/models.rb', line 1032 def deserialize(params) @Label = params['Label'] unless params['Tags'].nil? @Tags = [] params['Tags'].each do |i| tag_tmp = Tag.new tag_tmp.deserialize(i) @Tags << tag_tmp end end end |