We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 537501e + 201c032 commit d15c2a0Copy full SHA for d15c2a0
swift-sdk/IterableAPI.swift
@@ -123,6 +123,14 @@ public final class IterableAPI: NSObject {
123
124
// MARK: - SDK
125
126
+ public static func setEmail(_ email: String?, _ authToken: String? = nil) {
127
+ internalImplementation?.setEmail(email, authToken: authToken)
128
+ }
129
+
130
+ public static func setUserId(_ userId: String?, _ authToken: String? = nil) {
131
+ internalImplementation?.setUserId(userId, authToken: authToken)
132
133
134
/// Handle a Universal Link
135
///
136
/// For Iterable links, it will track the click and retrieve the original URL,
0 commit comments