Class: TencentCloud::Aiart::V20221229::LogoParam
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Aiart::V20221229::LogoParam
- Defined in:
- lib/v20221229/models.rb
Overview
logo参数
Instance Attribute Summary collapse
-
#LogoImage ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#LogoRect ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#LogoUrl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
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
542 543 544 545 546 |
# File 'lib/v20221229/models.rb', line 542 def initialize(logourl=nil, logoimage=nil, logorect=nil) @LogoUrl = logourl @LogoImage = logoimage @LogoRect = logorect end |
Instance Attribute Details
#LogoImage ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
540 541 542 |
# File 'lib/v20221229/models.rb', line 540 def LogoImage @LogoImage end |
#LogoRect ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
540 541 542 |
# File 'lib/v20221229/models.rb', line 540 def LogoRect @LogoRect end |
#LogoUrl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
540 541 542 |
# File 'lib/v20221229/models.rb', line 540 def LogoUrl @LogoUrl end |
Instance Method Details
#deserialize(params) ⇒ Object
548 549 550 551 552 553 554 555 |
# File 'lib/v20221229/models.rb', line 548 def deserialize(params) @LogoUrl = params['LogoUrl'] @LogoImage = params['LogoImage'] unless params['LogoRect'].nil? @LogoRect = LogoRect.new @LogoRect.deserialize(params['LogoRect']) end end |