Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
30 lines (21 loc) · 1.32 KB
·

RenderResponseArrayParamsIndexBackupList.md

File metadata and controls

30 lines (21 loc) · 1.32 KB
·

RenderResponseArrayParamsIndexBackupList

Properties

Name Type Description Notes
benchmark float [optional]
data List[ParamsIndexBackupList] [optional]

Example

from vulncheck_sdk.models.render_response_array_params_index_backup_list import RenderResponseArrayParamsIndexBackupList

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

# convert the object into a dict
render_response_array_params_index_backup_list_dict = render_response_array_params_index_backup_list_instance.to_dict()
# create an instance of RenderResponseArrayParamsIndexBackupList from a dict
render_response_array_params_index_backup_list_from_dict = RenderResponseArrayParamsIndexBackupList.from_dict(render_response_array_params_index_backup_list_dict)

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