./ct_report/coverage/gdpr.COVER.html

1 -module(gdpr).
2
3 -export_type(
4 [username/0,
5 data_group/0,
6 schema/0,
7 entry/0,
8 entries/0,
9 personal_data/0]).
10
11 -type username() :: binary().
12 -type data_group() :: atom().
13 -type entry() :: [string() | binary()].
14 -type entries() :: [entry()].
15 -type schema() :: [string()].
16 -type personal_data() :: [{gdpr:data_group(), gdpr:schema(), gdpr:entries()}].
17
Line Hits Source