Current section

Files

Jump to
erp include location.hrl
Raw

include/location.hrl

-ifndef(LOCATION_HRL).
-define(LOCATION_HRL, true).
-type locationType() :: normal | extra.
-record('Loc', { id = kvs:seq([],[]) :: [] | binary(),
code = [] :: [] | term(),
country = [] :: [] | binary(),
city = [] :: [] | binary(),
address = [] :: [] | binary(),
type = [] :: locationType() }).
-endif.