WC_Order_Item_Coupon::set_discount()publicWC 1.0

Set discount amount.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$WC_Order_Item_Coupon = new WC_Order_Item_Coupon();
$WC_Order_Item_Coupon->set_discount( $value );
$value(строка) (обязательный)
Discount.

Код WC_Order_Item_Coupon::set_discount() WC 8.7.0

public function set_discount( $value ) {
	$this->set_prop( 'discount', wc_format_decimal( $value ) );
}