Model representing a Navira log response object , containing the log's unique identifier, the query prompt, and the response.
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] |
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)