| Name | Type | Description | Notes |
|---|---|---|---|
| tracing_id | str | ||
| device_id | int | id is 0 if not defined | |
| start_time | datetime | ||
| status | int | ||
| status_string | str | ||
| steps | List[TraceStep] |
from sensorbucket.models.trace import Trace
# TODO update the JSON string below
json = "{}"
# create an instance of Trace from a JSON string
trace_instance = Trace.from_json(json)
# print the JSON string representation of the object
print(Trace.to_json())
# convert the object into a dict
trace_dict = trace_instance.to_dict()
# create an instance of Trace from a dict
trace_from_dict = Trace.from_dict(trace_dict)