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.
24051 24052 24053 24054 24055 24056 24057 |
# File 'lib/v20180228/models.rb', line 24051 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
24049 24050 24051 |
# File 'lib/v20180228/models.rb', line 24049 def FreeSearchTimes @FreeSearchTimes end |
#List ⇒ Object
24049 24050 24051 |
# File 'lib/v20180228/models.rb', line 24049 def List @List end |
#Remaining ⇒ Object
24049 24050 24051 |
# File 'lib/v20180228/models.rb', line 24049 def Remaining @Remaining end |
#RequestId ⇒ Object
24049 24050 24051 |
# File 'lib/v20180228/models.rb', line 24049 def RequestId @RequestId end |
#TotalCount ⇒ Object
24049 24050 24051 |
# File 'lib/v20180228/models.rb', line 24049 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 |
# File 'lib/v20180228/models.rb', line 24059 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 |