WC_Order_Item_Coupon::get_discount()publicWC 1.0

Get discount amount.

Method of the class: WC_Order_Item_Coupon{}

No Hooks.

Return

String.

Usage

$WC_Order_Item_Coupon = new WC_Order_Item_Coupon();
$WC_Order_Item_Coupon->get_discount( $context );
$context(string)
What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'

WC_Order_Item_Coupon::get_discount() code WC 8.7.0

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