Current section

Files

Jump to
erp include location.hrl
Raw

include/location.hrl

-ifndef(LOCATION_HRL).
-define(LOCATION_HRL, true).
-include("organization.hrl").
-type locationType() :: normal | extra.
-record('Location', { id = [] :: [] | binary(),
prev = [] :: [] | binary(),
next = [] :: [] | binary(),
name = [] :: [] | binary(),
country = [] :: [] | binary(),
city = [] :: [] | binary(),
address = [] :: [] | binary(),
organization= [] :: [] | #'Organization'{},
type = [] :: locationType() }).
-endif.