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.
3328 3329 3330 3331 |
# File 'lib/v20250806/models.rb', line 3328 def initialize(data=nil, requestid=nil) @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3326 3327 3328 |
# File 'lib/v20250806/models.rb', line 3326 def Data @Data end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
3326 3327 3328 |
# File 'lib/v20250806/models.rb', line 3326 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3333 3334 3335 3336 3337 3338 3339 |
# File 'lib/v20250806/models.rb', line 3333 def deserialize(params) unless params['Data'].nil? @Data = WorkflowDetail.new @Data.deserialize(params['Data']) end @RequestId = params['RequestId'] end |