Sha256: 2b38f65122ba951dc4c17cd4cd3bc6d1589664c3dc67be03a6487986ebda3a5c
Contents?: true
Size: 598 Bytes
Versions: 15
Compression:
Stored size: 598 Bytes
Contents
# DO NOT EDIT: File is generated by code generator. require "pokepay_partner_ruby_sdk/response/transaction" module Pokepay::Request class CreateTopupTransaction < Request def initialize(shop_id, customer_id, private_money_id, rest_args = {}) @path = "/transactions" + "/topup" @method = "POST" @body_params = { "shop_id" => shop_id, "customer_id" => customer_id, "private_money_id" => private_money_id }.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