WC_Coupon::get_amount()publicWC 3.0.0

Get coupon amount.

Method of the class: WC_Coupon{}

No Hooks.

Return

String.

Usage

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

Changelog

Since 3.0.0 Introduced.

WC_Coupon::get_amount() code WC 8.7.0

public function get_amount( $context = 'view' ) {
	return wc_format_decimal( $this->get_prop( 'amount', $context ) );
}