PingResponse
Properties
Name |
Type |
Description |
Notes |
status |
str |
Status of the server |
default to 'ok' |
Example
from rxinferclient.models.ping_response import PingResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PingResponse from a JSON string
ping_response_instance = PingResponse.from_json(json)
# print the JSON string representation of the object
print(PingResponse.to_json())
# convert the object into a dict
ping_response_dict = ping_response_instance.to_dict()
# create an instance of PingResponse from a dict
ping_response_from_dict = PingResponse.from_dict(ping_response_dict)
[Back to Model list] [Back to API list] [Back to README]