./ct_report/coverage/gdpr.COVER.html

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