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.
15849 15850 15851 15852 |
# File 'lib/v20210820/models.rb', line 15849 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15847 15848 15849 |
# File 'lib/v20210820/models.rb', line 15847 def Data @Data end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15847 15848 15849 |
# File 'lib/v20210820/models.rb', line 15847 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 |
# File 'lib/v20210820/models.rb', line 15854 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 |