Response schema for a list of categorical statistics.
Name | Type | Description | Notes |
---|---|---|---|
status | str | The status of the response | |
user_id | str | The id of the user that issued a request | |
resource_id | str | The unique resource id | |
queue | str | The name of the queue in which the job is queued | [optional] |
process_log | List[ProcessLogModel] | A list of ProcessLogModels | [optional] |
process_chain_list | List[GrassModule] | The list of GRASS modules that were used in the processing | [optional] |
process_results | List[CategoricalStatisticsResultModel] | [optional] | |
progress | ProgressInfoModel | [optional] | |
message | str | Message for the user, maybe status, finished or error message | |
exception | ExceptionTracebackModel | [optional] | |
accept_timestamp | float | The acceptance timestamp in seconds of the response | |
accept_datetime | str | The acceptance timestamp of the response in human readable format | |
timestamp | float | The current timestamp in seconds of the response | |
time_delta | float | The time delta of the processing in seconds | [optional] |
datetime | str | The current timestamp of the response in human readable format | |
http_code | float | The HTTP code of the response | [optional] |
urls | UrlModel | [optional] | |
api_info | ApiInfoModel | [optional] |
from actinia_openapi_python_client.models.raster_area_stats_response_model import RasterAreaStatsResponseModel
# TODO update the JSON string below
json = "{}"
# create an instance of RasterAreaStatsResponseModel from a JSON string
raster_area_stats_response_model_instance = RasterAreaStatsResponseModel.from_json(json)
# print the JSON string representation of the object
print RasterAreaStatsResponseModel.to_json()
# convert the object into a dict
raster_area_stats_response_model_dict = raster_area_stats_response_model_instance.to_dict()
# create an instance of RasterAreaStatsResponseModel from a dict
raster_area_stats_response_model_form_dict = raster_area_stats_response_model.from_dict(raster_area_stats_response_model_dict)