# `Beancount.Value.Tag`
[🔗](https://github.com/thanos/beancount_ex/blob/v0.6.0/lib/beancount/value.ex#L35)

A tag for `custom` directive values.

## Beancount syntax

    #monthly

## Elixir struct

    %Beancount.Value.Tag{name: "monthly"}

Or use `Beancount.tag_value/1`:

    Beancount.tag_value("monthly")

## Fields

  * `name` - tag without `#` (rendered as `#name`).

# `t`

```elixir
@type t() :: %Beancount.Value.Tag{name: String.t()}
```

---

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