Class: TencentCloud::Ocr::V20181119::ImageSize
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::ImageSize
- Defined in:
- lib/v20181119/models.rb
Overview
图片分辨率信息
Instance Attribute Summary collapse
-
#Height ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Width ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(width = nil, height = nil) ⇒ ImageSize
constructor
A new instance of ImageSize.
Constructor Details
#initialize(width = nil, height = nil) ⇒ ImageSize
Returns a new instance of ImageSize.
4578 4579 4580 4581 |
# File 'lib/v20181119/models.rb', line 4578 def initialize(width=nil, height=nil) @Width = width @Height = height end |
Instance Attribute Details
#Height ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4576 4577 4578 |
# File 'lib/v20181119/models.rb', line 4576 def Height @Height end |
#Width ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4576 4577 4578 |
# File 'lib/v20181119/models.rb', line 4576 def Width @Width end |
Instance Method Details
#deserialize(params) ⇒ Object
4583 4584 4585 4586 |
# File 'lib/v20181119/models.rb', line 4583 def deserialize(params) @Width = params['Width'] @Height = params['Height'] end |