Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 932 Bytes

File metadata and controls

30 lines (21 loc) · 932 Bytes

TestLastError

Properties

Name Type Description Notes
errors List[str] [optional]
start_time int [optional]

Example

from instana_client.models.test_last_error import TestLastError

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

# convert the object into a dict
test_last_error_dict = test_last_error_instance.to_dict()
# create an instance of TestLastError from a dict
test_last_error_from_dict = TestLastError.from_dict(test_last_error_dict)

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