class Braspag::Merchant

Merchant identification on Braspag

@attr [String] merchant_id the merchant identification number @attr [String] merchant_key the merchant identification key

Attributes

merchant_id[RW]
merchant_key[RW]

Public Class Methods

new(merchant_id, merchant_key) click to toggle source

@param merchant_id [String] the merchant identification number @param merchant_key [String] the merchant identification key

# File lib/braspag/merchant.rb, line 12
def initialize(merchant_id, merchant_key)
    @merchant_id = merchant_id
    @merchant_key = merchant_key
end