Class: TencentCloud::Dcdb::V20180411::DescribeUserTasksResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dcdb::V20180411::DescribeUserTasksResponse
- Defined in:
- lib/v20180411/models.rb
Overview
DescribeUserTasks返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, flowset = nil, requestid = nil) ⇒ DescribeUserTasksResponse
constructor
A new instance of DescribeUserTasksResponse.
Constructor Details
#initialize(totalcount = nil, flowset = nil, requestid = nil) ⇒ DescribeUserTasksResponse
Returns a new instance of DescribeUserTasksResponse.
4251 4252 4253 4254 4255 |
# File 'lib/v20180411/models.rb', line 4251 def initialize(totalcount=nil, flowset=nil, requestid=nil) @TotalCount = totalcount @FlowSet = flowset @RequestId = requestid end |
Instance Attribute Details
#FlowSet ⇒ Object
4249 4250 4251 |
# File 'lib/v20180411/models.rb', line 4249 def FlowSet @FlowSet end |
#RequestId ⇒ Object
4249 4250 4251 |
# File 'lib/v20180411/models.rb', line 4249 def RequestId @RequestId end |
#TotalCount ⇒ Object
4249 4250 4251 |
# File 'lib/v20180411/models.rb', line 4249 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 |
# File 'lib/v20180411/models.rb', line 4257 def deserialize(params) @TotalCount = params['TotalCount'] unless params['FlowSet'].nil? @FlowSet = [] params['FlowSet'].each do |i| usertaskinfo_tmp = UserTaskInfo.new usertaskinfo_tmp.deserialize(i) @FlowSet << usertaskinfo_tmp end end @RequestId = params['RequestId'] end |