Current section
Files
Jump to
Current section
Files
lib/schemas/response/computer/double_click.ex
defmodule OpenAi.Response.Computer.DoubleClick do
@moduledoc """
Provides struct and type for a Response.Computer.DoubleClick
"""
@type t :: %__MODULE__{type: String.t(), x: integer, y: integer}
defstruct [:type, :x, :y]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[type: {:const, "double_click"}, x: :integer, y: :integer]
end
end