WC_Coupon::get_maximum_amount()publicWC 3.0.0

Get maximum spend amount.

Method of the class: WC_Coupon{}

No Hooks.

Return

float.

Usage

$WC_Coupon = new WC_Coupon();
$WC_Coupon->get_maximum_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_maximum_amount() code WC 8.6.1

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