Class: Pokepay::Request::CreateCoupon
- Defined in:
- lib/pokepay_partner_ruby_sdk/request/create_coupon.rb
Instance Attribute Summary collapse
-
#response_class ⇒ Object
readonly
Returns the value of attribute response_class.
Attributes inherited from Request
Instance Method Summary collapse
-
#initialize(private_money_id, name, starts_at, ends_at, issued_shop_id, rest_args = {}) ⇒ CreateCoupon
constructor
A new instance of CreateCoupon.
Constructor Details
#initialize(private_money_id, name, starts_at, ends_at, issued_shop_id, rest_args = {}) ⇒ CreateCoupon
Returns a new instance of CreateCoupon.
7 8 9 10 11 12 13 14 15 16 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_coupon.rb', line 7 def initialize(private_money_id, name, starts_at, ends_at, issued_shop_id, rest_args = {}) @path = "/coupons" @method = "POST" @body_params = { "private_money_id" => private_money_id, "name" => name, "starts_at" => starts_at, "ends_at" => ends_at, "issued_shop_id" => issued_shop_id }.merge(rest_args) @response_class = Pokepay::Response::CouponDetail end |
Instance Attribute Details
#response_class ⇒ Object (readonly)
Returns the value of attribute response_class.
17 18 19 |
# File 'lib/pokepay_partner_ruby_sdk/request/create_coupon.rb', line 17 def response_class @response_class end |