| Name |
Type |
Description |
Notes |
| metrics |
Dict[str, object] |
|
|
| properties |
Dict[str, object] |
|
|
from instana_client.models.test_result_subtransaction import TestResultSubtransaction
# TODO update the JSON string below
json = "{}"
# create an instance of TestResultSubtransaction from a JSON string
test_result_subtransaction_instance = TestResultSubtransaction.from_json(json)
# print the JSON string representation of the object
print(TestResultSubtransaction.to_json())
# convert the object into a dict
test_result_subtransaction_dict = test_result_subtransaction_instance.to_dict()
# create an instance of TestResultSubtransaction from a dict
test_result_subtransaction_from_dict = TestResultSubtransaction.from_dict(test_result_subtransaction_dict)
[Back to Model list] [Back to API list] [Back to README]