Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 2.55 KB

File metadata and controls

46 lines (38 loc) · 2.55 KB

GridTilingResponseModel

Grid tiling response schema.

Properties

Name Type Description Notes
status str The status of the response [optional]
user_id str The id of the user that issued a request [optional]
resource_id str The unique resource id [optional]
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[str] The names of all created tiles. [optional]
progress ProgressInfoModel [optional]
message str Message for the user, maybe status, finished or error message [optional]
exception ExceptionTracebackModel [optional]
accept_timestamp float The acceptance timestamp in seconds of the response [optional]
accept_datetime str The acceptance timestamp of the response in human readable format [optional]
timestamp float The current timestamp in seconds of the response [optional]
time_delta float The time delta of the processing in seconds [optional]
datetime str The current timestamp of the response in human readable format [optional]
http_code float The HTTP code of the response [optional]
urls UrlModel [optional]
api_info ApiInfoModel [optional]

Example

from actinia_openapi_python_client.models.grid_tiling_response_model import GridTilingResponseModel

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

# convert the object into a dict
grid_tiling_response_model_dict = grid_tiling_response_model_instance.to_dict()
# create an instance of GridTilingResponseModel from a dict
grid_tiling_response_model_form_dict = grid_tiling_response_model.from_dict(grid_tiling_response_model_dict)

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