Skip to content

Latest commit

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

InsertAnalysisLogRequest

Properties

NameTypeDescriptionNotes
logstrThe log message to insert for the analysis

Example

fromrevengai.models.insert_analysis_log_requestimportInsertAnalysisLogRequest# TODO update the JSON string belowjson="{}"# create an instance of InsertAnalysisLogRequest from a JSON stringinsert_analysis_log_request_instance=InsertAnalysisLogRequest.from_json(json)
# print the JSON string representation of the objectprint(InsertAnalysisLogRequest.to_json())
# convert the object into a dictinsert_analysis_log_request_dict=insert_analysis_log_request_instance.to_dict()
# create an instance of InsertAnalysisLogRequest from a dictinsert_analysis_log_request_from_dict=InsertAnalysisLogRequest.from_dict(insert_analysis_log_request_dict)

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