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
Returns a new instance of DescribeStreamTaskLogListResponse.
15385 15386 15387 15388 15389 |
# File 'lib/v20210820/models.rb', line 15385 def initialize(listover=nil, logcontentlist=nil, requestid=nil) @ListOver = listover @LogContentList = logcontentlist @RequestId = requestid end |
Instance Attribute Details
#ListOver ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
15383 15384 15385 |
# File 'lib/v20210820/models.rb', line 15383 def ListOver @ListOver end |
#LogContentList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
15383 15384 15385 |
# File 'lib/v20210820/models.rb', line 15383 def LogContentList @LogContentList end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
15383 15384 15385 |
# File 'lib/v20210820/models.rb', line 15383 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 |
# File 'lib/v20210820/models.rb', line 15391 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 |