A data class representing an order in the Salesforce Marketing Cloud SDK. This class encapsulates order information including line items, total value, currency, and custom attributes.
Class Declaration
1data class Order @JvmOverloads constructor(2 val id: String,3 val lineItems: List<LineItem> = listOf(),4 val totalValue: Double? = null,5 val currency: String? = null,6 val attributes: Map<String, Any> = mapOf()7)