Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation deleteCouponsCoupon
Documentation
:: forall m. MonadHTTP m | |
=> Text | coupon | Constraints: Maximum length of 5000 |
-> ClientT m (Response DeleteCouponsCouponResponse) | Monadic computation which returns the result of the operation |
DELETE /v1/coupons/{coupon}
<p>You can delete coupons via the <a href="https://dashboard.stripe.com/coupons">coupon management</a> page of the Stripe dashboard. However, deleting a coupon does not affect any customers who have already applied the coupon; it means that new customers can’t redeem the coupon. You can also delete coupons via the API.</p>
data DeleteCouponsCouponResponse Source #
Represents a response of the operation deleteCouponsCoupon
.
The response constructor is chosen by the status code of the response. If no case matches (no specific case for the response code, no range case, no default case), DeleteCouponsCouponResponseError
is used.
DeleteCouponsCouponResponseError String | Means either no matching case available or a parse error |
DeleteCouponsCouponResponse200 DeletedCoupon | Successful response. |
DeleteCouponsCouponResponseDefault Error | Error response. |