Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

V0042OpenapiWarning

Properties

Name Type Description Notes
description str Long form warning description [optional]
source str Source of warning or where warning was first detected [optional]

Example

from slurmrest_python.models.v0042_openapi_warning import V0042OpenapiWarning

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

# convert the object into a dict
v0042_openapi_warning_dict = v0042_openapi_warning_instance.to_dict()
# create an instance of V0042OpenapiWarning from a dict
v0042_openapi_warning_from_dict = V0042OpenapiWarning.from_dict(v0042_openapi_warning_dict)

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