Class: TencentCloud::Cwp::V20180228::DescribeVulStoreListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeVulStoreListResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeVulStoreList返回参数结构体
Instance Attribute Summary collapse
- #FreeSearchTimes ⇒ Object
- #List ⇒ Object
- #Remaining ⇒ Object
- #RequestId ⇒ Object
- #TotalCount ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, totalcount = nil, remaining = nil, freesearchtimes = nil, requestid = nil) ⇒ DescribeVulStoreListResponse
constructor
A new instance of DescribeVulStoreListResponse.
Constructor Details
#initialize(list = nil, totalcount = nil, remaining = nil, freesearchtimes = nil, requestid = nil) ⇒ DescribeVulStoreListResponse
Returns a new instance of DescribeVulStoreListResponse.
24436 24437 24438 24439 24440 24441 24442 |
# File 'lib/v20180228/models.rb', line 24436 def initialize(list=nil, totalcount=nil, remaining=nil, freesearchtimes=nil, requestid=nil) @List = list @TotalCount = totalcount @Remaining = remaining @FreeSearchTimes = freesearchtimes @RequestId = requestid end |
Instance Attribute Details
#FreeSearchTimes ⇒ Object
24434 24435 24436 |
# File 'lib/v20180228/models.rb', line 24434 def FreeSearchTimes @FreeSearchTimes end |
#List ⇒ Object
24434 24435 24436 |
# File 'lib/v20180228/models.rb', line 24434 def List @List end |
#Remaining ⇒ Object
24434 24435 24436 |
# File 'lib/v20180228/models.rb', line 24434 def Remaining @Remaining end |
#RequestId ⇒ Object
24434 24435 24436 |
# File 'lib/v20180228/models.rb', line 24434 def RequestId @RequestId end |
#TotalCount ⇒ Object
24434 24435 24436 |
# File 'lib/v20180228/models.rb', line 24434 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 |
# File 'lib/v20180228/models.rb', line 24444 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| vulstorelistinfo_tmp = VulStoreListInfo.new vulstorelistinfo_tmp.deserialize(i) @List << vulstorelistinfo_tmp end end @TotalCount = params['TotalCount'] @Remaining = params['Remaining'] @FreeSearchTimes = params['FreeSearchTimes'] @RequestId = params['RequestId'] end |