| Name |
Type |
Description |
Notes |
| timestamp |
int |
Time that the log was generated. The time is represented as microseconds since the Unix Epoch. |
[optional] |
| level |
LogLevel |
|
[optional] |
| request_id |
str |
ID of the request associated with the log. The requestId is propagated across all logs generated by FreeClimb when processing a request. |
[optional] |
| account_id |
str |
ID of the account that this log was generated under. |
[optional] |
| call_id |
str |
ID of the Call associated with the log. Can be set to null if the log was generated without regard to a specific Call. |
[optional] |
| message |
str |
A simple string describing the event being logged. |
[optional] |
| metadata |
object |
JSON document containing metadata about the event. Some log messages may include request and response header content in this field. |
[optional] |
from freeclimb.models.log_result import LogResult
# TODO update the JSON string below
json = "{}"
# create an instance of LogResult from a JSON string
log_result_instance = LogResult.from_json(json)
# print the JSON string representation of the object
print(LogResult.to_json())
# convert the object into a dict
log_result_dict = log_result_instance.to_dict()
# create an instance of LogResult from a dict
log_result_from_dict = LogResult.from_dict(log_result_dict)
[Back to Model list] [Back to API list] [Back to README]