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.
8502 8503 8504 8505 8506 8507 |
# File 'lib/v20180606/models.rb', line 8502 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,表示取不到有效值。
8500 8501 8502 |
# File 'lib/v20180606/models.rb', line 8500 def ExtraLogset @ExtraLogset end |
#Logset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8500 8501 8502 |
# File 'lib/v20180606/models.rb', line 8500 def Logset @Logset end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8500 8501 8502 |
# File 'lib/v20180606/models.rb', line 8500 def RequestId @RequestId end |
#Topics ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8500 8501 8502 |
# File 'lib/v20180606/models.rb', line 8500 def Topics @Topics end |
Instance Method Details
#deserialize(params) ⇒ Object
8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 |
# File 'lib/v20180606/models.rb', line 8509 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 |