Beancount.Schemas.PushTag (beancount_ex v0.6.0)

Copy Markdown View Source

Persisted pushtag directive (table beancount_push_tags).

Storage-layer counterpart of Beancount.Directives.PushTag. This directive has no date; its position (file_order) determines the tag's scope.

Fields

  • tag - tag name without the leading #, e.g. "trip-athens".
  • file_order - zero-based position of the directive in the source.

Example

%Beancount.Schemas.PushTag{tag: "trip-athens", file_order: 3}

Summary

Types

t()

@type t() :: %Beancount.Schemas.PushTag{
  __meta__: term(),
  file_order: term(),
  id: term(),
  inserted_at: term(),
  tag: term(),
  updated_at: term()
}