Class RunCancelResponse.DataSource.Responses.Source
-
- All Implemented Interfaces:
public final class RunCancelResponse.DataSource.Responses.SourceDetermines what populates the
itemnamespace in this run's data source.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceRunCancelResponse.DataSource.Responses.Source.VisitorAn interface that defines how to map each variant of Source to a value of type T.
public final classRunCancelResponse.DataSource.Responses.Source.FileContentpublic final classRunCancelResponse.DataSource.Responses.Source.FileIdpublic final classRunCancelResponse.DataSource.Responses.Source.InnerResponsesA EvalResponsesSource object describing a run data source configuration.
-
Method Summary
-
-
Method Detail
-
fileContent
final Optional<RunCancelResponse.DataSource.Responses.Source.FileContent> fileContent()
-
fileId
final Optional<RunCancelResponse.DataSource.Responses.Source.FileId> fileId()
-
responses
final Optional<RunCancelResponse.DataSource.Responses.Source.InnerResponses> responses()
A EvalResponsesSource object describing a run data source configuration.
-
isFileContent
final Boolean isFileContent()
-
isResponses
final Boolean isResponses()
-
asFileContent
final RunCancelResponse.DataSource.Responses.Source.FileContent asFileContent()
-
asFileId
final RunCancelResponse.DataSource.Responses.Source.FileId asFileId()
-
asResponses
final RunCancelResponse.DataSource.Responses.Source.InnerResponses asResponses()
A EvalResponsesSource object describing a run data source configuration.
-
accept
final <T extends Any> T accept(RunCancelResponse.DataSource.Responses.Source.Visitor<T> visitor)
Maps this instance's current variant to a value of type T using the given visitor.
Note that this method is not forwards compatible with new variants from the API, unless visitor overrides Visitor.unknown. To handle variants not known to this version of the SDK gracefully, consider overriding Visitor.unknown:
import com.openai.core.JsonValue; import java.util.Optional; Optional<String> result = source.accept(new Source.Visitor<Optional<String>>() { @Override public Optional<String> visitFileContent(FileContent fileContent) { return Optional.of(fileContent.toString()); } // ... @Override public Optional<String> unknown(JsonValue json) { // Or inspect the `json`. return Optional.empty(); } });
-
validate
final RunCancelResponse.DataSource.Responses.Source validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
ofFileContent
final static RunCancelResponse.DataSource.Responses.Source ofFileContent(RunCancelResponse.DataSource.Responses.Source.FileContent fileContent)
-
ofFileId
final static RunCancelResponse.DataSource.Responses.Source ofFileId(RunCancelResponse.DataSource.Responses.Source.FileId fileId)
-
ofResponses
final static RunCancelResponse.DataSource.Responses.Source ofResponses(RunCancelResponse.DataSource.Responses.Source.InnerResponses responses)
A EvalResponsesSource object describing a run data source configuration.
-
-
-
-