Class: TencentCloud::Vclm::V20240523::LogoParam
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vclm::V20240523::LogoParam
- Defined in:
- lib/v20240523/models.rb
Overview
logo参数
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(logourl = nil, logoimage = nil, logorect = nil) ⇒ LogoParam
constructor
A new instance of LogoParam.
Constructor Details
#initialize(logourl = nil, logoimage = nil, logorect = nil) ⇒ LogoParam
Returns a new instance of LogoParam.
334 335 336 337 338 |
# File 'lib/v20240523/models.rb', line 334 def initialize(logourl=nil, logoimage=nil, logorect=nil) @LogoUrl = logourl @LogoImage = logoimage @LogoRect = logorect end |
Instance Attribute Details
#LogoImage ⇒ Object
332 333 334 |
# File 'lib/v20240523/models.rb', line 332 def LogoImage @LogoImage end |
#LogoRect ⇒ Object
332 333 334 |
# File 'lib/v20240523/models.rb', line 332 def LogoRect @LogoRect end |
#LogoUrl ⇒ Object
332 333 334 |
# File 'lib/v20240523/models.rb', line 332 def LogoUrl @LogoUrl end |
Instance Method Details
#deserialize(params) ⇒ Object
340 341 342 343 344 345 346 347 |
# File 'lib/v20240523/models.rb', line 340 def deserialize(params) @LogoUrl = params['LogoUrl'] @LogoImage = params['LogoImage'] unless params['LogoRect'].nil? @LogoRect = LogoRect.new @LogoRect.deserialize(params['LogoRect']) end end |