Beancount.Value.Account (beancount_ex v0.6.0)

Copy Markdown View Source

An account name for custom directive values.

Beancount syntax

Expenses:Food

Elixir struct

%Beancount.Value.Account{name: "Expenses:Food"}

Or use Beancount.account_value/1:

Beancount.account_value("Expenses:Food")

Fields

  • name - colon-separated account string rendered as a bareword.

Summary

Types

t()

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