thousandeyes-sdk-python/thousandeyes-sdk-endpoint-test-results/docs/DynamicEndpointTestsDataRoundSearch.md
2024-09-20 09:48:48 +00:00

1.5 KiB

DynamicEndpointTestsDataRoundSearch

Properties

Name Type Description Notes
search_sort **List[EndpointTestsDataSearchSort]** [optional]
threshold_filter EndpointTestsDataThresholdFilters [optional]
search_filters DynamicEndpointTestsDataSearchFilter [optional]

Example

from thousandeyes_sdk.endpoint_test_results.models.dynamic_endpoint_tests_data_round_search import DynamicEndpointTestsDataRoundSearch

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

# convert the object into a dict
dynamic_endpoint_tests_data_round_search_dict = dynamic_endpoint_tests_data_round_search_instance.to_dict()
# create an instance of DynamicEndpointTestsDataRoundSearch from a dict
dynamic_endpoint_tests_data_round_search_from_dict = DynamicEndpointTestsDataRoundSearch.from_dict(dynamic_endpoint_tests_data_round_search_dict)

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