Skip to content

Commit ecaf2bd

Browse files
authored
Merge pull request #533 from Iterable/MOB-5873-Email-UserID-AuthToken-Getters
[MOB - 5873] - Public getters for Email UserID and Auth
2 parents 03d8a69 + fb38707 commit ecaf2bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

iterableapi/src/main/java/com/iterable/iterableapi/IterableApi.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ public void execute(@Nullable String data) {
6868
});
6969
}
7070

71-
String getEmail() {
71+
public String getEmail() {
7272
return _email;
7373
}
7474

75-
String getUserId() {
75+
public String getUserId() {
7676
return _userId;
7777
}
7878

79-
String getAuthToken() {
79+
public String getAuthToken() {
8080
return _authToken;
8181
}
8282

0 commit comments

Comments
 (0)