Table of Contents

Class DoubleClickComputerAction

Namespace
OpenAI.Responses
Assembly
OpenAI-DotNet.dll

A double click action.

public sealed class DoubleClickComputerAction : IComputerAction
Inheritance
DoubleClickComputerAction
Implements
Inherited Members

Constructors

DoubleClickComputerAction()

public DoubleClickComputerAction()

DoubleClickComputerAction(Coordinate)

public DoubleClickComputerAction(Coordinate position)

Parameters

position Coordinate

Properties

Type

Specifies the event type.For a double click action, this property is always set to double_click.

[JsonInclude]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("type")]
public ComputerActionType Type { get; }

Property Value

ComputerActionType

X

The x-coordinate where the double click occurred.

[JsonInclude]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("x")]
public int X { get; }

Property Value

int

Y

The y-coordinate where the double click occurred.

[JsonInclude]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("y")]
public int Y { get; }

Property Value

int