Class: ActiveMerchant::Billing::TransFirstGateway
- Defined in:
- lib/active_merchant/billing/gateways/trans_first.rb
Constant Summary collapse
- URL =
'https://webservices.primerchants.com/creditcard.asmx/CCSale'
- UNUSED_FIELDS =
%w(ECIValue UserId CAVVData TrackData POSInd EComInd MerchZIP MerchCustPNum MCC InstallmentNum InstallmentOf POSEntryMode POSConditionCode AuthCharInd CardCertData)
- DECLINED =
'The transaction was declined'
Constants inherited from Gateway
Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ TransFirstGateway
constructor
A new instance of TransFirstGateway.
- #purchase(money, credit_card, options = {}) ⇒ Object
Methods inherited from Gateway
#card_brand, card_brand, inherited, supports?, #test?
Methods included from Utils
Methods included from CreditCardFormatting
Methods included from RequiresParameters
Methods included from PostsData
Constructor Details
#initialize(options = {}) ⇒ TransFirstGateway
Returns a new instance of TransFirstGateway.
15 16 17 18 19 |
# File 'lib/active_merchant/billing/gateways/trans_first.rb', line 15 def initialize( = {}) requires!(, :login, :password) @options = super end |
Instance Method Details
#purchase(money, credit_card, options = {}) ⇒ Object
21 22 23 24 25 26 27 28 29 30 |
# File 'lib/active_merchant/billing/gateways/trans_first.rb', line 21 def purchase(money, credit_card, = {}) post = {} add_amount(post, money) add_invoice(post, ) add_credit_card(post, credit_card) add_address(post, ) commit(post) end |