Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

NaviraFullLogResponse

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]
response object The response represented as a JSON object.

Example

from onelens_backend_client.models.navira_full_log_response import NaviraFullLogResponse

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

# convert the object into a dict
navira_full_log_response_dict = navira_full_log_response_instance.to_dict()
# create an instance of NaviraFullLogResponse from a dict
navira_full_log_response_form_dict = navira_full_log_response.from_dict(navira_full_log_response_dict)

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