I have previously asked this question however it does not answer the question of how to retrieve data from a coupon in WooCommerce. Both questions involve coupons, however, the first question is asking how does one set the metadata and this question asks how you retrieve the data.
I am trying to get the details of a coupon from WooCommerce by the coupon code. However, I am not sure on how I should try to go about doing this.
I have tried the code below. However, it gives me the error Call to undefined function WC_Coupon()
$coupon_code = 'save10percent';
global $woocommerce;
$c = WC_Coupon($coupon_code);
How should one go about getting the details of a coupon?