Skip to content

Instantly share code, notes, and snippets.

@OlegIlyenko
Last active October 25, 2019 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save OlegIlyenko/5d7eb29ed632be7ad34575009339b765 to your computer and use it in GitHub Desktop.
Save OlegIlyenko/5d7eb29ed632be7ad34575009339b765 to your computer and use it in GitHub Desktop.
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