Skip to content

Commit 9191d3c

Browse files
committed
Merge pull request #2 from ccpmark/feature/getting-an-invitee-invitation-email
Added getter for email property of an invitee invitation
2 parents 06cd1a6 + 4c28e13 commit 9191d3c

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/main/java/com/robinpowered/sdk/model/Invitee.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,9 @@ public static class Invitation {
230230
public Invitation(String email) {
231231
this.email = email;
232232
}
233+
234+
public String getEmail() {
235+
return email;
236+
}
233237
}
234238
}

0 commit comments

Comments
 (0)