WC_Order_Item_Coupon::set_discount()publicWC 1.0

Set discount amount.

Method of the class: WC_Order_Item_Coupon{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Order_Item_Coupon = new WC_Order_Item_Coupon();
$WC_Order_Item_Coupon->set_discount( $value );
$value(string) (required)
Discount.

WC_Order_Item_Coupon::set_discount() code WC 8.7.0

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