Sha256: 9a7436ef3722e9ec660bc85874c2bf3313d586986a29e189559e41c75188265d
Contents?: true
Size: 653 Bytes
Versions: 15
Compression:
Stored size: 653 Bytes
Contents
# DO NOT EDIT: File is generated by code generator. require "pokepay_partner_ruby_sdk/response/transaction" module Pokepay::Request class CreatePaymentTransaction < Request def initialize(shop_id, customer_id, private_money_id, amount, rest_args = {}) @path = "/transactions" + "/payment" @method = "POST" @body_params = { "shop_id" => shop_id, "customer_id" => customer_id, "private_money_id" => private_money_id, "amount" => amount }.merge(rest_args) @response_class = Pokepay::Response::Transaction end attr_reader :response_class end end
Version data entries
15 entries across 15 versions & 1 rubygems