# `SEO.OpenGraph.Audio`
[🔗](https://github.com/dbernheisel/phoenix_seo/blob/0.2.1/lib/seo/open_graph/audio.ex#L1)

Data describing an audio file.

# `mime`

```elixir
@type mime() :: String.t()
```

# `t`

```elixir
@type t() :: %SEO.OpenGraph.Audio{
  secure_url: URI.t() | String.t(),
  type: mime(),
  url: URI.t() | String.t()
}
```

# `build`

```elixir
@spec build(SEO.attrs(), SEO.config()) :: t() | nil
```

The `og:audio` property has some optional structured properties:

- `:url` - The url with metadata that describes the audio.
- `:secure_url` - An alternate url to use if the webpage requires HTTPS.
- `:type` - A MIME type for this audio, eg, `"audio/mpeg"`.

# `meta`

## Attributes

* `content` (`:any`) - Defaults to `nil`.

---

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