Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.09 KB

ApiExploitsChange.md

File metadata and controls

33 lines (24 loc) · 1.09 KB

ApiExploitsChange

Properties

Name Type Description Notes
change_time str [optional]
change_type str [optional]
var_field str [optional]
new_value object [optional]
old_value object [optional]

Example

from vulncheck_sdk.models.api_exploits_change import ApiExploitsChange

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

# convert the object into a dict
api_exploits_change_dict = api_exploits_change_instance.to_dict()
# create an instance of ApiExploitsChange from a dict
api_exploits_change_from_dict = ApiExploitsChange.from_dict(api_exploits_change_dict)

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