Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 962 Bytes

File metadata and controls

34 lines (25 loc) · 962 Bytes

Trace

Properties

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]

Example

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)

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