Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

DatLogMessage

Properties

Name Type Description Notes
level DatLogMessageLevel [optional]
message Message [optional]
stack_trace StackTrace [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_form_dict = dat_log_message.from_dict(dat_log_message_dict)

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