RewardBase

data class RewardBase(val id: Int, val name: String, val inventoryCount: Int)

Data class representing a base reward in the loyalty program.

Parameters

id

The ID of the reward in the reward store.

name

The name of the reward in the reward store.

inventoryCount

How many of this reward are available in the reward store.

Constructors

Link copied to clipboard
constructor(id: Int, name: String, inventoryCount: Int)

Properties

Link copied to clipboard
val id: Int
Link copied to clipboard
Link copied to clipboard