Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

V0044OpenapiResp

Properties

Name Type Description Notes
meta V0044OpenapiMeta [optional]
errors List[V0044OpenapiError] [optional]
warnings List[V0044OpenapiWarning] [optional]

Example

from slurmrest_python.models.v0044_openapi_resp import V0044OpenapiResp

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

# convert the object into a dict
v0044_openapi_resp_dict = v0044_openapi_resp_instance.to_dict()
# create an instance of V0044OpenapiResp from a dict
v0044_openapi_resp_from_dict = V0044OpenapiResp.from_dict(v0044_openapi_resp_dict)

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