Package com.openai.models.evals.runs
Class RunCreateResponse.PerTestingCriteriaResult
-
- All Implemented Interfaces:
public final class RunCreateResponse.PerTestingCriteriaResult
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
RunCreateResponse.PerTestingCriteriaResult.Builder
A builder for PerTestingCriteriaResult.
-
Method Summary
Modifier and Type Method Description final Long
failed()
Number of tests failed for this criteria. final Long
passed()
Number of tests passed for this criteria. final String
testingCriteria()
A description of the testing criteria. final JsonField<Long>
_failed()
Returns the raw JSON value of failed. final JsonField<Long>
_passed()
Returns the raw JSON value of passed. final JsonField<String>
_testingCriteria()
Returns the raw JSON value of testingCriteria. final Map<String, JsonValue>
_additionalProperties()
final RunCreateResponse.PerTestingCriteriaResult.Builder
toBuilder()
final RunCreateResponse.PerTestingCriteriaResult
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static RunCreateResponse.PerTestingCriteriaResult.Builder
builder()
Returns a mutable builder for constructing an instance of PerTestingCriteriaResult. -
-
Method Detail
-
testingCriteria
final String testingCriteria()
A description of the testing criteria.
-
_failed
final JsonField<Long> _failed()
Returns the raw JSON value of failed.
Unlike failed, this method doesn't throw if the JSON field has an unexpected type.
-
_passed
final JsonField<Long> _passed()
Returns the raw JSON value of passed.
Unlike passed, this method doesn't throw if the JSON field has an unexpected type.
-
_testingCriteria
final JsonField<String> _testingCriteria()
Returns the raw JSON value of testingCriteria.
Unlike testingCriteria, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final RunCreateResponse.PerTestingCriteriaResult.Builder toBuilder()
-
validate
final RunCreateResponse.PerTestingCriteriaResult validate()
-
builder
final static RunCreateResponse.PerTestingCriteriaResult.Builder builder()
Returns a mutable builder for constructing an instance of PerTestingCriteriaResult.
The following fields are required:
.failed() .passed() .testingCriteria()
-
-
-
-