| Name | Type | Description | Notes |
|---|---|---|---|
| pings | List[V0040ControllerPing] | ||
| meta | V0040OpenapiMeta | [optional] | |
| errors | List[V0040OpenapiError] | [optional] | |
| warnings | List[V0040OpenapiWarning] | [optional] |
from slurm_api_client.models.v0040_openapi_ping_array_resp import V0040OpenapiPingArrayResp
# TODO update the JSON string below
json = "{}"
# create an instance of V0040OpenapiPingArrayResp from a JSON string
v0040_openapi_ping_array_resp_instance = V0040OpenapiPingArrayResp.from_json(json)
# print the JSON string representation of the object
print(V0040OpenapiPingArrayResp.to_json())
# convert the object into a dict
v0040_openapi_ping_array_resp_dict = v0040_openapi_ping_array_resp_instance.to_dict()
# create an instance of V0040OpenapiPingArrayResp from a dict
v0040_openapi_ping_array_resp_from_dict = V0040OpenapiPingArrayResp.from_dict(v0040_openapi_ping_array_resp_dict)