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.
15490 15491 15492 15493 15494 |
# File 'lib/v20190612/models.rb', line 15490 def initialize(totalcount=nil, workflowinfoset=nil, requestid=nil) @TotalCount = totalcount @WorkflowInfoSet = workflowinfoset @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
15488 15489 15490 |
# File 'lib/v20190612/models.rb', line 15488 def RequestId @RequestId end |
#TotalCount ⇒ Object
15488 15489 15490 |
# File 'lib/v20190612/models.rb', line 15488 def TotalCount @TotalCount end |
#WorkflowInfoSet ⇒ Object
15488 15489 15490 |
# File 'lib/v20190612/models.rb', line 15488 def WorkflowInfoSet @WorkflowInfoSet end |
Instance Method Details
#deserialize(params) ⇒ Object
15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 |
# File 'lib/v20190612/models.rb', line 15496 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 |