Class ResponseComputerToolCall.Action.Click.Builder
- 
                    
                    
- All Implemented Interfaces:
 
public final class ResponseComputerToolCall.Action.Click.BuilderA 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)
Sets Builder.button to an arbitrary JSON value.
You should usually call Builder.button with a well-typed Button value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
type
final ResponseComputerToolCall.Action.Click.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("click")This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
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)
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.Click.Builder y(Long y)
The y-coordinate where the click occurred.
 
- 
                                        
y
final ResponseComputerToolCall.Action.Click.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.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()
Returns an immutable instance of Click.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.button() .x() .y() 
 - 
                                        
 
 - 
                                
                            
                                
 
 - 
                    
                    
                    
 
 -