Class: TencentCloud::Vclm::V20240523::LogoRect
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vclm::V20240523::LogoRect
- Defined in:
- lib/v20240523/models.rb
Overview
水印图输入框
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(x = nil, y = nil, width = nil, height = nil) ⇒ LogoRect
constructor
A new instance of LogoRect.
Constructor Details
#initialize(x = nil, y = nil, width = nil, height = nil) ⇒ LogoRect
363 364 365 366 367 368 |
# File 'lib/v20240523/models.rb', line 363 def initialize(x=nil, y=nil, width=nil, height=nil) @X = x @Y = y @Width = width @Height = height end |
Instance Attribute Details
#Height ⇒ Object
361 362 363 |
# File 'lib/v20240523/models.rb', line 361 def Height @Height end |
#Width ⇒ Object
361 362 363 |
# File 'lib/v20240523/models.rb', line 361 def Width @Width end |
#X ⇒ Object
361 362 363 |
# File 'lib/v20240523/models.rb', line 361 def X @X end |
#Y ⇒ Object
361 362 363 |
# File 'lib/v20240523/models.rb', line 361 def Y @Y end |
Instance Method Details
#deserialize(params) ⇒ Object
370 371 372 373 374 375 |
# File 'lib/v20240523/models.rb', line 370 def deserialize(params) @X = params['X'] @Y = params['Y'] @Width = params['Width'] @Height = params['Height'] end |