Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.22 KB

ProcessingResponseListModel.md

File metadata and controls

29 lines (21 loc) · 1.22 KB

ProcessingResponseListModel

Response schema that represent a list of ProcessingResponseModel's

Properties

Name Type Description Notes
resource_list List[ProcessingResponseModel] A list of ProcessingResponseModel objects

Example

from actinia_openapi_python_client.models.processing_response_list_model import ProcessingResponseListModel

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

# convert the object into a dict
processing_response_list_model_dict = processing_response_list_model_instance.to_dict()
# create an instance of ProcessingResponseListModel from a dict
processing_response_list_model_form_dict = processing_response_list_model.from_dict(processing_response_list_model_dict)

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