Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1002 Bytes

ApiConfigurations.md

File metadata and controls

30 lines (21 loc) · 1002 Bytes

ApiConfigurations

Properties

Name Type Description Notes
cve_data_version str [optional]
nodes List[ApiNodes] [optional]

Example

from vulncheck_sdk.models.api_configurations import ApiConfigurations

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

# convert the object into a dict
api_configurations_dict = api_configurations_instance.to_dict()
# create an instance of ApiConfigurations from a dict
api_configurations_from_dict = ApiConfigurations.from_dict(api_configurations_dict)

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