| Name | Type | Description | Notes |
|---|---|---|---|
| ok | bool | [optional] | |
| user_id | int | [optional] | |
| project | Project | [optional] | |
| request_id | str | [optional] |
from llmpulse.models.ping200_response import Ping200Response
# TODO update the JSON string below
json = "{}"
# create an instance of Ping200Response from a JSON string
ping200_response_instance = Ping200Response.from_json(json)
# print the JSON string representation of the object
print(Ping200Response.to_json())
# convert the object into a dict
ping200_response_dict = ping200_response_instance.to_dict()
# create an instance of Ping200Response from a dict
ping200_response_from_dict = Ping200Response.from_dict(ping200_response_dict)