Class: TencentCloud::Csip::V20221121::DescribeTaskLogListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Csip::V20221121::DescribeTaskLogListResponse
- Defined in:
- lib/v20221121/models.rb
Overview
DescribeTaskLogList返回参数结构体
Instance Attribute Summary collapse
- #Data ⇒ Object
- #NotViewNumber ⇒ Object
- #ReportTemplateNumber ⇒ Object
- #RequestId ⇒ Object
- #TotalCount ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, data = nil, notviewnumber = nil, reporttemplatenumber = nil, requestid = nil) ⇒ DescribeTaskLogListResponse
constructor
A new instance of DescribeTaskLogListResponse.
Constructor Details
#initialize(totalcount = nil, data = nil, notviewnumber = nil, reporttemplatenumber = nil, requestid = nil) ⇒ DescribeTaskLogListResponse
Returns a new instance of DescribeTaskLogListResponse.
5455 5456 5457 5458 5459 5460 5461 |
# File 'lib/v20221121/models.rb', line 5455 def initialize(totalcount=nil, data=nil, notviewnumber=nil, reporttemplatenumber=nil, requestid=nil) @TotalCount = totalcount @Data = data @NotViewNumber = notviewnumber @ReportTemplateNumber = reporttemplatenumber @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
5453 5454 5455 |
# File 'lib/v20221121/models.rb', line 5453 def Data @Data end |
#NotViewNumber ⇒ Object
5453 5454 5455 |
# File 'lib/v20221121/models.rb', line 5453 def NotViewNumber @NotViewNumber end |
#ReportTemplateNumber ⇒ Object
5453 5454 5455 |
# File 'lib/v20221121/models.rb', line 5453 def ReportTemplateNumber @ReportTemplateNumber end |
#RequestId ⇒ Object
5453 5454 5455 |
# File 'lib/v20221121/models.rb', line 5453 def RequestId @RequestId end |
#TotalCount ⇒ Object
5453 5454 5455 |
# File 'lib/v20221121/models.rb', line 5453 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 |
# File 'lib/v20221121/models.rb', line 5463 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Data'].nil? @Data = [] params['Data'].each do |i| taskloginfo_tmp = TaskLogInfo.new taskloginfo_tmp.deserialize(i) @Data << taskloginfo_tmp end end @NotViewNumber = params['NotViewNumber'] @ReportTemplateNumber = params['ReportTemplateNumber'] @RequestId = params['RequestId'] end |