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

### Resources
- https://ogp.me/#type_profile

# `t`

```elixir
@type t() :: %SEO.OpenGraph.Profile{
  first_name: String.t(),
  gender: String.t(),
  last_name: String.t(),
  namespace: String.t(),
  username: String.t()
}
```

# `build`

Build a OpenGraph Profile

- `:first_name` - A name normally given to an individual by a parent or self-chosen.
- `:last_name` - A name inherited from a family or marriage and by which the individual is commonly known.
- `:username` - A short unique string to identify them.
- `:gender` - Their gender.

# `meta`

## Attributes

* `content` (`:any`) - Defaults to `nil`.
* `property` (`:string`) - Defaults to `"profile"`.

---

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