Class: TencentCloud::Wedata::V20210820::DescribeSchedulerTaskTypeCntResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeSchedulerTaskTypeCntResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeSchedulerTaskTypeCnt返回参数结构体
Instance Attribute Summary collapse
-
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, requestid = nil) ⇒ DescribeSchedulerTaskTypeCntResponse
constructor
A new instance of DescribeSchedulerTaskTypeCntResponse.
Constructor Details
#initialize(data = nil, requestid = nil) ⇒ DescribeSchedulerTaskTypeCntResponse
Returns a new instance of DescribeSchedulerTaskTypeCntResponse.
15198 15199 15200 15201 |
# File 'lib/v20210820/models.rb', line 15198 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15196 15197 15198 |
# File 'lib/v20210820/models.rb', line 15196 def Data @Data end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15196 15197 15198 |
# File 'lib/v20210820/models.rb', line 15196 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 |
# File 'lib/v20210820/models.rb', line 15203 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| tasktypecnt_tmp = TaskTypeCnt.new tasktypecnt_tmp.deserialize(i) @Data << tasktypecnt_tmp end end @RequestId = params['RequestId'] end |