Class: TencentCloud::Ocr::V20181119::StoreInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::StoreInfo
- Defined in:
- lib/v20181119/models.rb
Overview
门头照识别结果
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, value = nil, rect = nil) ⇒ StoreInfo
constructor
A new instance of StoreInfo.
Constructor Details
#initialize(name = nil, value = nil, rect = nil) ⇒ StoreInfo
Returns a new instance of StoreInfo.
11275 11276 11277 11278 11279 |
# File 'lib/v20181119/models.rb', line 11275 def initialize(name=nil, value=nil, rect=nil) @Name = name @Value = value @Rect = rect end |
Instance Attribute Details
#Name ⇒ Object
11273 11274 11275 |
# File 'lib/v20181119/models.rb', line 11273 def Name @Name end |
#Rect ⇒ Object
11273 11274 11275 |
# File 'lib/v20181119/models.rb', line 11273 def Rect @Rect end |
#Value ⇒ Object
11273 11274 11275 |
# File 'lib/v20181119/models.rb', line 11273 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
11281 11282 11283 11284 11285 11286 11287 11288 |
# File 'lib/v20181119/models.rb', line 11281 def deserialize(params) @Name = params['Name'] @Value = params['Value'] unless params['Rect'].nil? @Rect = Rect.new @Rect.deserialize(params['Rect']) end end |