Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Last active May 24, 2020 03:03
Show Gist options
  • Save ashkrit/32748052462b4ce8363c1c55b5677122 to your computer and use it in GitHub Desktop.
Save ashkrit/32748052462b4ce8363c1c55b5677122 to your computer and use it in GitHub Desktop.
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