Class: TencentCloud::Wedata::V20210820::DescribeWorkflowTaskCountResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeWorkflowTaskCountResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeWorkflowTaskCount返回参数结构体
Instance Attribute Summary collapse
-
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, requestid = nil) ⇒ DescribeWorkflowTaskCountResponse
constructor
A new instance of DescribeWorkflowTaskCountResponse.
Constructor Details
#initialize(data = nil, requestid = nil) ⇒ DescribeWorkflowTaskCountResponse
Returns a new instance of DescribeWorkflowTaskCountResponse.
18548 18549 18550 18551 |
# File 'lib/v20210820/models.rb', line 18548 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
18546 18547 18548 |
# File 'lib/v20210820/models.rb', line 18546 def Data @Data end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
18546 18547 18548 |
# File 'lib/v20210820/models.rb', line 18546 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
18553 18554 18555 18556 18557 18558 18559 |
# File 'lib/v20210820/models.rb', line 18553 def deserialize(params) unless params['Data'].nil? @Data = WorkflowTaskCountOpsDto.new @Data.deserialize(params['Data']) end @RequestId = params['RequestId'] end |