Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 970 Bytes

File metadata and controls

33 lines (24 loc) · 970 Bytes

TraceStep

Properties

Name Type Description Notes
start_time datetime [optional]
status int
status_string str
duration float Duration in seconds
error str

Example

from sensorbucket.models.trace_step import TraceStep

# TODO update the JSON string below
json = "{}"
# create an instance of TraceStep from a JSON string
trace_step_instance = TraceStep.from_json(json)
# print the JSON string representation of the object
print(TraceStep.to_json())

# convert the object into a dict
trace_step_dict = trace_step_instance.to_dict()
# create an instance of TraceStep from a dict
trace_step_from_dict = TraceStep.from_dict(trace_step_dict)

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