genesis_ruby 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/Gemfile.lock +4 -4
- data/README.md +4 -0
- data/VERSION +1 -1
- data/lib/genesis_ruby/api/constants/date_time_formats.rb +4 -0
- data/lib/genesis_ruby/api/constants/transactions/parameters/cash_payments/cash_payment_types.rb +36 -0
- data/lib/genesis_ruby/api/constants/transactions/parameters/credential_on_files.rb +29 -0
- data/lib/genesis_ruby/api/constants/transactions/parameters/online_banking/bank_account_types.rb +30 -0
- data/lib/genesis_ruby/api/constants/transactions/parameters/online_banking/payout_payment_types.rb +42 -0
- data/lib/genesis_ruby/api/constants/transactions.rb +4 -0
- data/lib/genesis_ruby/api/mixins/requests/financial/cards/credential_on_file_attributes.rb +29 -0
- data/lib/genesis_ruby/api/mixins/requests/financial/cards/mpi_attributes.rb +10 -0
- data/lib/genesis_ruby/api/mixins/requests/financial/cards/ucof_attributes.rb +33 -0
- data/lib/genesis_ruby/api/mixins/requests/financial/online_banking_payments/pix_attributes.rb +28 -0
- data/lib/genesis_ruby/api/requests/base/financials/credit_card.rb +25 -2
- data/lib/genesis_ruby/api/requests/financial/cards/authorize3d.rb +3 -1
- data/lib/genesis_ruby/api/requests/financial/cards/bancontact.rb +47 -0
- data/lib/genesis_ruby/api/requests/financial/cards/sale3d.rb +3 -1
- data/lib/genesis_ruby/api/requests/financial/cash_payments/cash.rb +56 -0
- data/lib/genesis_ruby/api/requests/financial/cash_payments/pix.rb +4 -8
- data/lib/genesis_ruby/api/requests/financial/mobile/apple_pay.rb +4 -1
- data/lib/genesis_ruby/api/requests/financial/mobile/google_pay.rb +5 -3
- data/lib/genesis_ruby/api/requests/financial/online_banking_payments/online_banking/pay_out.rb +129 -0
- data/lib/genesis_ruby/version.rb +1 -1
- metadata +12 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f29c5f143d903c4fb42a353861744b184de9a7d48dd8788e7ed53baedc11849a
|
4
|
+
data.tar.gz: 824210216d4e2f029faf1e8f1896d8c03ad28c4b79f8d7bdd647e73f169175a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a403425c5236e42412d7e103272a1a4895211e3ea5594f27396fdb330d1cef7d538807da4f08fcd9872f3edfd98fa836b30199d3c45080cce12579062c7d00b2
|
7
|
+
data.tar.gz: 8ea6cf3090a5346a6bdbf760d3ed91908e2b7bb609b050e66a5904b6f965b21defe9b0878cb4bea92772cb70447e5b80003547dcc8b1d9a8556eabc5ac3f8d79
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
0.2.1
|
2
|
+
-----
|
3
|
+
**Features**:
|
4
|
+
|
5
|
+
* Added Online Banking PayOut transaction request
|
6
|
+
* Added Funding Parameters support to Google Pay and Apple Pay transaction requests
|
7
|
+
* Added Bancontact transaction request support
|
8
|
+
* Added Cash transaction request support
|
9
|
+
* Added COF and UCOF parameters support to the following transaction requests:
|
10
|
+
* Authorize
|
11
|
+
* Authorize 3D
|
12
|
+
* Sale
|
13
|
+
* Sale 3D
|
14
|
+
* Added Tokenized e-commerce payment support
|
15
|
+
|
1
16
|
0.2.0
|
2
17
|
-----
|
3
18
|
**Features**:
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
genesis_ruby (0.2.
|
4
|
+
genesis_ruby (0.2.1)
|
5
5
|
net-http (~> 0.3.2)
|
6
6
|
nokogiri (~> 1.14)
|
7
7
|
|
@@ -41,13 +41,13 @@ GEM
|
|
41
41
|
json (2.7.2)
|
42
42
|
language_server-protocol (3.17.0.3)
|
43
43
|
mini_mime (1.1.5)
|
44
|
-
mini_portile2 (2.8.
|
44
|
+
mini_portile2 (2.8.8)
|
45
45
|
multi_xml (0.6.0)
|
46
46
|
mustermann (3.0.3)
|
47
47
|
ruby2_keywords (~> 0.0.1)
|
48
48
|
net-http (0.3.2)
|
49
49
|
uri
|
50
|
-
nokogiri (1.15.
|
50
|
+
nokogiri (1.15.7)
|
51
51
|
mini_portile2 (~> 2.8.2)
|
52
52
|
racc (~> 1.4)
|
53
53
|
octokit (7.2.0)
|
@@ -135,7 +135,7 @@ GEM
|
|
135
135
|
thor (1.3.2)
|
136
136
|
tilt (2.4.0)
|
137
137
|
unicode-display_width (2.6.0)
|
138
|
-
uri (1.0.
|
138
|
+
uri (1.0.3)
|
139
139
|
webmock (3.24.0)
|
140
140
|
addressable (>= 2.8.0)
|
141
141
|
crack (>= 0.3.2)
|
data/README.md
CHANGED
@@ -996,6 +996,7 @@ GenesisRuby::Api::Requests::Financial::Cards::Argencard
|
|
996
996
|
GenesisRuby::Api::Requests::Financial::Cards::Aura
|
997
997
|
GenesisRuby::Api::Requests::Financial::Cards::Authorize
|
998
998
|
GenesisRuby::Api::Requests::Financial::Cards::Authorize3d
|
999
|
+
GenesisRuby::Api::Requests::Financial::Cards::Bancontact
|
999
1000
|
GenesisRuby::Api::Requests::Financial::Cards::Cabal
|
1000
1001
|
GenesisRuby::Api::Requests::Financial::Cards::Cencosud
|
1001
1002
|
GenesisRuby::Api::Requests::Financial::Cards::Elo
|
@@ -1016,6 +1017,7 @@ GenesisRuby::Api::Requests::Financial::Wallets::PayPal
|
|
1016
1017
|
GenesisRuby::Api::Requests::Financial::CashPayments::Baloto
|
1017
1018
|
GenesisRuby::Api::Requests::Financial::CashPayments::BancoDeOccidente
|
1018
1019
|
GenesisRuby::Api::Requests::Financial::CashPayments::Boleto
|
1020
|
+
GenesisRuby::Api::Requests::Financial::CashPayments::Cash
|
1019
1021
|
GenesisRuby::Api::Requests::Financial::CashPayments::Efecty
|
1020
1022
|
GenesisRuby::Api::Requests::Financial::CashPayments::Oxxo
|
1021
1023
|
GenesisRuby::Api::Requests::Financial::CashPayments::PagoFacil
|
@@ -1039,6 +1041,8 @@ GenesisRuby::Api::Requests::Financial::OnlineBankingPayments::Santander
|
|
1039
1041
|
GenesisRuby::Api::Requests::Financial::OnlineBankingPayments::Webpay
|
1040
1042
|
# PayIn
|
1041
1043
|
GenesisRuby::Api::Requests::Financial::OnlineBankingPayments::OnlineBanking::PayIn
|
1044
|
+
# PayOut
|
1045
|
+
GenesisRuby::Api::Requests::Financial::OnlineBankingPayments::OnlineBanking::PayOut
|
1042
1046
|
|
1043
1047
|
# References
|
1044
1048
|
GenesisRuby::Api::Requests::Financial::Capture
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
@@ -24,6 +24,9 @@ module GenesisRuby
|
|
24
24
|
# Date Format ISO 8601
|
25
25
|
YYYY_MM_DD_ISO_8601 = '%Y-%m-%d'.freeze
|
26
26
|
|
27
|
+
# Date Format
|
28
|
+
MM_DD = '%m%d'.freeze
|
29
|
+
|
27
30
|
class << self
|
28
31
|
|
29
32
|
def all
|
@@ -33,6 +36,7 @@ module GenesisRuby
|
|
33
36
|
DD_MM_YYYY_L_SLASHES,
|
34
37
|
YYYY_MM_DD_H_I_S_ZULU,
|
35
38
|
YYYY_MM_DD_H_I_S,
|
39
|
+
MM_DD,
|
36
40
|
YYYY_MM_DD_ISO_8601 # Always keep it last!!!
|
37
41
|
]
|
38
42
|
end
|
data/lib/genesis_ruby/api/constants/transactions/parameters/cash_payments/cash_payment_types.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
module GenesisRuby
|
2
|
+
module Api
|
3
|
+
module Constants
|
4
|
+
module Transactions
|
5
|
+
module Parameters
|
6
|
+
module CashPayments
|
7
|
+
# Cash Payment Types allowed values
|
8
|
+
class CashPaymentTypes
|
9
|
+
|
10
|
+
extend Mixins::Constants::Common
|
11
|
+
|
12
|
+
# 7 Eleven
|
13
|
+
SEVEN_ELEVEN = 'seven_eleven'.freeze
|
14
|
+
|
15
|
+
# Bancomer
|
16
|
+
BANCOMER = 'bancomer'.freeze
|
17
|
+
|
18
|
+
# Farmacias del Dr. Ahorro
|
19
|
+
PHARMACIES_DEL_DR_AHORRO = 'pharmacies_del_dr_ahorro'.freeze
|
20
|
+
|
21
|
+
# Farmacias Santa Maria
|
22
|
+
PHARMACIES_SANTA_MARIA = 'pharmacies_santa_maria'.freeze
|
23
|
+
|
24
|
+
# OXXO
|
25
|
+
OXXO = 'oxxo'.freeze
|
26
|
+
|
27
|
+
# Scotiabank
|
28
|
+
SCOTIABANK = 'scotiabank'.freeze
|
29
|
+
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module GenesisRuby
|
2
|
+
module Api
|
3
|
+
module Constants
|
4
|
+
module Transactions
|
5
|
+
module Parameters
|
6
|
+
# Credential On Files allowed values
|
7
|
+
class CredentialOnFiles
|
8
|
+
|
9
|
+
extend Mixins::Constants::Common
|
10
|
+
|
11
|
+
# Initial transaction used to store payment credentials for future customer initiated payments while
|
12
|
+
# processing. Required for external tokenization, and optional for gateway-based tokenization
|
13
|
+
INITIAL_CUSTOMER_INITIATED = 'initial_customer_initiated'.freeze
|
14
|
+
|
15
|
+
# Subsequent customer initiated transaction using previously stored payment credentials.
|
16
|
+
# Required for external tokenization, and optional for gateway-based tokenization
|
17
|
+
SUBSEQUENT_CUSTOMER_INITIATED = 'subsequent_customer_initiated'.freeze
|
18
|
+
|
19
|
+
# For UCOF transaction, the scheme transaction identifier of the initial transaction must be sent in
|
20
|
+
# the transaction request. For MasterCard or Maestro UCOF, the scheme settlement date in MMDD format
|
21
|
+
# (e.g. 0107) of the initial transaction must be sent in the transaction request.
|
22
|
+
MERCHANT_UNSCHEDULED = 'merchant_unscheduled'.freeze
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
data/lib/genesis_ruby/api/constants/transactions/parameters/online_banking/bank_account_types.rb
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
module GenesisRuby
|
2
|
+
module Api
|
3
|
+
module Constants
|
4
|
+
module Transactions
|
5
|
+
module Parameters
|
6
|
+
module OnlineBanking
|
7
|
+
# Bank Payout Account Types allowed values
|
8
|
+
class BankAccountTypes
|
9
|
+
|
10
|
+
extend Mixins::Constants::Common
|
11
|
+
|
12
|
+
# Checking accounts
|
13
|
+
CHECKING = 'C'.freeze
|
14
|
+
|
15
|
+
# Savings accounts
|
16
|
+
SAVINGS = 'S'.freeze
|
17
|
+
|
18
|
+
# Maestra accounts(Only Peru)
|
19
|
+
MAESTRA = 'M'.freeze
|
20
|
+
|
21
|
+
# Payment accounts
|
22
|
+
PAYMENT = 'P'.freeze
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
data/lib/genesis_ruby/api/constants/transactions/parameters/online_banking/payout_payment_types.rb
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
module GenesisRuby
|
2
|
+
module Api
|
3
|
+
module Constants
|
4
|
+
module Transactions
|
5
|
+
module Parameters
|
6
|
+
module OnlineBanking
|
7
|
+
# Bank Payout Payment Types allowed values
|
8
|
+
class PayoutPaymentTypes
|
9
|
+
|
10
|
+
extend Api::Mixins::Constants::Common
|
11
|
+
|
12
|
+
# Bank to Bank
|
13
|
+
BANK_TO_BANK = 'bank_to_bank'.freeze
|
14
|
+
|
15
|
+
# PIX
|
16
|
+
PIX = 'pix'.freeze
|
17
|
+
|
18
|
+
# BSB
|
19
|
+
BSB = 'bsb'.freeze
|
20
|
+
|
21
|
+
# Pay ID
|
22
|
+
PAY_ID = 'pay_id'.freeze
|
23
|
+
|
24
|
+
# Bank to Bank, Business to Business
|
25
|
+
BANK_TO_BANK_B2B = 'bank_to_bank_b2b'.freeze
|
26
|
+
|
27
|
+
# PIX Business to Business
|
28
|
+
PIX_B2B = 'pix_b2b'.freeze
|
29
|
+
|
30
|
+
# Clabe
|
31
|
+
CLABE = 'clabe'.freeze
|
32
|
+
|
33
|
+
# Cellphone
|
34
|
+
CELLPHONE = 'cellphone'.freeze
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -79,6 +79,10 @@ module GenesisRuby
|
|
79
79
|
# Capture settles a transaction which has been authorized before.
|
80
80
|
CAPTURE = 'capture'.freeze
|
81
81
|
|
82
|
+
# Cash payment methods allow customers to pay bills and online purchases in cash at convenient
|
83
|
+
# physical locations such as stores, banks, ATMs, even pharmacies in some countries.
|
84
|
+
CASH = 'cash'.freeze
|
85
|
+
|
82
86
|
# Voucher-based payment
|
83
87
|
CASHU = 'cashu'.freeze
|
84
88
|
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'genesis_ruby/api/constants/transactions/parameters/credential_on_files'
|
2
|
+
|
3
|
+
module GenesisRuby
|
4
|
+
module Api
|
5
|
+
module Mixins
|
6
|
+
module Requests
|
7
|
+
module Financial
|
8
|
+
module Cards
|
9
|
+
# Credential On File shared attributes mixin
|
10
|
+
module CredentialOnFileAttributes
|
11
|
+
|
12
|
+
attr_accessor :credential_on_file
|
13
|
+
|
14
|
+
protected
|
15
|
+
|
16
|
+
# Credential on file allowed field values validations
|
17
|
+
def credential_on_file_field_validations
|
18
|
+
{
|
19
|
+
credential_on_file: Api::Constants::Transactions::Parameters::CredentialOnFiles.all
|
20
|
+
}
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -55,6 +55,16 @@ module GenesisRuby
|
|
55
55
|
}
|
56
56
|
end
|
57
57
|
|
58
|
+
# Field value dependencies for MPI parameters
|
59
|
+
def mpi_attributes_field_dependencies
|
60
|
+
{
|
61
|
+
mpi_protocol_version: Hash[
|
62
|
+
Api::Constants::Transactions::Parameters::MpiProtocolVersions::PROTOCOL_VERSION_2,
|
63
|
+
%w(mpi_directory_server_id)
|
64
|
+
]
|
65
|
+
}
|
66
|
+
end
|
67
|
+
|
58
68
|
end
|
59
69
|
end
|
60
70
|
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module GenesisRuby
|
2
|
+
module Api
|
3
|
+
module Mixins
|
4
|
+
module Requests
|
5
|
+
module Financial
|
6
|
+
module Cards
|
7
|
+
# UCOF shared attributes mixin
|
8
|
+
module UcofAttributes
|
9
|
+
|
10
|
+
attr_reader :credential_on_file_transaction_identifier
|
11
|
+
|
12
|
+
# UCOF Transaction Identifier
|
13
|
+
def credential_on_file_transaction_identifier=(value)
|
14
|
+
limited_string attribute: __method__, value: value.to_s, min: 15, max: 32
|
15
|
+
end
|
16
|
+
|
17
|
+
# UCOF Settlement Date
|
18
|
+
def credential_on_file_settlement_date
|
19
|
+
@credential_on_file_settlement_date&.strftime Api::Constants::DateTimeFormats::MM_DD
|
20
|
+
end
|
21
|
+
|
22
|
+
# UCOF Settlement Date
|
23
|
+
def credential_on_file_settlement_date=(value)
|
24
|
+
parse_date attribute: __method__, value: value, allow_empty: true
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module GenesisRuby
|
2
|
+
module Api
|
3
|
+
module Mixins
|
4
|
+
module Requests
|
5
|
+
module Financial
|
6
|
+
module OnlineBankingPayments
|
7
|
+
# PIX shared attributes
|
8
|
+
module PixAttributes
|
9
|
+
|
10
|
+
attr_accessor :company_type, :company_activity, :mothers_name
|
11
|
+
|
12
|
+
# Incorporation Date Accessor
|
13
|
+
def incorporation_date
|
14
|
+
@incorporation_date&.strftime GenesisRuby::Api::Constants::DateTimeFormats::YYYY_MM_DD_ISO_8601
|
15
|
+
end
|
16
|
+
|
17
|
+
# Incorporation Date Accessor
|
18
|
+
def incorporation_date=(value)
|
19
|
+
parse_date attribute: __method__, value: value, allow_empty: true
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -7,23 +7,46 @@ module GenesisRuby
|
|
7
7
|
class CreditCard < GenesisRuby::Api::Requests::Base::Financial
|
8
8
|
|
9
9
|
include Mixins::Requests::Financial::Cards::AccountOwnerAttributes
|
10
|
+
include Mixins::Requests::Financial::Cards::CredentialOnFileAttributes
|
10
11
|
include Mixins::Requests::Financial::Cards::CreditCardAttributes
|
11
12
|
include Mixins::Requests::Financial::Cards::TokenizationAttributes
|
13
|
+
include Mixins::Requests::Financial::Cards::UcofAttributes
|
12
14
|
include Mixins::Requests::Financial::PaymentAttributes
|
13
15
|
|
16
|
+
attr_reader :scheme_tokenized
|
17
|
+
|
18
|
+
# Visa tokenization for Visa
|
19
|
+
# Digital Secure Remote Payments (DSRP) for Mastercard.
|
20
|
+
def scheme_tokenized=(value)
|
21
|
+
allowed_options attribute: __method__,
|
22
|
+
allowed: [true, false],
|
23
|
+
value: value,
|
24
|
+
allow_empty: true,
|
25
|
+
error_message: 'Accepts only boolean values'
|
26
|
+
end
|
27
|
+
|
14
28
|
protected
|
15
29
|
|
16
30
|
# Request Field validations
|
17
31
|
def init_field_validations
|
18
32
|
required_fields.push *%i[transaction_id amount currency]
|
19
|
-
field_values.merge!
|
33
|
+
field_values.merge!(
|
34
|
+
{ currency: Api::Constants::Currencies::Iso4217.all.map(&:upcase) },
|
35
|
+
credential_on_file_field_validations
|
36
|
+
)
|
20
37
|
end
|
21
38
|
|
22
39
|
# Credit Card attributes
|
23
40
|
def payment_transaction_structure
|
24
41
|
payment_attributes_structure.merge(
|
25
42
|
credit_card_attributes_structure, tokenization_attributes_structure,
|
26
|
-
{
|
43
|
+
{
|
44
|
+
account_owner: account_owner_attributes_structure,
|
45
|
+
credential_on_file: credential_on_file,
|
46
|
+
credential_on_file_transaction_identifier: credential_on_file_transaction_identifier,
|
47
|
+
credential_on_file_settlement_date: credential_on_file_settlement_date,
|
48
|
+
scheme_tokenized: scheme_tokenized
|
49
|
+
}
|
27
50
|
)
|
28
51
|
end
|
29
52
|
|
@@ -46,12 +46,14 @@ module GenesisRuby
|
|
46
46
|
|
47
47
|
field_value_dependencies.merge! required_tokenization_fields_conditional, required_cc_fields_conditional,
|
48
48
|
required_recurring_managed_type_field_conditional,
|
49
|
-
threeds_field_conditional_validations
|
49
|
+
threeds_field_conditional_validations, mpi_attributes_field_dependencies
|
50
50
|
end
|
51
51
|
|
52
52
|
# Special validations upon document building
|
53
53
|
def check_requirements
|
54
54
|
validate_threeds_card_holder_dates
|
55
|
+
# MPI Directory Server ID is optional when Scheme Tokenized with MPI Protocol Version 2
|
56
|
+
field_value_dependencies.delete :mpi_protocol_version if scheme_tokenized
|
55
57
|
|
56
58
|
super
|
57
59
|
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module GenesisRuby
|
2
|
+
module Api
|
3
|
+
module Requests
|
4
|
+
module Financial
|
5
|
+
module Cards
|
6
|
+
# Bancontact is a local Belgian debit card scheme. All Belgian debit cards are co-branded
|
7
|
+
# Bancontact and Maestro.
|
8
|
+
class Bancontact < Requests::Base::Financial
|
9
|
+
|
10
|
+
include Api::Mixins::Requests::CustomerAddress::BillingInfoAttributes
|
11
|
+
include Api::Mixins::Requests::CustomerAddress::ShippingInfoAttributes
|
12
|
+
include Api::Mixins::Requests::Financial::AsyncAttributes
|
13
|
+
include Api::Mixins::Requests::Financial::PaymentAttributes
|
14
|
+
|
15
|
+
protected
|
16
|
+
|
17
|
+
# BCMC transaction type
|
18
|
+
def transaction_type
|
19
|
+
Api::Constants::Transactions::BANCONTACT
|
20
|
+
end
|
21
|
+
|
22
|
+
# Bancontact field validations
|
23
|
+
def init_field_validations
|
24
|
+
required_fields.push *%i[transaction_id amount currency return_success_url return_failure_url
|
25
|
+
billing_country]
|
26
|
+
field_values.merge! currency: 'EUR',
|
27
|
+
billing_country: 'BE'
|
28
|
+
end
|
29
|
+
|
30
|
+
# Bancontact transaction structure
|
31
|
+
def payment_transaction_structure
|
32
|
+
payment_attributes_structure.merge(
|
33
|
+
{
|
34
|
+
return_success_url: return_success_url,
|
35
|
+
return_failure_url: return_failure_url,
|
36
|
+
billing_address: billing_address_parameters_structure,
|
37
|
+
shipping_address: shipping_address_parameters_structure
|
38
|
+
}
|
39
|
+
)
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -45,12 +45,14 @@ module GenesisRuby
|
|
45
45
|
|
46
46
|
field_value_dependencies.merge! required_tokenization_fields_conditional, required_cc_fields_conditional,
|
47
47
|
required_recurring_managed_type_field_conditional,
|
48
|
-
threeds_field_conditional_validations
|
48
|
+
threeds_field_conditional_validations, mpi_attributes_field_dependencies
|
49
49
|
end
|
50
50
|
|
51
51
|
# Special validations upon document building
|
52
52
|
def check_requirements
|
53
53
|
validate_threeds_card_holder_dates
|
54
|
+
# MPI Directory Server ID is optional when Scheme Tokenized with MPI Protocol Version 2
|
55
|
+
field_value_dependencies.delete :mpi_protocol_version if scheme_tokenized
|
54
56
|
|
55
57
|
super
|
56
58
|
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require 'genesis_ruby/api/constants/transactions/parameters/cash_payments/cash_payment_types'
|
2
|
+
|
3
|
+
module GenesisRuby
|
4
|
+
module Api
|
5
|
+
module Requests
|
6
|
+
module Financial
|
7
|
+
module CashPayments
|
8
|
+
# Cash payment methods allow customers to pay bills and online purchases in cash at convenient
|
9
|
+
# physical locations such as stores, banks, ATMs, even pharmacies in some countries.
|
10
|
+
class Cash < Requests::Base::Financial
|
11
|
+
|
12
|
+
include Api::Mixins::Requests::AddressInfoAttributes
|
13
|
+
include Api::Mixins::Requests::DocumentAttributes
|
14
|
+
include Api::Mixins::Requests::Financial::AsyncAttributes
|
15
|
+
include Api::Mixins::Requests::Financial::PaymentAttributes
|
16
|
+
|
17
|
+
attr_accessor :payment_type
|
18
|
+
|
19
|
+
protected
|
20
|
+
|
21
|
+
# Cash transaction type
|
22
|
+
def transaction_type
|
23
|
+
Api::Constants::Transactions::CASH
|
24
|
+
end
|
25
|
+
|
26
|
+
# Cash field validations
|
27
|
+
def init_field_validations
|
28
|
+
required_fields.push *%i[transaction_id return_success_url return_failure_url amount currency
|
29
|
+
payment_type document_id billing_country]
|
30
|
+
|
31
|
+
field_values.merge! currency: %w(MXN),
|
32
|
+
payment_type: Constants::Transactions::Parameters::CashPayments::CashPaymentTypes.all
|
33
|
+
end
|
34
|
+
|
35
|
+
# Cash request attributes structure
|
36
|
+
def payment_transaction_structure # rubocop:disable Metrics/MethodLength
|
37
|
+
payment_attributes_structure.merge(
|
38
|
+
{
|
39
|
+
return_success_url: return_success_url,
|
40
|
+
return_failure_url: return_failure_url,
|
41
|
+
customer_email: customer_email,
|
42
|
+
customer_phone: customer_phone,
|
43
|
+
payment_type: payment_type,
|
44
|
+
document_id: document_id,
|
45
|
+
billing_address: billing_address_parameters_structure,
|
46
|
+
shipping_address: shipping_address_parameters_structure
|
47
|
+
}
|
48
|
+
)
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -15,11 +15,12 @@ module GenesisRuby
|
|
15
15
|
include Api::Mixins::Requests::BirthDateAttributes
|
16
16
|
include Api::Mixins::Requests::DocumentAttributes
|
17
17
|
include Api::Mixins::Requests::Financial::AsyncAttributes
|
18
|
+
include Api::Mixins::Requests::Financial::OnlineBankingPayments::PixAttributes
|
18
19
|
include Api::Mixins::Requests::Financial::PaymentAttributes
|
19
20
|
include Api::Mixins::Requests::Financial::PendingPaymentAttributes
|
20
21
|
|
21
22
|
attr_accessor :gender, :marital_status, :sender_occupation, :nationality, :country_of_origin, :birth_city,
|
22
|
-
:birth_state
|
23
|
+
:birth_state
|
23
24
|
|
24
25
|
# Billing Country custom accessor
|
25
26
|
def billing_country
|
@@ -28,14 +29,9 @@ module GenesisRuby
|
|
28
29
|
@billing_country.to_s.upcase
|
29
30
|
end
|
30
31
|
|
31
|
-
#
|
32
|
+
# Override incorpocation date with specific format for Pix request
|
32
33
|
def incorporation_date
|
33
|
-
@incorporation_date&.strftime
|
34
|
-
end
|
35
|
-
|
36
|
-
# Incorporation date
|
37
|
-
def incorporation_date=(value)
|
38
|
-
parse_date attribute: __method__, value: value, allow_empty: true
|
34
|
+
@incorporation_date&.strftime Api::Constants::DateTimeFormats::DD_MM_YYYY_L_HYPHENS
|
39
35
|
end
|
40
36
|
|
41
37
|
protected
|
@@ -15,6 +15,7 @@ module GenesisRuby
|
|
15
15
|
include Mixins::Requests::Financial::Cards::Recurring::RecurringTypeAttributes
|
16
16
|
include Mixins::Requests::Financial::CryptoAttributes
|
17
17
|
include Mixins::Requests::Financial::DynamicDescriptorAttributes
|
18
|
+
include Mixins::Requests::Financial::FundingAttributes
|
18
19
|
include Mixins::Requests::Financial::Mobile::ApplePayTokenAttributes
|
19
20
|
include Mixins::Requests::Financial::PaymentAttributes
|
20
21
|
|
@@ -43,6 +44,7 @@ module GenesisRuby
|
|
43
44
|
payment_subtype: Api::Constants::Transactions::Parameters::Mobile::ApplePay::
|
44
45
|
PaymentSubtypes.all,
|
45
46
|
recurring_type: [Api::Constants::Transactions::Parameters::Recurring::Types::INITIAL]
|
47
|
+
field_values.merge! funding_attributes_field_validations
|
46
48
|
end
|
47
49
|
|
48
50
|
# Apple Pay payment transaction structure
|
@@ -60,7 +62,8 @@ module GenesisRuby
|
|
60
62
|
crypto: crypto,
|
61
63
|
recurring_type: recurring_type,
|
62
64
|
business_attributes: business_attributes_structure,
|
63
|
-
dynamic_descriptor_params: dynamic_descriptor_structure
|
65
|
+
dynamic_descriptor_params: dynamic_descriptor_structure,
|
66
|
+
funding: funding_attributes_structure
|
64
67
|
}
|
65
68
|
)
|
66
69
|
end
|
@@ -17,6 +17,7 @@ module GenesisRuby
|
|
17
17
|
include Mixins::Requests::Financial::Business::BusinessAttributes
|
18
18
|
include Mixins::Requests::Financial::Cards::Recurring::RecurringTypeAttributes
|
19
19
|
include Mixins::Requests::Financial::DynamicDescriptorAttributes
|
20
|
+
include Mixins::Requests::Financial::FundingAttributes
|
20
21
|
include Mixins::Requests::Financial::Mobile::GooglePayTokenAttributes
|
21
22
|
include Mixins::Requests::Financial::NotificationAttributes
|
22
23
|
include Mixins::Requests::Financial::PaymentAttributes
|
@@ -47,7 +48,7 @@ module GenesisRuby
|
|
47
48
|
payment_subtype: Constants::Transactions::Parameters::Mobile::GooglePay::
|
48
49
|
PaymentSubtypes.all,
|
49
50
|
recurring_type: [Api::Constants::Transactions::Parameters::Recurring::Types::INITIAL]
|
50
|
-
field_values.merge! threeds_field_validations
|
51
|
+
field_values.merge! threeds_field_validations, funding_attributes_field_validations
|
51
52
|
|
52
53
|
field_value_dependencies.merge! threeds_field_conditional_validations
|
53
54
|
end
|
@@ -60,7 +61,7 @@ module GenesisRuby
|
|
60
61
|
end
|
61
62
|
|
62
63
|
# Google Pay Payment Transaction Structure
|
63
|
-
def payment_transaction_structure # rubocop:disable Metrics/MethodLength
|
64
|
+
def payment_transaction_structure # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
64
65
|
payment_attributes_structure.merge(
|
65
66
|
{
|
66
67
|
payment_subtype: payment_subtype,
|
@@ -77,7 +78,8 @@ module GenesisRuby
|
|
77
78
|
dynamic_descriptor_params: dynamic_descriptor_structure,
|
78
79
|
document_id: document_id,
|
79
80
|
recurring_type: recurring_type,
|
80
|
-
threeds_v2_params: threeds_v2_common_attributes_structure
|
81
|
+
threeds_v2_params: threeds_v2_common_attributes_structure,
|
82
|
+
funding: funding_attributes_structure
|
81
83
|
}
|
82
84
|
)
|
83
85
|
end
|
data/lib/genesis_ruby/api/requests/financial/online_banking_payments/online_banking/pay_out.rb
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
require 'genesis_ruby/api/constants/transactions/parameters/online_banking/bank_account_types'
|
2
|
+
require 'genesis_ruby/api/constants/transactions/parameters/online_banking/payout_payment_types'
|
3
|
+
|
4
|
+
module GenesisRuby
|
5
|
+
module Api
|
6
|
+
module Requests
|
7
|
+
module Financial
|
8
|
+
module OnlineBankingPayments
|
9
|
+
module OnlineBanking
|
10
|
+
# Bank Pay-out option allows merchants to transfer funds directly to their consumers' bank account.
|
11
|
+
class PayOut < Base::Financial
|
12
|
+
|
13
|
+
include Api::Mixins::Requests::AddressInfoAttributes
|
14
|
+
include Api::Mixins::Requests::BirthDateAttributes
|
15
|
+
include Api::Mixins::Requests::DocumentAttributes
|
16
|
+
include Api::Mixins::Requests::Financial::AsyncAttributes
|
17
|
+
include Api::Mixins::Requests::Financial::NotificationAttributes
|
18
|
+
include Api::Mixins::Requests::Financial::OnlineBankingPayments::PixAttributes
|
19
|
+
include Api::Mixins::Requests::Financial::PaymentAttributes
|
20
|
+
|
21
|
+
attr_reader :id_card_number, :payer_bank_phone_number, :document_type, :account_id, :user_id
|
22
|
+
attr_accessor :bank_name, :bank_code, :bank_branch, :bank_account_name, :bank_account_number, :pix_key,
|
23
|
+
:bank_province, :bank_account_type, :bank_account_verification_digit, :payment_type
|
24
|
+
|
25
|
+
# Id Card Number
|
26
|
+
def id_card_number=(value)
|
27
|
+
limited_string attribute: __method__, value: value.to_s.empty? ? nil : value.to_s, max: 30
|
28
|
+
end
|
29
|
+
|
30
|
+
# Payer bank phone Number
|
31
|
+
def payer_bank_phone_number=(value)
|
32
|
+
limited_string attribute: __method__, value: value.to_s, min: 11, max: 14
|
33
|
+
end
|
34
|
+
|
35
|
+
# ID card/document type
|
36
|
+
def document_type=(value)
|
37
|
+
limited_string attribute: __method__, value: value.to_s.empty? ? nil : value.to_s, max: 10
|
38
|
+
end
|
39
|
+
|
40
|
+
# Unique account identifier in Trustly's system
|
41
|
+
def account_id=(value)
|
42
|
+
limited_string attribute: __method__, value: value.to_s.empty? ? nil : value.to_s, max: 255
|
43
|
+
end
|
44
|
+
|
45
|
+
# Unique user identifier defined by merchant in their own system
|
46
|
+
def user_id=(value)
|
47
|
+
limited_string attribute: __method__, value: value.to_s.empty? ? nil : value.to_s, max: 255
|
48
|
+
end
|
49
|
+
|
50
|
+
protected
|
51
|
+
|
52
|
+
# Bank Payout transaction type
|
53
|
+
def transaction_type
|
54
|
+
Api::Constants::Transactions::ONLINE_BANKING_PAYOUT
|
55
|
+
end
|
56
|
+
|
57
|
+
# Set field validations
|
58
|
+
def init_field_validations
|
59
|
+
required_fields.push *%i[transaction_id amount currency notification_url return_success_url
|
60
|
+
return_failure_url billing_first_name billing_last_name billing_state billing_country]
|
61
|
+
|
62
|
+
field_values.merge! currency: %w(CNY MYR THB IDR INR ARS BRL CAD CLP COP MXN PEN UYU),
|
63
|
+
bank_account_type: Constants::Transactions::Parameters::OnlineBanking::
|
64
|
+
BankAccountTypes.all,
|
65
|
+
payment_type: Constants::Transactions::Parameters::OnlineBanking::
|
66
|
+
PayoutPaymentTypes.all
|
67
|
+
end
|
68
|
+
|
69
|
+
# Custom validations
|
70
|
+
def check_requirements
|
71
|
+
validate_brl_currency
|
72
|
+
|
73
|
+
super
|
74
|
+
end
|
75
|
+
|
76
|
+
# Bank Payout payment transaction structure
|
77
|
+
def payment_transaction_structure # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
|
78
|
+
payment_attributes_structure.merge(
|
79
|
+
{
|
80
|
+
return_success_url: return_success_url,
|
81
|
+
return_failure_url: return_failure_url,
|
82
|
+
notification_url: notification_url,
|
83
|
+
customer_email: customer_email,
|
84
|
+
customer_phone: customer_phone,
|
85
|
+
bank_name: bank_name,
|
86
|
+
bank_code: bank_code,
|
87
|
+
bank_account_name: bank_account_name,
|
88
|
+
bank_account_number: bank_account_number,
|
89
|
+
bank_account_type: bank_account_type,
|
90
|
+
bank_account_verification_digit: bank_account_verification_digit,
|
91
|
+
bank_province: bank_province,
|
92
|
+
bank_branch: bank_branch,
|
93
|
+
id_card_number: id_card_number,
|
94
|
+
payer_bank_phone_number: payer_bank_phone_number,
|
95
|
+
document_type: document_type,
|
96
|
+
document_id: document_id,
|
97
|
+
account_id: account_id,
|
98
|
+
user_id: user_id,
|
99
|
+
birth_date: birth_date,
|
100
|
+
payment_type: payment_type,
|
101
|
+
company_type: company_type,
|
102
|
+
company_activity: company_activity,
|
103
|
+
incorporation_date: incorporation_date,
|
104
|
+
mothers_name: mothers_name,
|
105
|
+
pix_key: pix_key,
|
106
|
+
billing_address: billing_address_parameters_structure,
|
107
|
+
shipping_address: shipping_address_parameters_structure
|
108
|
+
}
|
109
|
+
)
|
110
|
+
end
|
111
|
+
|
112
|
+
private
|
113
|
+
|
114
|
+
# Specific validations for BRL currency
|
115
|
+
def validate_brl_currency
|
116
|
+
return unless @currency == 'BRL'
|
117
|
+
return if bank_code || bank_name
|
118
|
+
|
119
|
+
raise ParameterError, 'Please verify the following attributes: BRL currency requires one of: ' \
|
120
|
+
'bank_code and/or bank_name'
|
121
|
+
end
|
122
|
+
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
data/lib/genesis_ruby/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: genesis_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- emerchantpay Ltd.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-http
|
@@ -245,9 +245,11 @@ files:
|
|
245
245
|
- lib/genesis_ruby/api/constants/states/state.rb
|
246
246
|
- lib/genesis_ruby/api/constants/transactions.rb
|
247
247
|
- lib/genesis_ruby/api/constants/transactions/parameters/business/payment_types.rb
|
248
|
+
- lib/genesis_ruby/api/constants/transactions/parameters/cash_payments/cash_payment_types.rb
|
248
249
|
- lib/genesis_ruby/api/constants/transactions/parameters/cash_payments/company_types.rb
|
249
250
|
- lib/genesis_ruby/api/constants/transactions/parameters/cash_payments/genders.rb
|
250
251
|
- lib/genesis_ruby/api/constants/transactions/parameters/cash_payments/marital_statuses.rb
|
252
|
+
- lib/genesis_ruby/api/constants/transactions/parameters/credential_on_files.rb
|
251
253
|
- lib/genesis_ruby/api/constants/transactions/parameters/funding/business_application_identifier_types.rb
|
252
254
|
- lib/genesis_ruby/api/constants/transactions/parameters/funding/identifier_types.rb
|
253
255
|
- lib/genesis_ruby/api/constants/transactions/parameters/funding/receiver_account_types.rb
|
@@ -260,9 +262,11 @@ files:
|
|
260
262
|
- lib/genesis_ruby/api/constants/transactions/parameters/mobile/google_pay/payment_subtypes.rb
|
261
263
|
- lib/genesis_ruby/api/constants/transactions/parameters/mpi_protocol_sub_versions.rb
|
262
264
|
- lib/genesis_ruby/api/constants/transactions/parameters/mpi_protocol_versions.rb
|
265
|
+
- lib/genesis_ruby/api/constants/transactions/parameters/online_banking/bank_account_types.rb
|
263
266
|
- lib/genesis_ruby/api/constants/transactions/parameters/online_banking/bank_code_currencies.rb
|
264
267
|
- lib/genesis_ruby/api/constants/transactions/parameters/online_banking/bank_codes.rb
|
265
268
|
- lib/genesis_ruby/api/constants/transactions/parameters/online_banking/payment_types.rb
|
269
|
+
- lib/genesis_ruby/api/constants/transactions/parameters/online_banking/payout_payment_types.rb
|
266
270
|
- lib/genesis_ruby/api/constants/transactions/parameters/recurring/categories.rb
|
267
271
|
- lib/genesis_ruby/api/constants/transactions/parameters/recurring/types.rb
|
268
272
|
- lib/genesis_ruby/api/constants/transactions/parameters/refund/bank_account_types.rb
|
@@ -305,6 +309,7 @@ files:
|
|
305
309
|
- lib/genesis_ruby/api/mixins/requests/financial/business/hotels_and_real_estate_rentals_attributes.rb
|
306
310
|
- lib/genesis_ruby/api/mixins/requests/financial/business/travel_agencies_attributes.rb
|
307
311
|
- lib/genesis_ruby/api/mixins/requests/financial/cards/account_owner_attributes.rb
|
312
|
+
- lib/genesis_ruby/api/mixins/requests/financial/cards/credential_on_file_attributes.rb
|
308
313
|
- lib/genesis_ruby/api/mixins/requests/financial/cards/credit_card_attributes.rb
|
309
314
|
- lib/genesis_ruby/api/mixins/requests/financial/cards/fx_rate_attributes.rb
|
310
315
|
- lib/genesis_ruby/api/mixins/requests/financial/cards/mpi_attributes.rb
|
@@ -313,6 +318,7 @@ files:
|
|
313
318
|
- lib/genesis_ruby/api/mixins/requests/financial/cards/recurring/recurring_category_attributes.rb
|
314
319
|
- lib/genesis_ruby/api/mixins/requests/financial/cards/recurring/recurring_type_attributes.rb
|
315
320
|
- lib/genesis_ruby/api/mixins/requests/financial/cards/tokenization_attributes.rb
|
321
|
+
- lib/genesis_ruby/api/mixins/requests/financial/cards/ucof_attributes.rb
|
316
322
|
- lib/genesis_ruby/api/mixins/requests/financial/consumer_identifier_attributes.rb
|
317
323
|
- lib/genesis_ruby/api/mixins/requests/financial/crypto_attributes.rb
|
318
324
|
- lib/genesis_ruby/api/mixins/requests/financial/dynamic_descriptor_attributes.rb
|
@@ -322,6 +328,7 @@ files:
|
|
322
328
|
- lib/genesis_ruby/api/mixins/requests/financial/mobile/google_pay_token_attributes.rb
|
323
329
|
- lib/genesis_ruby/api/mixins/requests/financial/moto_attributes.rb
|
324
330
|
- lib/genesis_ruby/api/mixins/requests/financial/notification_attributes.rb
|
331
|
+
- lib/genesis_ruby/api/mixins/requests/financial/online_banking_payments/pix_attributes.rb
|
325
332
|
- lib/genesis_ruby/api/mixins/requests/financial/online_banking_payments/virtual_payment_address_attributes.rb
|
326
333
|
- lib/genesis_ruby/api/mixins/requests/financial/payment_attributes.rb
|
327
334
|
- lib/genesis_ruby/api/mixins/requests/financial/pending_payment_attributes.rb
|
@@ -356,6 +363,7 @@ files:
|
|
356
363
|
- lib/genesis_ruby/api/requests/financial/cards/aura.rb
|
357
364
|
- lib/genesis_ruby/api/requests/financial/cards/authorize.rb
|
358
365
|
- lib/genesis_ruby/api/requests/financial/cards/authorize3d.rb
|
366
|
+
- lib/genesis_ruby/api/requests/financial/cards/bancontact.rb
|
359
367
|
- lib/genesis_ruby/api/requests/financial/cards/cabal.rb
|
360
368
|
- lib/genesis_ruby/api/requests/financial/cards/cencosud.rb
|
361
369
|
- lib/genesis_ruby/api/requests/financial/cards/elo.rb
|
@@ -368,6 +376,7 @@ files:
|
|
368
376
|
- lib/genesis_ruby/api/requests/financial/cash_payments/baloto.rb
|
369
377
|
- lib/genesis_ruby/api/requests/financial/cash_payments/banco_de_occidente.rb
|
370
378
|
- lib/genesis_ruby/api/requests/financial/cash_payments/boleto.rb
|
379
|
+
- lib/genesis_ruby/api/requests/financial/cash_payments/cash.rb
|
371
380
|
- lib/genesis_ruby/api/requests/financial/cash_payments/efecty.rb
|
372
381
|
- lib/genesis_ruby/api/requests/financial/cash_payments/oxxo.rb
|
373
382
|
- lib/genesis_ruby/api/requests/financial/cash_payments/pago_facil.rb
|
@@ -380,6 +389,7 @@ files:
|
|
380
389
|
- lib/genesis_ruby/api/requests/financial/online_banking_payments/davivienda.rb
|
381
390
|
- lib/genesis_ruby/api/requests/financial/online_banking_payments/itau.rb
|
382
391
|
- lib/genesis_ruby/api/requests/financial/online_banking_payments/online_banking/pay_in.rb
|
392
|
+
- lib/genesis_ruby/api/requests/financial/online_banking_payments/online_banking/pay_out.rb
|
383
393
|
- lib/genesis_ruby/api/requests/financial/online_banking_payments/pse.rb
|
384
394
|
- lib/genesis_ruby/api/requests/financial/online_banking_payments/rapi_pago.rb
|
385
395
|
- lib/genesis_ruby/api/requests/financial/online_banking_payments/santander.rb
|