1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
import * as models from "./index";
/** @public */
export class PrivacyHeader extends models.Model {
constructor(bodyText, isDetailHeader, privacyTypes, bodyActions, supplementaryItems, seeDetailsAction) {
super();
this.bodyText = bodyText;
this.isDetailHeader = isDetailHeader;
this.privacyTypes = privacyTypes;
this.bodyActions = bodyActions;
this.supplementaryItems = supplementaryItems;
this.seeDetailsAction = seeDetailsAction;
}
}
/** @public */
export class PrivacyHeaderSupplementaryItem extends models.Model {
constructor(bodyText, action) {
super();
this.bodyText = bodyText;
this.action = action;
}
}
/** @public */
export class PrivacyFooter extends models.Model {
constructor(bodyText, actions, privacyTypesCount) {
super();
this.bodyText = bodyText;
this.actions = actions;
this.privacyTypesCount = privacyTypesCount;
}
}
/** @public */
export class PrivacyType extends models.ViewModel {
constructor(identifier, title, detail, artwork, style, purposes, categories, clickAction) {
super();
this.identifier = identifier;
this.title = title;
this.detail = detail;
this.artwork = artwork;
this.style = style;
this.purposes = purposes;
this.categories = categories;
this.clickAction = clickAction;
this.wantsScrollFocus = false;
}
}
/** @public */
export class PrivacyPurpose extends models.Model {
constructor(identifier, title, categories) {
super();
this.identifier = identifier;
this.title = title;
this.categories = categories;
}
}
/** @public */
export class PrivacyCategory extends models.Model {
constructor(identifier, title, artwork, style, dataTypes = []) {
super();
this.identifier = identifier;
this.title = title;
this.artwork = artwork;
this.style = style;
this.dataTypes = dataTypes;
this.prefersSmallArtwork = false;
}
}
/** @public */
export class PrivacyDefinition extends models.Model {
constructor(title, definition) {
super();
this.title = title;
this.definition = definition;
}
}
//# sourceMappingURL=privacy.js.map
|