iOS SDK  12.0.0
 All Classes Functions Enumerations Enumerator Groups Pages
FlurryConsent.h
1 //
2 // FlurryConsent.h
3 // Flurry
4 //
5 // Created by Ishwarya Iyer on 4/2/18.
6 // Copyright (c) 2021 Yahoo. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @interface FlurryConsent : NSObject
12 
13 @property (nonatomic, assign, readonly) BOOL isGDPRScope;
14 @property (nonatomic, strong, readonly) NSDictionary* consentStrings;
15 
32 - (instancetype) initWithGDPRScope:(BOOL)isGDPRScope andConsentStrings:(NSDictionary*)consentStrings
33 NS_SWIFT_NAME(init(isGDPRScope:consentString:));
34 
35 
50 + (BOOL) updateConsentInformation:(FlurryConsent*)consent;
51 
60 
61 @end
62