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.
7958 7959 7960 7961 7962 7963 |
# File 'lib/v20221121/models.rb', line 7958 def initialize(totalcount=nil, data=nil, uinlist=nil, requestid=nil) @TotalCount = totalcount @Data = data @UINList = uinlist @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
7956 7957 7958 |
# File 'lib/v20221121/models.rb', line 7956 def Data @Data end |
#RequestId ⇒ Object
7956 7957 7958 |
# File 'lib/v20221121/models.rb', line 7956 def RequestId @RequestId end |
#TotalCount ⇒ Object
7956 7957 7958 |
# File 'lib/v20221121/models.rb', line 7956 def TotalCount @TotalCount end |
#UINList ⇒ Object
7956 7957 7958 |
# File 'lib/v20221121/models.rb', line 7956 def UINList @UINList end |
Instance Method Details
#deserialize(params) ⇒ Object
7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 |
# File 'lib/v20221121/models.rb', line 7965 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 |