Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.38 KB

File metadata and controls

32 lines (23 loc) · 1.38 KB

VulnerabilitiesListAffectedDevices200Response

Properties

Name Type Description Notes
page int [optional]
results object [optional]
size int [optional]
total int [optional]

Example

from kandji.models.vulnerabilities_list_affected_devices200_response import VulnerabilitiesListAffectedDevices200Response

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

# convert the object into a dict
vulnerabilities_list_affected_devices200_response_dict = vulnerabilities_list_affected_devices200_response_instance.to_dict()
# create an instance of VulnerabilitiesListAffectedDevices200Response from a dict
vulnerabilities_list_affected_devices200_response_from_dict = VulnerabilitiesListAffectedDevices200Response.from_dict(vulnerabilities_list_affected_devices200_response_dict)

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