Package com.openai.models.responses
Class ResponseComputerToolCall.Action.Click.Builder
-
- All Implemented Interfaces:
public final class ResponseComputerToolCall.Action.Click.Builder
A builder for Click.
-
-
Method Summary
-
-
Method Detail
-
button
final ResponseComputerToolCall.Action.Click.Builder button(ResponseComputerToolCall.Action.Click.Button button)
Indicates which mouse button was pressed during the click. One of
left
,right
,wheel
,back
, orforward
.
-
button
final ResponseComputerToolCall.Action.Click.Builder button(JsonField<ResponseComputerToolCall.Action.Click.Button> button)
Indicates which mouse button was pressed during the click. One of
left
,right
,wheel
,back
, orforward
.
-
type
final ResponseComputerToolCall.Action.Click.Builder type(JsonValue type)
Specifies the event type. For a click action, this property is always set to
click
.
-
x
final ResponseComputerToolCall.Action.Click.Builder x(Long x)
The x-coordinate where the click occurred.
-
x
final ResponseComputerToolCall.Action.Click.Builder x(JsonField<Long> x)
The x-coordinate where the click occurred.
-
y
final ResponseComputerToolCall.Action.Click.Builder y(Long y)
The y-coordinate where the click occurred.
-
y
final ResponseComputerToolCall.Action.Click.Builder y(JsonField<Long> y)
The y-coordinate where the click occurred.
-
additionalProperties
final ResponseComputerToolCall.Action.Click.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ResponseComputerToolCall.Action.Click.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ResponseComputerToolCall.Action.Click.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ResponseComputerToolCall.Action.Click.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ResponseComputerToolCall.Action.Click.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ResponseComputerToolCall.Action.Click build()
-
-
-
-