Current section
Files
Jump to
Current section
Files
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.