Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.36 KB

CreateNaviraLogRequest.md

File metadata and controls

35 lines (26 loc) · 1.36 KB

CreateNaviraLogRequest

Properties

Name Type Description Notes
tenant_id str The id of the tenant.
user_id str User ID (UUID4) associated with the log.
request object [optional]
status GenerationStatus The status of the log. [optional]
response object [optional]
extradata object [optional]
feedback FeedbackModel [optional]

Example

from onelens_backend_client.models.create_navira_log_request import CreateNaviraLogRequest

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

# convert the object into a dict
create_navira_log_request_dict = create_navira_log_request_instance.to_dict()
# create an instance of CreateNaviraLogRequest from a dict
create_navira_log_request_form_dict = create_navira_log_request.from_dict(create_navira_log_request_dict)

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