Class: TencentCloud::Cls::V20201016::DescribeCloudProductLogTasksResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::DescribeCloudProductLogTasksResponse
- Defined in:
- lib/v20201016/models.rb
Overview
DescribeCloudProductLogTasks返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tasks = nil, totalcount = nil, requestid = nil) ⇒ DescribeCloudProductLogTasksResponse
constructor
A new instance of DescribeCloudProductLogTasksResponse.
Constructor Details
#initialize(tasks = nil, totalcount = nil, requestid = nil) ⇒ DescribeCloudProductLogTasksResponse
Returns a new instance of DescribeCloudProductLogTasksResponse.
7063 7064 7065 7066 7067 |
# File 'lib/v20201016/models.rb', line 7063 def initialize(tasks=nil, totalcount=nil, requestid=nil) @Tasks = tasks @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
7061 7062 7063 |
# File 'lib/v20201016/models.rb', line 7061 def RequestId @RequestId end |
#Tasks ⇒ Object
7061 7062 7063 |
# File 'lib/v20201016/models.rb', line 7061 def Tasks @Tasks end |
#TotalCount ⇒ Object
7061 7062 7063 |
# File 'lib/v20201016/models.rb', line 7061 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 |
# File 'lib/v20201016/models.rb', line 7069 def deserialize(params) unless params['Tasks'].nil? @Tasks = [] params['Tasks'].each do |i| cloudproductlogtaskinfo_tmp = CloudProductLogTaskInfo.new cloudproductlogtaskinfo_tmp.deserialize(i) @Tasks << cloudproductlogtaskinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |