| Name |
Type |
Description |
Notes |
| description |
str |
Long form error description |
[optional] |
| error_number |
int |
Slurm numeric error identifier |
[optional] |
| error |
str |
Short form error description |
[optional] |
| source |
str |
Source of error or where error was first detected |
[optional] |
from slurmrest_python.models.v0042_openapi_error import V0042OpenapiError
# TODO update the JSON string below
json = "{}"
# create an instance of V0042OpenapiError from a JSON string
v0042_openapi_error_instance = V0042OpenapiError.from_json(json)
# print the JSON string representation of the object
print(V0042OpenapiError.to_json())
# convert the object into a dict
v0042_openapi_error_dict = v0042_openapi_error_instance.to_dict()
# create an instance of V0042OpenapiError from a dict
v0042_openapi_error_from_dict = V0042OpenapiError.from_dict(v0042_openapi_error_dict)
[Back to Model list] [Back to API list] [Back to README]