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.
11031 11032 11033 11034 11035 |
# File 'lib/v20181119/models.rb', line 11031 def initialize(name=nil, value=nil, rect=nil) @Name = name @Value = value @Rect = rect end |
Instance Attribute Details
#Name ⇒ Object
11029 11030 11031 |
# File 'lib/v20181119/models.rb', line 11029 def Name @Name end |
#Rect ⇒ Object
11029 11030 11031 |
# File 'lib/v20181119/models.rb', line 11029 def Rect @Rect end |
#Value ⇒ Object
11029 11030 11031 |
# File 'lib/v20181119/models.rb', line 11029 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
11037 11038 11039 11040 11041 11042 11043 11044 |
# File 'lib/v20181119/models.rb', line 11037 def deserialize(params) @Name = params['Name'] @Value = params['Value'] unless params['Rect'].nil? @Rect = Rect.new @Rect.deserialize(params['Rect']) end end |