Class: TencentCloud::Cms::V20190321::LogoDetail
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cms::V20190321::LogoDetail
- Defined in:
- lib/v20190321/models.rb
Overview
Logo命中详情
Instance Attribute Summary collapse
-
#AppLogoDetail ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(applogodetail = nil) ⇒ LogoDetail
constructor
A new instance of LogoDetail.
Constructor Details
#initialize(applogodetail = nil) ⇒ LogoDetail
Returns a new instance of LogoDetail.
1045 1046 1047 |
# File 'lib/v20190321/models.rb', line 1045 def initialize(applogodetail=nil) @AppLogoDetail = applogodetail end |
Instance Attribute Details
#AppLogoDetail ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1043 1044 1045 |
# File 'lib/v20190321/models.rb', line 1043 def AppLogoDetail @AppLogoDetail end |
Instance Method Details
#deserialize(params) ⇒ Object
1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 |
# File 'lib/v20190321/models.rb', line 1049 def deserialize(params) unless params['AppLogoDetail'].nil? @AppLogoDetail = [] params['AppLogoDetail'].each do |i| logo_tmp = Logo.new logo_tmp.deserialize(i) @AppLogoDetail << logo_tmp end end end |