# `Dagger.Check`
[🔗](https://github.com/dagger/dagger/blob/v0.20.5/sdk/elixir/lib/dagger/gen/check.ex#L2)

Dagger.Check

# `t`

```elixir
@type t() :: %Dagger.Check{client: term(), query_builder: term()}
```

# `completed`

```elixir
@spec completed(t()) :: {:ok, boolean()} | {:error, term()}
```

Whether the check completed

# `description`

```elixir
@spec description(t()) :: {:ok, String.t()} | {:error, term()}
```

The description of the check

# `id`

```elixir
@spec id(t()) :: {:ok, Dagger.CheckID.t()} | {:error, term()}
```

A unique identifier for this Check.

# `name`

```elixir
@spec name(t()) :: {:ok, String.t()} | {:error, term()}
```

Return the fully qualified name of the check

# `passed`

```elixir
@spec passed(t()) :: {:ok, boolean()} | {:error, term()}
```

Whether the check passed

# `path`

```elixir
@spec path(t()) :: {:ok, [String.t()]} | {:error, term()}
```

The path of the check within its module

# `result_emoji`

```elixir
@spec result_emoji(t()) :: {:ok, String.t()} | {:error, term()}
```

An emoji representing the result of the check

# `run`

```elixir
@spec run(t()) :: t()
```

Execute the check

---

*Consult [api-reference.md](api-reference.md) for complete listing*
