Class: TencentCloud::Csip::V20221121::DescribeScanReportListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Csip::V20221121::DescribeScanReportListResponse
- Defined in:
- lib/v20221121/models.rb
Overview
DescribeScanReportList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, data = nil, uinlist = nil, requestid = nil) ⇒ DescribeScanReportListResponse
constructor
A new instance of DescribeScanReportListResponse.
Constructor Details
#initialize(totalcount = nil, data = nil, uinlist = nil, requestid = nil) ⇒ DescribeScanReportListResponse
Returns a new instance of DescribeScanReportListResponse.
5090 5091 5092 5093 5094 5095 |
# File 'lib/v20221121/models.rb', line 5090 def initialize(totalcount=nil, data=nil, uinlist=nil, requestid=nil) @TotalCount = totalcount @Data = data @UINList = uinlist @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
5088 5089 5090 |
# File 'lib/v20221121/models.rb', line 5088 def Data @Data end |
#RequestId ⇒ Object
5088 5089 5090 |
# File 'lib/v20221121/models.rb', line 5088 def RequestId @RequestId end |
#TotalCount ⇒ Object
5088 5089 5090 |
# File 'lib/v20221121/models.rb', line 5088 def TotalCount @TotalCount end |
#UINList ⇒ Object
5088 5089 5090 |
# File 'lib/v20221121/models.rb', line 5088 def UINList @UINList end |
Instance Method Details
#deserialize(params) ⇒ Object
5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 |
# File 'lib/v20221121/models.rb', line 5097 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Data'].nil? @Data = [] params['Data'].each do |i| scantaskinfo_tmp = ScanTaskInfo.new scantaskinfo_tmp.deserialize(i) @Data << scantaskinfo_tmp end end @UINList = params['UINList'] @RequestId = params['RequestId'] end |