WC_Order_Item_Coupon::get_discount()publicWC 1.0

Get discount amount.

Метод класса: WC_Order_Item_Coupon{}

Хуков нет.

Возвращает

Строку.

Использование

$WC_Order_Item_Coupon = new WC_Order_Item_Coupon();
$WC_Order_Item_Coupon->get_discount( $context );
$context(строка)
What the value is for. Valid values are 'view' and 'edit'.
По умолчанию: 'view'

Код WC_Order_Item_Coupon::get_discount() WC 8.7.0

public function get_discount( $context = 'view' ) {
	return $this->get_prop( 'discount', $context );
}