The include directive pulls another ledger file into the current one.
See Includes.
Beancount syntax
include "accounts/checking.bean"General form: include "Path"
This directive has no date. Place it at the top of a directive list, before dated entries, to mirror real Beancount file layout.
Elixir struct
%Beancount.Directives.Include{
path: "accounts/checking.bean"
}Or use Beancount.include/1:
Beancount.include("accounts/checking.bean")Fields
path- relative or absolute path to another.beanfile. Rendered as a quoted string.
Summary
Types
@type t() :: %Beancount.Directives.Include{path: String.t()}