Package com.openai.models.responses
Class ResponseFunctionWebSearch
-
- All Implemented Interfaces:
public final class ResponseFunctionWebSearch
The results of a web search tool call. See the web search guide for more information.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ResponseFunctionWebSearch.Builder
A builder for ResponseFunctionWebSearch.
public final class
ResponseFunctionWebSearch.Status
The status of the web search tool call.
-
Method Summary
Modifier and Type Method Description final String
id()
The unique ID of the web search tool call. final ResponseFunctionWebSearch.Status
status()
The status of the web search tool call. final JsonValue
_type()
The type of the web search tool call. final JsonField<String>
_id()
The unique ID of the web search tool call. final JsonField<ResponseFunctionWebSearch.Status>
_status()
The status of the web search tool call. final Map<String, JsonValue>
_additionalProperties()
final ResponseFunctionWebSearch
validate()
final ResponseFunctionWebSearch.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ResponseFunctionWebSearch.Builder
builder()
Returns a mutable builder for constructing an instance of ResponseFunctionWebSearch. -
-
Method Detail
-
status
final ResponseFunctionWebSearch.Status status()
The status of the web search tool call.
-
_status
final JsonField<ResponseFunctionWebSearch.Status> _status()
The status of the web search tool call.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final ResponseFunctionWebSearch validate()
-
toBuilder
final ResponseFunctionWebSearch.Builder toBuilder()
-
builder
final static ResponseFunctionWebSearch.Builder builder()
Returns a mutable builder for constructing an instance of ResponseFunctionWebSearch.
The following fields are required:
.id() .status()
-
-
-
-