Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

TestResultSubtransaction

Properties

Name Type Description Notes
metrics Dict[str, object]
properties Dict[str, object]

Example

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]