OrderItemDto

@Serializable
@SerialName(value = "OrderItemDto")
data class OrderItemDto(val menuItemId: String, val quantity: Int)

Data class representing an item in an order.

Constructors

Link copied to clipboard
constructor(menuItemId: String, quantity: Int)

Properties

Link copied to clipboard

The unique identifier for the menu item.

Link copied to clipboard

The number of units of the menu item in the order.