Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.79 KB

File metadata and controls

44 lines (35 loc) · 1.79 KB

TestResultCommonProperties

Properties

Name Type Description Notes
client_id str
custom_tags Dict[str, str] [optional]
dns_query_type str [optional]
dns_server_name str [optional]
errors List[str] [optional]
id str [optional]
ism_details Dict[str, str] [optional]
last_errors TestLastError [optional]
location_display_label str [optional]
location_id str [optional]
run_type str [optional]
ssl_days_remaining str [optional]
test_common_properties TestCommonProperties [optional]
test_id str
test_last_error TestLastError [optional]
test_name str [optional]

Example

from instana_client.models.test_result_common_properties import TestResultCommonProperties

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

# convert the object into a dict
test_result_common_properties_dict = test_result_common_properties_instance.to_dict()
# create an instance of TestResultCommonProperties from a dict
test_result_common_properties_from_dict = TestResultCommonProperties.from_dict(test_result_common_properties_dict)

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