Class: TencentCloud::Wedata::V20210820::DescribeStreamTaskLogListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeStreamTaskLogListResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeStreamTaskLogList返回参数结构体
Instance Attribute Summary collapse
-
#ListOver ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#LogContentList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(listover = nil, logcontentlist = nil, requestid = nil) ⇒ DescribeStreamTaskLogListResponse
constructor
A new instance of DescribeStreamTaskLogListResponse.
Constructor Details
#initialize(listover = nil, logcontentlist = nil, requestid = nil) ⇒ DescribeStreamTaskLogListResponse
15468 15469 15470 15471 15472 |
# File 'lib/v20210820/models.rb', line 15468 def initialize(listover=nil, logcontentlist=nil, requestid=nil) @ListOver = listover @LogContentList = logcontentlist @RequestId = requestid end |
Instance Attribute Details
#ListOver ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
15466 15467 15468 |
# File 'lib/v20210820/models.rb', line 15466 def ListOver @ListOver end |
#LogContentList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
15466 15467 15468 |
# File 'lib/v20210820/models.rb', line 15466 def LogContentList @LogContentList end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
15466 15467 15468 |
# File 'lib/v20210820/models.rb', line 15466 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 |
# File 'lib/v20210820/models.rb', line 15474 def deserialize(params) @ListOver = params['ListOver'] unless params['LogContentList'].nil? @LogContentList = [] params['LogContentList'].each do |i| logcontentinfo_tmp = LogContentInfo.new logcontentinfo_tmp.deserialize(i) @LogContentList << logcontentinfo_tmp end end @RequestId = params['RequestId'] end |