Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.32 KB

File metadata and controls

35 lines (26 loc) · 1.32 KB

GetTestResultList

Properties

Name Type Description Notes
application_id str [optional]
order Order [optional]
pagination Pagination [optional]
synthetic_metrics List[str]
tag_filter_expression TagFilterExpressionElement [optional]
tag_filters List[TagFilter] [optional]
time_frame TimeFrame [optional]

Example

from instana_client.models.get_test_result_list import GetTestResultList

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

# convert the object into a dict
get_test_result_list_dict = get_test_result_list_instance.to_dict()
# create an instance of GetTestResultList from a dict
get_test_result_list_from_dict = GetTestResultList.from_dict(get_test_result_list_dict)

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