Method: Clayful::Coupon.add_total_amount
- Defined in:
- lib/models/coupon.rb
.add_total_amount(*args) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/models/coupon.rb', line 16 def self.add_total_amount(*args) Clayful.call_api({ 'model_name' => @@name, 'method_name' => 'add_total_amount', 'http_method' => 'POST', 'path' => '/v1/coupons/{couponId}/amount/total', 'params' => ['couponId', ], 'args' => args }) end |