Created
August 28, 2014 21:04
-
-
Save samidalouche/9dc0958128a3d56fa033 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case class SdkSignInCommand(accountId: UUID, appId: String, deviceId: String) | |
case class SdkSignInConfirmation( | |
accountId: UUID, | |
firstName: String, | |
lastName: String, | |
email: String, | |
pairingKey: Int, | |
sdkId: UUID, | |
isSdkLinkedToAccount: Boolean, | |
boxLink: Option[DisplayableBoxLink] | |
) | |
case class DisplayableBoxLink(boxId: String, linkedAt: jodatime.DateTime, boxLifecycleId: UUID) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment