Class: TencentCloud::Ocr::V20181119::ItemInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::ItemInfo
- Defined in:
- lib/v20181119/models.rb
Overview
智能结构化元素组
Instance Attribute Summary collapse
-
#Key ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Value ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(key = nil, value = nil) ⇒ ItemInfo
constructor
A new instance of ItemInfo.
Constructor Details
#initialize(key = nil, value = nil) ⇒ ItemInfo
Returns a new instance of ItemInfo.
5002 5003 5004 5005 |
# File 'lib/v20181119/models.rb', line 5002 def initialize(key=nil, value=nil) @Key = key @Value = value end |
Instance Attribute Details
#Key ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
5000 5001 5002 |
# File 'lib/v20181119/models.rb', line 5000 def Key @Key end |
#Value ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
5000 5001 5002 |
# File 'lib/v20181119/models.rb', line 5000 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 |
# File 'lib/v20181119/models.rb', line 5007 def deserialize(params) unless params['Key'].nil? @Key = Key.new @Key.deserialize(params['Key']) end unless params['Value'].nil? @Value = Value.new @Value.deserialize(params['Value']) end end |