Beancount.Value.Tag (beancount_ex v0.6.0)

Copy Markdown View Source

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).

Summary

Types

t()

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