Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

NaviraLogResponse.md

File metadata and controls

32 lines (23 loc) · 1.19 KB

NaviraLogResponse

Model representing a Navira log response object , containing the log's unique identifier, the query prompt, and the response.

Properties

Name Type Description Notes
id str Unique integer identifier for the record.
request object The query data represented as a JSON object.
created_at datetime [optional]

Example

from onelens_backend_client.models.navira_log_response import NaviraLogResponse

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

# convert the object into a dict
navira_log_response_dict = navira_log_response_instance.to_dict()
# create an instance of NaviraLogResponse from a dict
navira_log_response_form_dict = navira_log_response.from_dict(navira_log_response_dict)

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