| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package aegis
- //Licensed under the Apache License, Version 2.0 (the "License");
- //you may not use this file except in compliance with the License.
- //You may obtain a copy of the License at
- //
- //http://www.apache.org/licenses/LICENSE-2.0
- //
- //Unless required by applicable law or agreed to in writing, software
- //distributed under the License is distributed on an "AS IS" BASIS,
- //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- //See the License for the specific language governing permissions and
- //limitations under the License.
- //
- // Code generated by Alibaba Cloud SDK Code Generator.
- // Changes may cause incorrect behavior and will be lost if the code is regenerated.
- // CvesItem is a nested struct in aegis response
- type CvesItem struct {
- CveId string `json:"CveId" xml:"CveId"`
- CnvdId string `json:"CnvdId" xml:"CnvdId"`
- OtherId string `json:"OtherId" xml:"OtherId"`
- Title string `json:"Title" xml:"Title"`
- CvssScore string `json:"CvssScore" xml:"CvssScore"`
- CvssVector string `json:"CvssVector" xml:"CvssVector"`
- ReleaseTime int `json:"ReleaseTime" xml:"ReleaseTime"`
- Complexity string `json:"Complexity" xml:"Complexity"`
- Poc string `json:"Poc" xml:"Poc"`
- PocCreateTime int `json:"PocCreateTime" xml:"PocCreateTime"`
- PocDisclosureTime int `json:"PocDisclosureTime" xml:"PocDisclosureTime"`
- Summary string `json:"Summary" xml:"Summary"`
- Solution string `json:"Solution" xml:"Solution"`
- Content string `json:"Content" xml:"Content"`
- Vendor string `json:"Vendor" xml:"Vendor"`
- Product string `json:"Product" xml:"Product"`
- VulLevel string `json:"VulLevel" xml:"VulLevel"`
- Reference string `json:"Reference" xml:"Reference"`
- Classify string `json:"Classify" xml:"Classify"`
- Classifys []ClassifysItem `json:"Classifys" xml:"Classifys"`
- }
|