Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

DatLogMessage

Properties

Name Type Description Notes
level Level log level of the log message
message object log message
stack_trace StackTrace [optional]
emitted_at EmittedAt [optional]

Example

from dat_client.models.dat_log_message import DatLogMessage

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

# convert the object into a dict
dat_log_message_dict = dat_log_message_instance.to_dict()
# create an instance of DatLogMessage from a dict
dat_log_message_from_dict = DatLogMessage.from_dict(dat_log_message_dict)

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