Class ResponseComputerToolCall.Action.Move.Builder
-
- All Implemented Interfaces:
public final class ResponseComputerToolCall.Action.Move.Builder
A builder for Move.
-
-
Method Summary
-
-
Method Detail
-
type
final ResponseComputerToolCall.Action.Move.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("move")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
x
final ResponseComputerToolCall.Action.Move.Builder x(Long x)
The x-coordinate to move to.
-
x
final ResponseComputerToolCall.Action.Move.Builder x(JsonField<Long> x)
Sets Builder.x to an arbitrary JSON value.
You should usually call Builder.x with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
y
final ResponseComputerToolCall.Action.Move.Builder y(Long y)
The y-coordinate to move to.
-
y
final ResponseComputerToolCall.Action.Move.Builder y(JsonField<Long> y)
Sets Builder.y to an arbitrary JSON value.
You should usually call Builder.y with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ResponseComputerToolCall.Action.Move.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ResponseComputerToolCall.Action.Move.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ResponseComputerToolCall.Action.Move.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ResponseComputerToolCall.Action.Move.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ResponseComputerToolCall.Action.Move.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ResponseComputerToolCall.Action.Move build()
Returns an immutable instance of Move.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.x() .y()
-
-
-
-