# Order line_item object

# line_item.cost_price

Returns the cost price of the order line product.

# line_item.line_cost_price

Returns the total cost price of the order line.

# line_item.image

Returns the image of the order line product.

# line_item.line_price

Returns the total price of the order line.

# line_item.price

Returns the price of the order line product.

# line_item.product

Returns the product of the order line.

# line_item.product_id

Returns the unique id of the order line product.

# line_item.quantity

Returns the quantity of items of the order line.

# line_item.sku

Returns the SKU of the product variant of the order line.

# line_item.title

Returns the title of the product variant of the order line.

# line_item.url

Returns the url of the product variant of the order line.

# line_item.variant

Returns the product variant of the order line.

# line_item.variant_id

Returns the unique id of the product variant of the order line.

# line_item.parent_row

Returns a the parent row if the current line has a parent_row.

# line_item.sub_rows

Returns a collection with the line items of the line_items which has the current row as a parent_row.

Example

<h3>{{ item.title }}</h3>
{% for subRow in item.sub_rows %}
    <p>{{ subRow.title }} +{{ subRow.price | money }}</p>
{% endfor %}