We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32775a0 commit 1505d07Copy full SHA for 1505d07
OneSignalSDK/onesignal/core/src/main/java/com/onesignal/core/internal/http/impl/OptionalHeaders.kt
@@ -1,5 +1,20 @@
1
package com.onesignal.core.internal.http.impl
2
3
data class OptionalHeaders(
4
+ /**
5
+ * Used as an E-Tag
6
+ */
7
val cacheKey: String? = null,
8
9
+ * Used for read your write consistency
10
11
+ val rywToken: String? = null,
12
13
+ * Current retry count
14
15
+ val retryCount: Int? = null,
16
17
+ * Used to track delay between session start and request
18
19
+ val sessionDuration: Long? = null,
20
)
0 commit comments