DiscountCode

@Serializable
data class DiscountCode(val code: String, val amount: Price)

Represents an order discount code.

Typically this is some coupon or promo code entered by the user to apply the discount to their order.

Parameters

code

The discount code string.

amount

The discounted amount.

Constructors

Link copied to clipboard
constructor(code: String, amount: Price)

Creates a DiscountCode instance.

Properties

Link copied to clipboard
Link copied to clipboard