forked from InteractiveAdvertisingBureau/iabtcf-es
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFields.ts
More file actions
31 lines (29 loc) · 2.3 KB
/
Fields.ts
File metadata and controls
31 lines (29 loc) · 2.3 KB
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
export class Fields {
public static readonly cmpId: 'cmpId' = 'cmpId';
public static readonly cmpVersion: 'cmpVersion' = 'cmpVersion';
public static readonly consentLanguage: 'consentLanguage' = 'consentLanguage';
public static readonly consentScreen: 'consentScreen' = 'consentScreen';
public static readonly created: 'created' = 'created';
public static readonly supportOOB: 'supportOOB' = 'supportOOB';
public static readonly isServiceSpecific: 'isServiceSpecific' = 'isServiceSpecific';
public static readonly lastUpdated: 'lastUpdated' = 'lastUpdated';
public static readonly numCustomPurposes: 'numCustomPurposes' = 'numCustomPurposes';
public static readonly policyVersion: 'policyVersion' = 'policyVersion';
public static readonly publisherCountryCode: 'publisherCountryCode' = 'publisherCountryCode';
public static readonly publisherCustomConsents: 'publisherCustomConsents' = 'publisherCustomConsents';
public static readonly publisherCustomLegitimateInterests: 'publisherCustomLegitimateInterests' = 'publisherCustomLegitimateInterests';
public static readonly publisherLegitimateInterests: 'publisherLegitimateInterests' = 'publisherLegitimateInterests';
public static readonly publisherConsents: 'publisherConsents' = 'publisherConsents';
public static readonly publisherRestrictions: 'publisherRestrictions' = 'publisherRestrictions';
public static readonly purposeConsents: 'purposeConsents' = 'purposeConsents';
public static readonly purposeLegitimateInterests: 'purposeLegitimateInterests' = 'purposeLegitimateInterests';
public static readonly purposeOneTreatment: 'purposeOneTreatment' = 'purposeOneTreatment';
public static readonly specialFeatureOptins: 'specialFeatureOptins' = 'specialFeatureOptins';
public static readonly useNonStandardTexts: 'useNonStandardTexts' = 'useNonStandardTexts';
public static readonly vendorConsents: 'vendorConsents' = 'vendorConsents';
public static readonly vendorLegitimateInterests: 'vendorLegitimateInterests' = 'vendorLegitimateInterests';
public static readonly vendorListVersion: 'vendorListVersion' = 'vendorListVersion';
public static readonly vendorsAllowed: 'vendorsAllowed' = 'vendorsAllowed';
public static readonly vendorsDisclosed: 'vendorsDisclosed' = 'vendorsDisclosed';
public static readonly version: 'version' = 'version';
}