Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

File metadata and controls

32 lines (23 loc) · 1.33 KB

V0043OpenapiSlurmdbdPingResp

Properties

Name Type Description Notes
pings List[V0043SlurmdbdPing]
meta V0043OpenapiMeta [optional]
errors List[V0043OpenapiError] [optional]
warnings List[V0043OpenapiWarning] [optional]

Example

from slurmrest_python.models.v0043_openapi_slurmdbd_ping_resp import V0043OpenapiSlurmdbdPingResp

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

# convert the object into a dict
v0043_openapi_slurmdbd_ping_resp_dict = v0043_openapi_slurmdbd_ping_resp_instance.to_dict()
# create an instance of V0043OpenapiSlurmdbdPingResp from a dict
v0043_openapi_slurmdbd_ping_resp_from_dict = V0043OpenapiSlurmdbdPingResp.from_dict(v0043_openapi_slurmdbd_ping_resp_dict)

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