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.
16036 16037 16038 16039 16040 |
# File 'lib/v20210820/models.rb', line 16036 def initialize(listover=nil, logcontentlist=nil, requestid=nil) @ListOver = listover @LogContentList = logcontentlist @RequestId = requestid end |
Instance Attribute Details
#ListOver ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
16034 16035 16036 |
# File 'lib/v20210820/models.rb', line 16034 def ListOver @ListOver end |
#LogContentList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
16034 16035 16036 |
# File 'lib/v20210820/models.rb', line 16034 def LogContentList @LogContentList end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
16034 16035 16036 |
# File 'lib/v20210820/models.rb', line 16034 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 |
# File 'lib/v20210820/models.rb', line 16042 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 |