Class: TencentCloud::Ivld::V20210903::DescribeTaskResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ivld::V20210903::DescribeTaskResponse
- Defined in:
- lib/v20210903/models.rb
Overview
DescribeTask返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TaskInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(taskinfo = nil, requestid = nil) ⇒ DescribeTaskResponse
constructor
A new instance of DescribeTaskResponse.
Constructor Details
#initialize(taskinfo = nil, requestid = nil) ⇒ DescribeTaskResponse
1323 1324 1325 1326 |
# File 'lib/v20210903/models.rb', line 1323 def initialize(taskinfo=nil, requestid=nil) @TaskInfo = taskinfo @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1321 1322 1323 |
# File 'lib/v20210903/models.rb', line 1321 def RequestId @RequestId end |
#TaskInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1321 1322 1323 |
# File 'lib/v20210903/models.rb', line 1321 def TaskInfo @TaskInfo end |
Instance Method Details
#deserialize(params) ⇒ Object
1328 1329 1330 1331 1332 1333 1334 |
# File 'lib/v20210903/models.rb', line 1328 def deserialize(params) unless params['TaskInfo'].nil? @TaskInfo = TaskInfo.new @TaskInfo.deserialize(params['TaskInfo']) end @RequestId = params['RequestId'] end |