Package-level declarations

Types

Link copied to clipboard
@Serializable
data class EVOrder(val currency: String, val orderItems: List<EVOrderItem>, val status: String, val updatedDate: String)
Link copied to clipboard
@Serializable
data class EVOrderItem(val cost: Int, val itemId: String, val price: Int, val quantity: String, val subLocationId: Int, val uom: String)
Link copied to clipboard
@Serializable
data class EVOrderResponse(    val locationId: Int,     val merchantId: String,     val merchantOrderId: Int,     val orderId: String,     val orders: List<EVOrder>,     val status: String,     val userId: String)