Current section
Files
Jump to
Current section
Files
include/dict/deputy.hrl
-ifndef(DEPUTY_HRL).
-define(DEPUTY_HRL, true).
-include_lib("schema/include/dict/person.hrl").
-record('Deputy', { id = [] :: [] | binary(),
name = [] :: [] | binary(),
party = [] :: [] | binary(),
district_number = [] :: [] | integer(),
index_number = [] :: [] | integer(),
faction = [] :: [] | binary(),
start_date = [] :: [] | calendar:datetime()
}).
-endif.