Class: TencentCloud::Dlc::V20210125::DescribeTaskListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::DescribeTaskListResponse
- Defined in:
- lib/v20210125/models.rb
Overview
DescribeTaskList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tasklist = nil, totalcount = nil, requestid = nil) ⇒ DescribeTaskListResponse
constructor
A new instance of DescribeTaskListResponse.
Constructor Details
#initialize(tasklist = nil, totalcount = nil, requestid = nil) ⇒ DescribeTaskListResponse
Returns a new instance of DescribeTaskListResponse.
9184 9185 9186 9187 9188 |
# File 'lib/v20210125/models.rb', line 9184 def initialize(tasklist=nil, totalcount=nil, requestid=nil) @TaskList = tasklist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
9182 9183 9184 |
# File 'lib/v20210125/models.rb', line 9182 def RequestId @RequestId end |
#TaskList ⇒ Object
9182 9183 9184 |
# File 'lib/v20210125/models.rb', line 9182 def TaskList @TaskList end |
#TotalCount ⇒ Object
9182 9183 9184 |
# File 'lib/v20210125/models.rb', line 9182 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 |
# File 'lib/v20210125/models.rb', line 9190 def deserialize(params) unless params['TaskList'].nil? @TaskList = [] params['TaskList'].each do |i| taskfullrespinfo_tmp = TaskFullRespInfo.new taskfullrespinfo_tmp.deserialize(i) @TaskList << taskfullrespinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |