Class: ActiveMerchant::Billing::MaxipagoGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::MaxipagoGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/maxipago.rb
Constant Summary
collapse
- API_VERSION =
'3.1.1.15'
Constants inherited
from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS
Instance Attribute Summary
Attributes inherited from Gateway
#options
Instance Method Summary
collapse
Methods inherited from Gateway
#card_brand, card_brand, inherited, supports?, #test?
#format
Constructor Details
18
19
20
21
|
# File 'lib/active_merchant/billing/gateways/maxipago.rb', line 18
def initialize(options = {})
requires!(options, :login, :password)
super
end
|
Instance Method Details
#authorize(money, creditcard, options = {}) ⇒ Object
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/active_merchant/billing/gateways/maxipago.rb', line 34
def authorize(money, creditcard, options = {})
post = {}
add_aux_data(post, options)
add_amount(post, money)
add_creditcard(post, creditcard)
add_name(post, creditcard)
add_address(post, options)
commit(build_sale_request(post, "auth"))
end
|
#capture(money, authorization, options = {}) ⇒ Object
45
46
47
48
49
50
|
# File 'lib/active_merchant/billing/gateways/maxipago.rb', line 45
def capture(money, authorization, options = {})
post = {}
add_amount(post, money)
add_aux_data(post, options)
commit(build_capture_request(authorization, post))
end
|
#purchase(money, creditcard, options = {}) ⇒ Object
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/active_merchant/billing/gateways/maxipago.rb', line 23
def purchase(money, creditcard, options = {})
post = {}
add_aux_data(post, options)
add_amount(post, money)
add_creditcard(post, creditcard)
add_name(post, creditcard)
add_address(post, options)
commit(build_sale_request(post))
end
|