Class: TencentCloud::Wedata::V20250806::GetWorkflowResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20250806::GetWorkflowResponse
- Defined in:
- lib/v20250806/models.rb
Overview
GetWorkflow返回参数结构体
Instance Attribute Summary collapse
-
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, requestid = nil) ⇒ GetWorkflowResponse
constructor
A new instance of GetWorkflowResponse.
Constructor Details
#initialize(data = nil, requestid = nil) ⇒ GetWorkflowResponse
Returns a new instance of GetWorkflowResponse.
5265 5266 5267 5268 |
# File 'lib/v20250806/models.rb', line 5265 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5263 5264 5265 |
# File 'lib/v20250806/models.rb', line 5263 def Data @Data end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5263 5264 5265 |
# File 'lib/v20250806/models.rb', line 5263 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
5270 5271 5272 5273 5274 5275 5276 |
# File 'lib/v20250806/models.rb', line 5270 def deserialize(params) unless params['Data'].nil? @Data = WorkflowDetail.new @Data.deserialize(params['Data']) end @RequestId = params['RequestId'] end |