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

Source location information.

# `t`

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

# `column`

```elixir
@spec column(t()) :: {:ok, integer()} | {:error, term()}
```

The column number within the line.

# `filename`

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

The filename from the module source.

# `id`

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

A unique identifier for this SourceMap.

# `line`

```elixir
@spec line(t()) :: {:ok, integer()} | {:error, term()}
```

The line number within the filename.

# `module`

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

The module dependency this was declared in.

# `url`

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

The URL to the file, if any. This can be used to link to the source map in the browser.

---

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