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.
18268 18269 18270 18271 |
# File 'lib/v20210820/models.rb', line 18268 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
18266 18267 18268 |
# File 'lib/v20210820/models.rb', line 18266 def Data @Data end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
18266 18267 18268 |
# File 'lib/v20210820/models.rb', line 18266 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 |
# File 'lib/v20210820/models.rb', line 18273 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 |