Class: TencentCloud::Wedata::V20210820::DescribeSchedulerTaskCntByStatusResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeSchedulerTaskCntByStatusResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeSchedulerTaskCntByStatus返回参数结构体
Instance Attribute Summary collapse
-
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, requestid = nil) ⇒ DescribeSchedulerTaskCntByStatusResponse
constructor
A new instance of DescribeSchedulerTaskCntByStatusResponse.
Constructor Details
#initialize(data = nil, requestid = nil) ⇒ DescribeSchedulerTaskCntByStatusResponse
Returns a new instance of DescribeSchedulerTaskCntByStatusResponse.
15150 15151 15152 15153 |
# File 'lib/v20210820/models.rb', line 15150 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15148 15149 15150 |
# File 'lib/v20210820/models.rb', line 15148 def Data @Data end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15148 15149 15150 |
# File 'lib/v20210820/models.rb', line 15148 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 |
# File 'lib/v20210820/models.rb', line 15155 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| screentaskinfo_tmp = ScreenTaskInfo.new screentaskinfo_tmp.deserialize(i) @Data << screentaskinfo_tmp end end @RequestId = params['RequestId'] end |