Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.39 KB

File metadata and controls

32 lines (23 loc) · 1.39 KB

V0041OpenapiSharesRespErrorsInner

Properties

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]

Example

from slurmrest_python.models.v0041_openapi_shares_resp_errors_inner import V0041OpenapiSharesRespErrorsInner

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

# convert the object into a dict
v0041_openapi_shares_resp_errors_inner_dict = v0041_openapi_shares_resp_errors_inner_instance.to_dict()
# create an instance of V0041OpenapiSharesRespErrorsInner from a dict
v0041_openapi_shares_resp_errors_inner_from_dict = V0041OpenapiSharesRespErrorsInner.from_dict(v0041_openapi_shares_resp_errors_inner_dict)

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