Last active
October 25, 2019 03:59
-
-
Save OlegIlyenko/5d7eb29ed632be7ad34575009339b765 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
sealed abstract class DiscountCodeUpdateAction | |
case class SetDiscountCodeName(name: Option[LocalizedString]) | |
extends DiscountCodeUpdateAction | |
case class SetDiscountCodeDescription(description: Option[LocalizedString]) | |
extends DiscountCodeUpdateAction | |
case class SetDiscountCodeCartPredicate(cartPredicate: Option[String]) | |
extends DiscountCodeUpdateAction | |
// ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment