Promotion
data class Promotion( val name: String, val dateStart: String? = null, val dateEnd: String? = null, val discount: Promotion.Discount, val bonus: List<Promotion.Bonus> = emptyList(), val limits: Promotion.Limits) : Parcelable
Content copied to clipboard
Constructors
Link copied to clipboard
fun Promotion( name: String, dateStart: String? = null, dateEnd: String? = null, discount: Promotion.Discount, bonus: List<Promotion.Bonus> = emptyList(), limits: Promotion.Limits)
Content copied to clipboard
Types
Link copied to clipboard
Link copied to clipboard
data class Discount(val percent: String? = null, val value: String? = null) : Parcelable
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard