Class: TencentCloud::Cdn::V20180606::ListClsLogTopicsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::ListClsLogTopicsResponse
- Defined in:
- lib/v20180606/models.rb
Overview
ListClsLogTopics返回参数结构体
Instance Attribute Summary collapse
-
#ExtraLogset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Logset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Topics ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(logset = nil, topics = nil, extralogset = nil, requestid = nil) ⇒ ListClsLogTopicsResponse
constructor
A new instance of ListClsLogTopicsResponse.
Constructor Details
#initialize(logset = nil, topics = nil, extralogset = nil, requestid = nil) ⇒ ListClsLogTopicsResponse
Returns a new instance of ListClsLogTopicsResponse.
6155 6156 6157 6158 6159 6160 |
# File 'lib/v20180606/models.rb', line 6155 def initialize(logset=nil, topics=nil, extralogset=nil, requestid=nil) @Logset = logset @Topics = topics @ExtraLogset = extralogset @RequestId = requestid end |
Instance Attribute Details
#ExtraLogset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6153 6154 6155 |
# File 'lib/v20180606/models.rb', line 6153 def ExtraLogset @ExtraLogset end |
#Logset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6153 6154 6155 |
# File 'lib/v20180606/models.rb', line 6153 def Logset @Logset end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6153 6154 6155 |
# File 'lib/v20180606/models.rb', line 6153 def RequestId @RequestId end |
#Topics ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6153 6154 6155 |
# File 'lib/v20180606/models.rb', line 6153 def Topics @Topics end |
Instance Method Details
#deserialize(params) ⇒ Object
6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 |
# File 'lib/v20180606/models.rb', line 6162 def deserialize(params) unless params['Logset'].nil? @Logset = LogSetInfo.new @Logset.deserialize(params['Logset']) end unless params['Topics'].nil? @Topics = [] params['Topics'].each do |i| topicinfo_tmp = TopicInfo.new topicinfo_tmp.deserialize(i) @Topics << topicinfo_tmp end end unless params['ExtraLogset'].nil? @ExtraLogset = [] params['ExtraLogset'].each do |i| extralogset_tmp = ExtraLogset.new extralogset_tmp.deserialize(i) @ExtraLogset << extralogset_tmp end end @RequestId = params['RequestId'] end |