Class: TencentCloud::Mps::V20190612::DescribeWorkflowsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::DescribeWorkflowsResponse
- Defined in:
- lib/v20190612/models.rb
Overview
DescribeWorkflows返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, workflowinfoset = nil, requestid = nil) ⇒ DescribeWorkflowsResponse
constructor
A new instance of DescribeWorkflowsResponse.
Constructor Details
#initialize(totalcount = nil, workflowinfoset = nil, requestid = nil) ⇒ DescribeWorkflowsResponse
Returns a new instance of DescribeWorkflowsResponse.
15570 15571 15572 15573 15574 |
# File 'lib/v20190612/models.rb', line 15570 def initialize(totalcount=nil, workflowinfoset=nil, requestid=nil) @TotalCount = totalcount @WorkflowInfoSet = workflowinfoset @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
15568 15569 15570 |
# File 'lib/v20190612/models.rb', line 15568 def RequestId @RequestId end |
#TotalCount ⇒ Object
15568 15569 15570 |
# File 'lib/v20190612/models.rb', line 15568 def TotalCount @TotalCount end |
#WorkflowInfoSet ⇒ Object
15568 15569 15570 |
# File 'lib/v20190612/models.rb', line 15568 def WorkflowInfoSet @WorkflowInfoSet end |
Instance Method Details
#deserialize(params) ⇒ Object
15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 |
# File 'lib/v20190612/models.rb', line 15576 def deserialize(params) @TotalCount = params['TotalCount'] unless params['WorkflowInfoSet'].nil? @WorkflowInfoSet = [] params['WorkflowInfoSet'].each do |i| workflowinfo_tmp = WorkflowInfo.new workflowinfo_tmp.deserialize(i) @WorkflowInfoSet << workflowinfo_tmp end end @RequestId = params['RequestId'] end |