File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -6,16 +6,27 @@ import Foundation
6
6
7
7
protocol LocalStorageProtocol {
8
8
var userId : String ? { get set }
9
+
9
10
var email : String ? { get set }
11
+
10
12
var authToken : String ? { get set }
13
+
11
14
var ddlChecked : Bool { get set }
15
+
12
16
var deviceId : String ? { get set }
17
+
13
18
var sdkVersion : String ? { get set }
19
+
14
20
var offlineMode : Bool { get set }
21
+
15
22
func getAttributionInfo( currentDate: Date ) -> IterableAttributionInfo ?
23
+
16
24
func save( attributionInfo: IterableAttributionInfo ? , withExpiration expiration: Date ? )
25
+
17
26
func getLastPushPayload( _ currentDate: Date ) -> [ AnyHashable : Any ] ?
27
+
18
28
func saveLastPushPayload( _ payload: [ AnyHashable : Any ] ? , withExpiration expiration: Date ? )
29
+
19
30
func upgrade( )
20
31
}
21
32
You can’t perform that action at this time.
0 commit comments