an optional stack trace if the log message corresponds to an exception
| Name | Type | Description | Notes |
|---|
from dat_client.models.stack_trace import StackTrace
# TODO update the JSON string below
json = "{}"
# create an instance of StackTrace from a JSON string
stack_trace_instance = StackTrace.from_json(json)
# print the JSON string representation of the object
print(StackTrace.to_json())
# convert the object into a dict
stack_trace_dict = stack_trace_instance.to_dict()
# create an instance of StackTrace from a dict
stack_trace_from_dict = StackTrace.from_dict(stack_trace_dict)