Class: TencentCloud::Wedata::V20210820::DescribeWorkflowByFordIdsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeWorkflowByFordIdsResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeWorkflowByFordIds返回参数结构体
Instance Attribute Summary collapse
-
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, requestid = nil) ⇒ DescribeWorkflowByFordIdsResponse
constructor
A new instance of DescribeWorkflowByFordIdsResponse.
Constructor Details
#initialize(data = nil, requestid = nil) ⇒ DescribeWorkflowByFordIdsResponse
Returns a new instance of DescribeWorkflowByFordIdsResponse.
17610 17611 17612 17613 |
# File 'lib/v20210820/models.rb', line 17610 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
17608 17609 17610 |
# File 'lib/v20210820/models.rb', line 17608 def Data @Data end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
17608 17609 17610 |
# File 'lib/v20210820/models.rb', line 17608 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 |
# File 'lib/v20210820/models.rb', line 17615 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| workflowdsdto_tmp = WorkflowDsDTO.new workflowdsdto_tmp.deserialize(i) @Data << workflowdsdto_tmp end end @RequestId = params['RequestId'] end |