Class: TencentCloud::Cwp::V20180228::DescribeVulCveIdInfoResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeVulCveIdInfoResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeVulCveIdInfo返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, requestid = nil) ⇒ DescribeVulCveIdInfoResponse
constructor
A new instance of DescribeVulCveIdInfoResponse.
Constructor Details
#initialize(list = nil, requestid = nil) ⇒ DescribeVulCveIdInfoResponse
Returns a new instance of DescribeVulCveIdInfoResponse.
23239 23240 23241 23242 |
# File 'lib/v20180228/models.rb', line 23239 def initialize(list=nil, requestid=nil) @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
23237 23238 23239 |
# File 'lib/v20180228/models.rb', line 23237 def List @List end |
#RequestId ⇒ Object
23237 23238 23239 |
# File 'lib/v20180228/models.rb', line 23237 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 |
# File 'lib/v20180228/models.rb', line 23244 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| vulinfobycveid_tmp = VulInfoByCveId.new vulinfobycveid_tmp.deserialize(i) @List << vulinfobycveid_tmp end end @RequestId = params['RequestId'] end |