Last active
May 24, 2020 03:03
-
-
Save ashkrit/32748052462b4ce8363c1c55b5677122 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Customer(customerId: String, email: String, paymentOption: List[PaymentOption]) | |
case class InternetBanking(bankName: String, userId: String, bankWebSite: URI) extends PaymentOption | |
case class CreditCard(cardType: String, issuer: String, cardNo: Long) extends PaymentOption | |
case class DebitCard(cardType: String, issuer: String, cardNo: Long) extends PaymentOption | |
case class Payla(id: String) extends PaymentOption |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment