Class: TencentCloud::Gs::V20191118::DescribeAndroidInstanceTasksStatusResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gs::V20191118::DescribeAndroidInstanceTasksStatusResponse
- Defined in:
- lib/v20191118/models.rb
Overview
DescribeAndroidInstanceTasksStatus返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(taskstatusset = nil, total = nil, requestid = nil) ⇒ DescribeAndroidInstanceTasksStatusResponse
constructor
A new instance of DescribeAndroidInstanceTasksStatusResponse.
Constructor Details
#initialize(taskstatusset = nil, total = nil, requestid = nil) ⇒ DescribeAndroidInstanceTasksStatusResponse
Returns a new instance of DescribeAndroidInstanceTasksStatusResponse.
2238 2239 2240 2241 2242 |
# File 'lib/v20191118/models.rb', line 2238 def initialize(taskstatusset=nil, total=nil, requestid=nil) @TaskStatusSet = taskstatusset @Total = total @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
2236 2237 2238 |
# File 'lib/v20191118/models.rb', line 2236 def RequestId @RequestId end |
#TaskStatusSet ⇒ Object
2236 2237 2238 |
# File 'lib/v20191118/models.rb', line 2236 def TaskStatusSet @TaskStatusSet end |
#Total ⇒ Object
2236 2237 2238 |
# File 'lib/v20191118/models.rb', line 2236 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/v20191118/models.rb', line 2244 def deserialize(params) unless params['TaskStatusSet'].nil? @TaskStatusSet = [] params['TaskStatusSet'].each do |i| androidinstancetaskstatus_tmp = AndroidInstanceTaskStatus.new androidinstancetaskstatus_tmp.deserialize(i) @TaskStatusSet << androidinstancetaskstatus_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |