thousandeyes-sdk-python/thousandeyes-sdk-test-results/docs/ApiRequestDetailAssertion.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.2 KiB

ApiRequestDetailAssertion

Properties

Name Type Description Notes
step int Index of the assertion, starting at 1. [optional]
has_failed bool Indicates if the assertion passed or failed. `true` if the assertion failed; `false` if the assertion passed. [optional]

Example

from thousandeyes_sdk.test_results.models.api_request_detail_assertion import ApiRequestDetailAssertion

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

# convert the object into a dict
api_request_detail_assertion_dict = api_request_detail_assertion_instance.to_dict()
# create an instance of ApiRequestDetailAssertion from a dict
api_request_detail_assertion_from_dict = ApiRequestDetailAssertion.from_dict(api_request_detail_assertion_dict)

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