Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

VulnerabilitiesListDetections200Response.md

File metadata and controls

31 lines (22 loc) · 1.29 KB

VulnerabilitiesListDetections200Response

Properties

Name Type Description Notes
next object [optional]
previous object [optional]
results object [optional]

Example

from kandji.models.vulnerabilities_list_detections200_response import VulnerabilitiesListDetections200Response

# TODO update the JSON string below
json = "{}"
# create an instance of VulnerabilitiesListDetections200Response from a JSON string
vulnerabilities_list_detections200_response_instance = VulnerabilitiesListDetections200Response.from_json(json)
# print the JSON string representation of the object
print(VulnerabilitiesListDetections200Response.to_json())

# convert the object into a dict
vulnerabilities_list_detections200_response_dict = vulnerabilities_list_detections200_response_instance.to_dict()
# create an instance of VulnerabilitiesListDetections200Response from a dict
vulnerabilities_list_detections200_response_from_dict = VulnerabilitiesListDetections200Response.from_dict(vulnerabilities_list_detections200_response_dict)

[Back to Model list] [Back to API list] [Back to README]