KwikTagsInputItem

data class KwikTagsInputItem(val id: Any, val label: String, val quantity: Int = 1, val minQuantity: Int = 1, val maxQuantity: Int = 100)

Holds the data for each tag item.

Parameters

id

: Unique identifier for the tag.

label

: The display name of the tag.

quantity

: The quantity of the tag. Default is 1.

minQuantity

: The minimum quantity allowed. Default is 1.

maxQuantity

: The maximum quantity allowed. Default is 100.

Constructors

Link copied to clipboard
constructor(id: Any, label: String, quantity: Int = 1, minQuantity: Int = 1, maxQuantity: Int = 100)

Properties

Link copied to clipboard
val id: Any
Link copied to clipboard
Link copied to clipboard
val maxQuantity: Int = 100
Link copied to clipboard
val minQuantity: Int = 1
Link copied to clipboard
val quantity: Int = 1