Sha256: 8878134019b097230bfaa723b64b3d90707c5aed82f33afb72367923ffb66794
Contents?: true
Size: 666 Bytes
Versions: 6
Compression:
Stored size: 666 Bytes
Contents
# DO NOT EDIT: File is generated by code generator. require "pokepay_partner_ruby_sdk/response/transaction_detail" 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::TransactionDetail end attr_reader :response_class end end
Version data entries
6 entries across 6 versions & 1 rubygems