# `Hunter.Card.Author`
[🔗](https://github.com/milmazz/hunter/blob/v0.8.0/lib/hunter/card/author.ex#L1)

Card author entity

A fediverse author of the resource a `Hunter.Card` previews

## Fields

  * `name` - the original resource author's name
  * `url` - a link to the author's website
  * `account` - the author's `Hunter.Account`, if known to the instance

# `t`

```elixir
@type t() :: %Hunter.Card.Author{
  account: Hunter.Account.t() | nil,
  name: String.t(),
  url: String.t()
}
```

---

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