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.
6339 6340 6341 6342 6343 6344 |
# File 'lib/v20180606/models.rb', line 6339 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,表示取不到有效值。
6337 6338 6339 |
# File 'lib/v20180606/models.rb', line 6337 def ExtraLogset @ExtraLogset end |
#Logset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
6337 6338 6339 |
# File 'lib/v20180606/models.rb', line 6337 def Logset @Logset end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
6337 6338 6339 |
# File 'lib/v20180606/models.rb', line 6337 def RequestId @RequestId end |
#Topics ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
6337 6338 6339 |
# File 'lib/v20180606/models.rb', line 6337 def Topics @Topics end |
Instance Method Details
#deserialize(params) ⇒ Object
6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 |
# File 'lib/v20180606/models.rb', line 6346 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 |