Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

RenderResponseArrayParamsIndexList.md

File metadata and controls

30 lines (21 loc) · 1.23 KB

RenderResponseArrayParamsIndexList

Properties

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

Example

from vulncheck_sdk.models.render_response_array_params_index_list import RenderResponseArrayParamsIndexList

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

# convert the object into a dict
render_response_array_params_index_list_dict = render_response_array_params_index_list_instance.to_dict()
# create an instance of RenderResponseArrayParamsIndexList from a dict
render_response_array_params_index_list_from_dict = RenderResponseArrayParamsIndexList.from_dict(render_response_array_params_index_list_dict)

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