You are here

public function Adjustment::isIncluded in Commerce Core 8.2

Gets whether the adjustment is included in the price.

Return value

bool TRUE if the adjustment is included in the price, FALSE otherwise.

File

modules/order/src/Adjustment.php, line 183

Class

Adjustment
Represents an adjustment.

Namespace

Drupal\commerce_order

Code

public function isIncluded() : bool {
  return $this->included;
}