# `ExDisco.Types.Image`
[🔗](https://github.com/bo1ta/ex_disco/blob/main/lib/ex_disco/types/image.ex#L1)

A Discogs image — covers both full-size and thumbnail URIs.

# `t`

```elixir
@type t() :: %ExDisco.Types.Image{
  height: pos_integer() | nil,
  resource_url: String.t() | nil,
  type: String.t() | nil,
  uri: String.t(),
  uri150: String.t() | nil,
  width: pos_integer() | nil
}
```

# `get_primary_image`

```elixir
@spec get_primary_image([t()]) :: t() | nil
```

Extracts the primary image from the images list

---

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