Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

GetTestResultBase

Properties

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

Example

from instana_client.models.get_test_result_base import GetTestResultBase

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

# convert the object into a dict
get_test_result_base_dict = get_test_result_base_instance.to_dict()
# create an instance of GetTestResultBase from a dict
get_test_result_base_from_dict = GetTestResultBase.from_dict(get_test_result_base_dict)

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