ProductStats

data class ProductStats(val totalProducts: Int, val availableProducts: Int, val lowStockProducts: Int, val outOfStockProducts: Int, val totalInventoryValue: Double? = null, val averageProductPrice: Double? = null, val topSellingProducts: List<String>? = null, val reorderRequiredCount: Int? = null)

Data class for product statistics and metrics.

Constructors

Link copied to clipboard
constructor(totalProducts: Int, availableProducts: Int, lowStockProducts: Int, outOfStockProducts: Int, totalInventoryValue: Double? = null, averageProductPrice: Double? = null, topSellingProducts: List<String>? = null, reorderRequiredCount: Int? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard