LineItem

data class LineItem(val product: String?, val quantity: Int?)

Represents a single line item on an invoice.

Constructors

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

Properties

Link copied to clipboard

The identifier of the product associated with this line item.

Link copied to clipboard

The number of units of the product included.