Class: DatadogAPIClient::V2::UpdateFlakyTestsResponseResult
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::UpdateFlakyTestsResponseResult
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/update_flaky_tests_response_result.rb
Overview
Result of updating a single flaky test state.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#error ⇒ Object
Error message if the update failed.
-
#id ⇒ Object
readonly
The ID of the flaky test from the request.
-
#success ⇒ Object
readonly
Trueif the update was successful,Falseif there were any errors.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
35 36 37 |
# File 'lib/datadog_api_client/v2/models/update_flaky_tests_response_result.rb', line 35 def additional_properties @additional_properties end |
#error ⇒ Object
Error message if the update failed.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/update_flaky_tests_response_result.rb', line 25 def error @error end |
#id ⇒ Object
The ID of the flaky test from the request. This is the value of the @test.fingerprint_fqn facet
on test events, the same ID accepted by the update request and returned by the Search flaky tests
endpoint.
30 31 32 |
# File 'lib/datadog_api_client/v2/models/update_flaky_tests_response_result.rb', line 30 def id @id end |
#success ⇒ Object
True if the update was successful, False if there were any errors.
33 34 35 |
# File 'lib/datadog_api_client/v2/models/update_flaky_tests_response_result.rb', line 33 def success @success end |