Package com.openai.models.responses
Class ResponseComputerToolCall.Action.Drag.Path
-
- All Implemented Interfaces:
public final class ResponseComputerToolCall.Action.Drag.Path
A series of x/y coordinate pairs in the drag path.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ResponseComputerToolCall.Action.Drag.Path.Builder
A builder for Path.
-
Method Summary
Modifier and Type Method Description final Long
x()
The x-coordinate. final Long
y()
The y-coordinate. final JsonField<Long>
_x()
Returns the raw JSON value of x. final JsonField<Long>
_y()
Returns the raw JSON value of y. final Map<String, JsonValue>
_additionalProperties()
final ResponseComputerToolCall.Action.Drag.Path.Builder
toBuilder()
final ResponseComputerToolCall.Action.Drag.Path
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ResponseComputerToolCall.Action.Drag.Path.Builder
builder()
Returns a mutable builder for constructing an instance of Path. -
-
Method Detail
-
_x
final JsonField<Long> _x()
Returns the raw JSON value of x.
Unlike x, this method doesn't throw if the JSON field has an unexpected type.
-
_y
final JsonField<Long> _y()
Returns the raw JSON value of y.
Unlike y, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ResponseComputerToolCall.Action.Drag.Path.Builder toBuilder()
-
validate
final ResponseComputerToolCall.Action.Drag.Path validate()
-
builder
final static ResponseComputerToolCall.Action.Drag.Path.Builder builder()
Returns a mutable builder for constructing an instance of Path.
The following fields are required:
.x() .y()
-
-
-
-