Package com.openai.models.responses
Class ResponseComputerToolCall.Action.Keypress.Builder
-
- All Implemented Interfaces:
public final class ResponseComputerToolCall.Action.Keypress.Builder
A builder for Keypress.
-
-
Method Summary
-
-
Method Detail
-
keys
final ResponseComputerToolCall.Action.Keypress.Builder keys(List<String> keys)
The combination of keys the model is requesting to be pressed. This is an array of strings, each representing a key.
-
keys
final ResponseComputerToolCall.Action.Keypress.Builder keys(JsonField<List<String>> keys)
The combination of keys the model is requesting to be pressed. This is an array of strings, each representing a key.
-
addKey
final ResponseComputerToolCall.Action.Keypress.Builder addKey(String key)
The combination of keys the model is requesting to be pressed. This is an array of strings, each representing a key.
-
type
final ResponseComputerToolCall.Action.Keypress.Builder type(JsonValue type)
Specifies the event type. For a keypress action, this property is always set to
keypress
.
-
additionalProperties
final ResponseComputerToolCall.Action.Keypress.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ResponseComputerToolCall.Action.Keypress.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ResponseComputerToolCall.Action.Keypress.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ResponseComputerToolCall.Action.Keypress.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ResponseComputerToolCall.Action.Keypress.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ResponseComputerToolCall.Action.Keypress build()
-
-
-
-