Sha256: e72ad5194fd070bd0ceff5e9cc8d679374d6c7b7d1b006a4e0a4206c55332a0e
Contents?: true
Size: 571 Bytes
Versions: 6
Compression:
Stored size: 571 Bytes
Contents
# DO NOT EDIT: File is generated by code generator. require "pokepay_partner_ruby_sdk/response/transaction_detail" module Pokepay::Request class CreateCpmTransaction < Request def initialize(cpm_token, shop_id, amount, rest_args = {}) @path = "/transactions" + "/cpm" @method = "POST" @body_params = { "cpm_token" => cpm_token, "shop_id" => shop_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