Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 868 Bytes

File metadata and controls

29 lines (20 loc) · 868 Bytes

StackTrace

an optional stack trace if the log message corresponds to an exception

Properties

Name Type Description Notes

Example

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)

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