Class: TencentCloud::Hunyuan::V20230901::LogoParam
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Hunyuan::V20230901::LogoParam
- Defined in:
- lib/v20230901/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.
1710 1711 1712 1713 1714 |
# File 'lib/v20230901/models.rb', line 1710 def initialize(logourl=nil, logoimage=nil, logorect=nil) @LogoUrl = logourl @LogoImage = logoimage @LogoRect = logorect end |
Instance Attribute Details
#LogoImage ⇒ Object
1708 1709 1710 |
# File 'lib/v20230901/models.rb', line 1708 def LogoImage @LogoImage end |
#LogoRect ⇒ Object
1708 1709 1710 |
# File 'lib/v20230901/models.rb', line 1708 def LogoRect @LogoRect end |
#LogoUrl ⇒ Object
1708 1709 1710 |
# File 'lib/v20230901/models.rb', line 1708 def LogoUrl @LogoUrl end |
Instance Method Details
#deserialize(params) ⇒ Object
1716 1717 1718 1719 1720 1721 1722 1723 |
# File 'lib/v20230901/models.rb', line 1716 def deserialize(params) @LogoUrl = params['LogoUrl'] @LogoImage = params['LogoImage'] unless params['LogoRect'].nil? @LogoRect = LogoRect.new @LogoRect.deserialize(params['LogoRect']) end end |