Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

Ping200Response

Properties

Name Type Description Notes
ok bool [optional]
user_id int [optional]
project Project [optional]
request_id str [optional]

Example

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)

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