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.
8484 8485 8486 8487 8488 8489 |
# File 'lib/v20180606/models.rb', line 8484 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,表示取不到有效值。
8482 8483 8484 |
# File 'lib/v20180606/models.rb', line 8482 def ExtraLogset @ExtraLogset end |
#Logset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8482 8483 8484 |
# File 'lib/v20180606/models.rb', line 8482 def Logset @Logset end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8482 8483 8484 |
# File 'lib/v20180606/models.rb', line 8482 def RequestId @RequestId end |
#Topics ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
8482 8483 8484 |
# File 'lib/v20180606/models.rb', line 8482 def Topics @Topics end |
Instance Method Details
#deserialize(params) ⇒ Object
8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 |
# File 'lib/v20180606/models.rb', line 8491 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 |