Response schema that represent a list of ProcessingResponseModel's
Name | Type | Description | Notes |
---|---|---|---|
resource_list | List[ProcessingResponseModel] | A list of ProcessingResponseModel objects |
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)