hypercharge-schema 1.24.5
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 +7 -0
- data/.gitignore +7 -0
- data/.travis.yml +6 -0
- data/CHANGELOG.md +3 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +33 -0
- data/LICENSE.txt +22 -0
- data/README.md +73 -0
- data/Rakefile +14 -0
- data/composer.json +17 -0
- data/hypercharge-schema.gemspec +27 -0
- data/json/MobilePayment.json +73 -0
- data/json/WpfPayment.json +99 -0
- data/json/authorize.json +77 -0
- data/json/authorize3d.json +173 -0
- data/json/capture.json +42 -0
- data/json/debit_sale.json +73 -0
- data/json/direct_pay24_sale.json +85 -0
- data/json/giro_pay_sale.json +85 -0
- data/json/ideal_sale.json +87 -0
- data/json/init_recurring_authorize.json +81 -0
- data/json/init_recurring_debit_authorize.json +77 -0
- data/json/init_recurring_debit_sale.json +77 -0
- data/json/init_recurring_sale.json +81 -0
- data/json/pay_in_advance.json +61 -0
- data/json/pay_pal.json +65 -0
- data/json/pay_safe_card_sale.json +69 -0
- data/json/payment_on_delivery.json +57 -0
- data/json/purchase_on_account.json +61 -0
- data/json/reconcile.json +20 -0
- data/json/recurring_debit_sale.json +45 -0
- data/json/recurring_sale.json +45 -0
- data/json/referenced_fund_transfer.json +46 -0
- data/json/refund.json +42 -0
- data/json/sale.json +77 -0
- data/json/sale3d.json +173 -0
- data/json/scheduler_create.json +46 -0
- data/json/scheduler_index.json +34 -0
- data/json/scheduler_update.json +35 -0
- data/json/types.json +385 -0
- data/json/void.json +33 -0
- data/lib/php/JsonSchemaFixture.php +12 -0
- data/lib/php/JsonSchemaValidator.php +47 -0
- data/lib/ruby/hypercharge/schema.rb +31 -0
- data/lib/ruby/hypercharge/schema/fixture.rb +30 -0
- data/lib/ruby/hypercharge/schema/version.rb +7 -0
- data/package.json +27 -0
- data/test/fixtures/notifications/PaymentNotification_echo.xml +4 -0
- data/test/fixtures/notifications/TransactionNotification_echo.xml +4 -0
- data/test/fixtures/notifications/recurring_event.json +13 -0
- data/test/fixtures/notifications/scheduler.json +7 -0
- data/test/fixtures/requests/MobilePayment.json +35 -0
- data/test/fixtures/requests/MobilePayment.xml +34 -0
- data/test/fixtures/requests/WpfPayment.json +40 -0
- data/test/fixtures/requests/WpfPayment.xml +39 -0
- data/test/fixtures/requests/WpfPayment_cancel.xml +4 -0
- data/test/fixtures/requests/WpfPayment_capture.xml +4 -0
- data/test/fixtures/requests/WpfPayment_refund.xml +4 -0
- data/test/fixtures/requests/WpfPayment_void.xml +4 -0
- data/test/fixtures/requests/authorize.json +29 -0
- data/test/fixtures/requests/authorize.xml +28 -0
- data/test/fixtures/requests/authorize3d_async.json +32 -0
- data/test/fixtures/requests/authorize3d_async.xml +31 -0
- data/test/fixtures/requests/authorize3d_sync.json +34 -0
- data/test/fixtures/requests/authorize3d_sync.xml +33 -0
- data/test/fixtures/requests/capture.json +10 -0
- data/test/fixtures/requests/capture.xml +9 -0
- data/test/fixtures/requests/debit_sale.json +28 -0
- data/test/fixtures/requests/debit_sale.xml +27 -0
- data/test/fixtures/requests/direct_pay24_sale.json +31 -0
- data/test/fixtures/requests/direct_pay24_sale.xml +30 -0
- data/test/fixtures/requests/giro_pay_sale.json +31 -0
- data/test/fixtures/requests/giro_pay_sale.xml +30 -0
- data/test/fixtures/requests/ideal_sale.json +31 -0
- data/test/fixtures/requests/ideal_sale.xml +30 -0
- data/test/fixtures/requests/init_recurring_authorize.json +34 -0
- data/test/fixtures/requests/init_recurring_authorize.xml +33 -0
- data/test/fixtures/requests/init_recurring_debit_authorize.json +33 -0
- data/test/fixtures/requests/init_recurring_debit_authorize.xml +32 -0
- data/test/fixtures/requests/init_recurring_debit_sale.json +34 -0
- data/test/fixtures/requests/init_recurring_debit_sale.xml +32 -0
- data/test/fixtures/requests/init_recurring_sale.json +34 -0
- data/test/fixtures/requests/init_recurring_sale.xml +33 -0
- data/test/fixtures/requests/init_recurring_sale_with_recurring_schedule.json +34 -0
- data/test/fixtures/requests/pay_in_advance.json +24 -0
- data/test/fixtures/requests/pay_in_advance.xml +23 -0
- data/test/fixtures/requests/pay_pal.json +23 -0
- data/test/fixtures/requests/pay_pal.xml +22 -0
- data/test/fixtures/requests/pay_safe_card_sale.json +23 -0
- data/test/fixtures/requests/pay_safe_card_sale.xml +23 -0
- data/test/fixtures/requests/payment_on_delivery.json +24 -0
- data/test/fixtures/requests/payment_on_delivery.xml +23 -0
- data/test/fixtures/requests/purchase_on_account.json +26 -0
- data/test/fixtures/requests/purchase_on_account.xml +23 -0
- data/test/fixtures/requests/reconcile.json +5 -0
- data/test/fixtures/requests/reconcile.xml +4 -0
- data/test/fixtures/requests/reconcile_by_date.json +7 -0
- data/test/fixtures/requests/reconcile_by_date.xml +6 -0
- data/test/fixtures/requests/recurring_debit_sale.json +11 -0
- data/test/fixtures/requests/recurring_debit_sale.xml +10 -0
- data/test/fixtures/requests/recurring_event.xml +4 -0
- data/test/fixtures/requests/recurring_sale.json +11 -0
- data/test/fixtures/requests/recurring_sale.xml +10 -0
- data/test/fixtures/requests/referenced_fund_transfer.json +11 -0
- data/test/fixtures/requests/referenced_fund_transfer.xml +10 -0
- data/test/fixtures/requests/refund.json +10 -0
- data/test/fixtures/requests/refund.xml +9 -0
- data/test/fixtures/requests/risk_params.json +10 -0
- data/test/fixtures/requests/risk_params.xml +9 -0
- data/test/fixtures/requests/sale.json +29 -0
- data/test/fixtures/requests/sale.xml +28 -0
- data/test/fixtures/requests/sale3d_async.json +32 -0
- data/test/fixtures/requests/sale3d_async.xml +31 -0
- data/test/fixtures/requests/sale3d_sync.json +34 -0
- data/test/fixtures/requests/sale3d_sync.xml +33 -0
- data/test/fixtures/requests/scheduler_create.json +9 -0
- data/test/fixtures/requests/scheduler_index_get_params.json +9 -0
- data/test/fixtures/requests/scheduler_update.json +8 -0
- data/test/fixtures/requests/void.json +8 -0
- data/test/fixtures/requests/void.xml +7 -0
- data/test/fixtures/responses/MobilePayment_new.json +20 -0
- data/test/fixtures/responses/MobilePayment_new.xml +19 -0
- data/test/fixtures/responses/PaymentNotification_echo.xml +4 -0
- data/test/fixtures/responses/PaymentTransactionNotification_echo.xml +4 -0
- data/test/fixtures/responses/WpfPayment_cancel.xml +13 -0
- data/test/fixtures/responses/WpfPayment_captured.xml +39 -0
- data/test/fixtures/responses/WpfPayment_error.json +8 -0
- data/test/fixtures/responses/WpfPayment_error.xml +7 -0
- data/test/fixtures/responses/WpfPayment_find.xml +39 -0
- data/test/fixtures/responses/WpfPayment_new.json +16 -0
- data/test/fixtures/responses/WpfPayment_new.xml +17 -0
- data/test/fixtures/responses/WpfPayment_refunded.xml +39 -0
- data/test/fixtures/responses/WpfPayment_voided.xml +39 -0
- data/test/fixtures/responses/authorize3d_pending_async.xml +15 -0
- data/test/fixtures/responses/authorize3d_sync.xml +14 -0
- data/test/fixtures/responses/authorize_approved.xml +14 -0
- data/test/fixtures/responses/authorize_error.json +16 -0
- data/test/fixtures/responses/authorize_error.xml +15 -0
- data/test/fixtures/responses/capture.xml +14 -0
- data/test/fixtures/responses/create_chargeback.xml +12 -0
- data/test/fixtures/responses/create_chargeback_reversal.xml +12 -0
- data/test/fixtures/responses/create_charged_debit_sale.xml +12 -0
- data/test/fixtures/responses/create_debit_chargeback.xml +12 -0
- data/test/fixtures/responses/create_deposit.xml +12 -0
- data/test/fixtures/responses/create_pre_arbitration.xml +12 -0
- data/test/fixtures/responses/create_rejected_debit_sale.xml +12 -0
- data/test/fixtures/responses/create_retrieval_request.xml +12 -0
- data/test/fixtures/responses/debit_sale.xml +12 -0
- data/test/fixtures/responses/direct_pay24_sale.xml +15 -0
- data/test/fixtures/responses/giro_pay_sale.xml +15 -0
- data/test/fixtures/responses/ideal_sale.xml +17 -0
- data/test/fixtures/responses/init_recurring_authorize.xml +14 -0
- data/test/fixtures/responses/init_recurring_debit_authorize.xml +17 -0
- data/test/fixtures/responses/init_recurring_debit_sale.xml +17 -0
- data/test/fixtures/responses/init_recurring_sale.xml +14 -0
- data/test/fixtures/responses/pay_in_advance.xml +17 -0
- data/test/fixtures/responses/pay_pal.xml +15 -0
- data/test/fixtures/responses/pay_safe_card_sale.xml +15 -0
- data/test/fixtures/responses/payment_on_delivery.xml +14 -0
- data/test/fixtures/responses/purchase_on_account.xml +18 -0
- data/test/fixtures/responses/reconcile_by_date_empty_result.xml +3 -0
- data/test/fixtures/responses/reconcile_by_date_page_1.xml +1293 -0
- data/test/fixtures/responses/reconcile_by_date_page_2.xml +1346 -0
- data/test/fixtures/responses/reconcile_by_date_page_3.xml +1394 -0
- data/test/fixtures/responses/reconcile_by_date_single_result.xml +16 -0
- data/test/fixtures/responses/recurring_debit_sale.xml +16 -0
- data/test/fixtures/responses/recurring_event.json +22 -0
- data/test/fixtures/responses/recurring_event.xml +21 -0
- data/test/fixtures/responses/recurring_sale.xml +14 -0
- data/test/fixtures/responses/referenced_fund_transfer.xml +14 -0
- data/test/fixtures/responses/refund.xml +14 -0
- data/test/fixtures/responses/sale.xml +12 -0
- data/test/fixtures/responses/sale3d_async.xml +15 -0
- data/test/fixtures/responses/sale3d_sync.xml +14 -0
- data/test/fixtures/responses/scheduled_transactions_empty.json +8 -0
- data/test/fixtures/responses/scheduled_transactions_one.json +22 -0
- data/test/fixtures/responses/scheduler.json +12 -0
- data/test/fixtures/responses/scheduler_empty_result.json +8 -0
- data/test/fixtures/responses/scheduler_error.json +7 -0
- data/test/fixtures/responses/scheduler_next.json +4 -0
- data/test/fixtures/responses/scheduler_page_1.json +93 -0
- data/test/fixtures/responses/scheduler_page_2.json +45 -0
- data/test/fixtures/responses/scheduler_single_result.json +21 -0
- data/test/fixtures/responses/void.xml +12 -0
- data/test/js/mobile_payment_test.js +287 -0
- data/test/php/all.php +9 -0
- data/test/php/authorize3d_test.php +546 -0
- data/test/php/authorize_test.php +546 -0
- data/test/php/capture_test.php +241 -0
- data/test/php/json_schema_validator_test.php +24 -0
- data/test/php/mobile_payment_test.php +238 -0
- data/test/php/reconcile_test.php +21 -0
- data/test/php/referenced_fund_transfer_test.php +183 -0
- data/test/php/refund_test.php +237 -0
- data/test/php/sale_test.php +546 -0
- data/test/php/test_helper.php +29 -0
- data/test/php/void_test.php +163 -0
- data/test/php/wpf_payment_test.php +19 -0
- data/test/ruby/authorize3d_async_spec.rb +29 -0
- data/test/ruby/authorize3d_sync_spec.rb +27 -0
- data/test/ruby/authorize_spec.rb +25 -0
- data/test/ruby/capture_spec.rb +16 -0
- data/test/ruby/debit_sale_spec.rb +26 -0
- data/test/ruby/direct_pay24_sale_spec.rb +30 -0
- data/test/ruby/giro_pay_sale_spec.rb +30 -0
- data/test/ruby/ideal_sale_spec.rb +29 -0
- data/test/ruby/init_recurring_authorize_spec.rb +26 -0
- data/test/ruby/init_recurring_debit_authorize_spec.rb +27 -0
- data/test/ruby/init_recurring_debit_sale_spec.rb +27 -0
- data/test/ruby/init_recurring_sale_spec.rb +26 -0
- data/test/ruby/mobile_payment_spec.rb +22 -0
- data/test/ruby/pay_in_advance_spec.rb +23 -0
- data/test/ruby/pay_pal_spec.rb +25 -0
- data/test/ruby/pay_safe_card_sale_spec.rb +24 -0
- data/test/ruby/payment_on_delivery_spec.rb +21 -0
- data/test/ruby/purchase_on_account_spec.rb +23 -0
- data/test/ruby/reconcile_spec.rb +11 -0
- data/test/ruby/recurring_debit_sale_spec.rb +17 -0
- data/test/ruby/recurring_sale_spec.rb +17 -0
- data/test/ruby/referenced_fund_transfer_spec.rb +17 -0
- data/test/ruby/refund_spec.rb +16 -0
- data/test/ruby/sale3d_async_spec.rb +29 -0
- data/test/ruby/sale3d_sync_spec.rb +27 -0
- data/test/ruby/sale_spec.rb +25 -0
- data/test/ruby/scheduler_spec.rb +43 -0
- data/test/ruby/test_helper.rb +74 -0
- data/test/ruby/types_specs.rb +1494 -0
- data/test/ruby/void_spec.rb +14 -0
- data/test/ruby/wpf_payment_spec.rb +27 -0
- metadata +527 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
describe 'Void JSON Schema' do
|
|
5
|
+
let(:schema_path){ schema_path_for('void') }
|
|
6
|
+
subject{ fixture('void') }
|
|
7
|
+
let(:root_key){ subject.keys.first }
|
|
8
|
+
|
|
9
|
+
root_wont_allow_additional_properties
|
|
10
|
+
spec_attribute 'transaction_type', value: 'void'
|
|
11
|
+
spec_attribute 'reference_id', spec: 'unique_id'
|
|
12
|
+
spec_attribute 'transaction_id'
|
|
13
|
+
spec_attribute 'usage'
|
|
14
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
require 'test_helper'
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
describe 'WpfPayment JSON Schema' do
|
|
5
|
+
let(:schema_path){ schema_path_for('WpfPayment') }
|
|
6
|
+
subject{ fixture('WpfPayment') }
|
|
7
|
+
let(:root_key){ subject.keys.first }
|
|
8
|
+
|
|
9
|
+
root_wont_allow_additional_properties
|
|
10
|
+
spec_attribute 'type', value: 'WpfPayment'
|
|
11
|
+
spec_attribute 'amount'
|
|
12
|
+
spec_attribute 'currency'
|
|
13
|
+
spec_attribute 'transaction_id'
|
|
14
|
+
spec_attribute 'usage', required: true
|
|
15
|
+
spec_attribute 'description'
|
|
16
|
+
spec_attribute 'editable_by_user'
|
|
17
|
+
spec_attribute 'customer_email', required: false
|
|
18
|
+
spec_attribute 'customer_phone'
|
|
19
|
+
spec_attribute 'notification_url', spec: 'url'
|
|
20
|
+
spec_attribute 'return_success_url', spec: 'url'
|
|
21
|
+
spec_attribute 'return_failure_url', spec: 'url'
|
|
22
|
+
spec_attribute 'return_cancel_url', spec: 'url'
|
|
23
|
+
spec_attribute 'billing_address'
|
|
24
|
+
spec_attribute 'retries'
|
|
25
|
+
spec_attribute 'risk_params'
|
|
26
|
+
spec_attribute 'recurring_schedule'
|
|
27
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,527 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hypercharge-schema
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.24.5
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Luzifer Altenberg
|
|
8
|
+
- Jan Mentzel
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2013-08-20 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: json-schema
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
requirements:
|
|
18
|
+
- - ~>
|
|
19
|
+
- !ruby/object:Gem::Version
|
|
20
|
+
version: 2.1.3
|
|
21
|
+
type: :runtime
|
|
22
|
+
prerelease: false
|
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
24
|
+
requirements:
|
|
25
|
+
- - ~>
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
version: 2.1.3
|
|
28
|
+
- !ruby/object:Gem::Dependency
|
|
29
|
+
name: bundler
|
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
|
31
|
+
requirements:
|
|
32
|
+
- - ~>
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: '1.3'
|
|
35
|
+
type: :development
|
|
36
|
+
prerelease: false
|
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - ~>
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '1.3'
|
|
42
|
+
- !ruby/object:Gem::Dependency
|
|
43
|
+
name: minitest
|
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - '>='
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: 4.7.5
|
|
49
|
+
type: :development
|
|
50
|
+
prerelease: false
|
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
52
|
+
requirements:
|
|
53
|
+
- - '>='
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: 4.7.5
|
|
56
|
+
- !ruby/object:Gem::Dependency
|
|
57
|
+
name: json
|
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - '>='
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '0'
|
|
63
|
+
type: :development
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - '>='
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
70
|
+
- !ruby/object:Gem::Dependency
|
|
71
|
+
name: rake
|
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - '>='
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '0'
|
|
77
|
+
type: :development
|
|
78
|
+
prerelease: false
|
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - '>='
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '0'
|
|
84
|
+
description:
|
|
85
|
+
email:
|
|
86
|
+
- luzifer@atomgas.de
|
|
87
|
+
- jan@hypercharge.net
|
|
88
|
+
executables: []
|
|
89
|
+
extensions: []
|
|
90
|
+
extra_rdoc_files: []
|
|
91
|
+
files:
|
|
92
|
+
- .gitignore
|
|
93
|
+
- .travis.yml
|
|
94
|
+
- CHANGELOG.md
|
|
95
|
+
- Gemfile
|
|
96
|
+
- Gemfile.lock
|
|
97
|
+
- LICENSE.txt
|
|
98
|
+
- README.md
|
|
99
|
+
- Rakefile
|
|
100
|
+
- composer.json
|
|
101
|
+
- hypercharge-schema.gemspec
|
|
102
|
+
- json/MobilePayment.json
|
|
103
|
+
- json/WpfPayment.json
|
|
104
|
+
- json/authorize.json
|
|
105
|
+
- json/authorize3d.json
|
|
106
|
+
- json/capture.json
|
|
107
|
+
- json/debit_sale.json
|
|
108
|
+
- json/direct_pay24_sale.json
|
|
109
|
+
- json/giro_pay_sale.json
|
|
110
|
+
- json/ideal_sale.json
|
|
111
|
+
- json/init_recurring_authorize.json
|
|
112
|
+
- json/init_recurring_debit_authorize.json
|
|
113
|
+
- json/init_recurring_debit_sale.json
|
|
114
|
+
- json/init_recurring_sale.json
|
|
115
|
+
- json/pay_in_advance.json
|
|
116
|
+
- json/pay_pal.json
|
|
117
|
+
- json/pay_safe_card_sale.json
|
|
118
|
+
- json/payment_on_delivery.json
|
|
119
|
+
- json/purchase_on_account.json
|
|
120
|
+
- json/reconcile.json
|
|
121
|
+
- json/recurring_debit_sale.json
|
|
122
|
+
- json/recurring_sale.json
|
|
123
|
+
- json/referenced_fund_transfer.json
|
|
124
|
+
- json/refund.json
|
|
125
|
+
- json/sale.json
|
|
126
|
+
- json/sale3d.json
|
|
127
|
+
- json/scheduler_create.json
|
|
128
|
+
- json/scheduler_index.json
|
|
129
|
+
- json/scheduler_update.json
|
|
130
|
+
- json/types.json
|
|
131
|
+
- json/void.json
|
|
132
|
+
- lib/php/JsonSchemaFixture.php
|
|
133
|
+
- lib/php/JsonSchemaValidator.php
|
|
134
|
+
- lib/ruby/hypercharge/schema.rb
|
|
135
|
+
- lib/ruby/hypercharge/schema/fixture.rb
|
|
136
|
+
- lib/ruby/hypercharge/schema/version.rb
|
|
137
|
+
- package.json
|
|
138
|
+
- test/fixtures/notifications/PaymentNotification_echo.xml
|
|
139
|
+
- test/fixtures/notifications/TransactionNotification_echo.xml
|
|
140
|
+
- test/fixtures/notifications/recurring_event.json
|
|
141
|
+
- test/fixtures/notifications/scheduler.json
|
|
142
|
+
- test/fixtures/requests/MobilePayment.json
|
|
143
|
+
- test/fixtures/requests/MobilePayment.xml
|
|
144
|
+
- test/fixtures/requests/WpfPayment.json
|
|
145
|
+
- test/fixtures/requests/WpfPayment.xml
|
|
146
|
+
- test/fixtures/requests/WpfPayment_cancel.xml
|
|
147
|
+
- test/fixtures/requests/WpfPayment_capture.xml
|
|
148
|
+
- test/fixtures/requests/WpfPayment_refund.xml
|
|
149
|
+
- test/fixtures/requests/WpfPayment_void.xml
|
|
150
|
+
- test/fixtures/requests/authorize.json
|
|
151
|
+
- test/fixtures/requests/authorize.xml
|
|
152
|
+
- test/fixtures/requests/authorize3d_async.json
|
|
153
|
+
- test/fixtures/requests/authorize3d_async.xml
|
|
154
|
+
- test/fixtures/requests/authorize3d_sync.json
|
|
155
|
+
- test/fixtures/requests/authorize3d_sync.xml
|
|
156
|
+
- test/fixtures/requests/capture.json
|
|
157
|
+
- test/fixtures/requests/capture.xml
|
|
158
|
+
- test/fixtures/requests/debit_sale.json
|
|
159
|
+
- test/fixtures/requests/debit_sale.xml
|
|
160
|
+
- test/fixtures/requests/direct_pay24_sale.json
|
|
161
|
+
- test/fixtures/requests/direct_pay24_sale.xml
|
|
162
|
+
- test/fixtures/requests/giro_pay_sale.json
|
|
163
|
+
- test/fixtures/requests/giro_pay_sale.xml
|
|
164
|
+
- test/fixtures/requests/ideal_sale.json
|
|
165
|
+
- test/fixtures/requests/ideal_sale.xml
|
|
166
|
+
- test/fixtures/requests/init_recurring_authorize.json
|
|
167
|
+
- test/fixtures/requests/init_recurring_authorize.xml
|
|
168
|
+
- test/fixtures/requests/init_recurring_debit_authorize.json
|
|
169
|
+
- test/fixtures/requests/init_recurring_debit_authorize.xml
|
|
170
|
+
- test/fixtures/requests/init_recurring_debit_sale.json
|
|
171
|
+
- test/fixtures/requests/init_recurring_debit_sale.xml
|
|
172
|
+
- test/fixtures/requests/init_recurring_sale.json
|
|
173
|
+
- test/fixtures/requests/init_recurring_sale.xml
|
|
174
|
+
- test/fixtures/requests/init_recurring_sale_with_recurring_schedule.json
|
|
175
|
+
- test/fixtures/requests/pay_in_advance.json
|
|
176
|
+
- test/fixtures/requests/pay_in_advance.xml
|
|
177
|
+
- test/fixtures/requests/pay_pal.json
|
|
178
|
+
- test/fixtures/requests/pay_pal.xml
|
|
179
|
+
- test/fixtures/requests/pay_safe_card_sale.json
|
|
180
|
+
- test/fixtures/requests/pay_safe_card_sale.xml
|
|
181
|
+
- test/fixtures/requests/payment_on_delivery.json
|
|
182
|
+
- test/fixtures/requests/payment_on_delivery.xml
|
|
183
|
+
- test/fixtures/requests/purchase_on_account.json
|
|
184
|
+
- test/fixtures/requests/purchase_on_account.xml
|
|
185
|
+
- test/fixtures/requests/reconcile.json
|
|
186
|
+
- test/fixtures/requests/reconcile.xml
|
|
187
|
+
- test/fixtures/requests/reconcile_by_date.json
|
|
188
|
+
- test/fixtures/requests/reconcile_by_date.xml
|
|
189
|
+
- test/fixtures/requests/recurring_debit_sale.json
|
|
190
|
+
- test/fixtures/requests/recurring_debit_sale.xml
|
|
191
|
+
- test/fixtures/requests/recurring_event.xml
|
|
192
|
+
- test/fixtures/requests/recurring_sale.json
|
|
193
|
+
- test/fixtures/requests/recurring_sale.xml
|
|
194
|
+
- test/fixtures/requests/referenced_fund_transfer.json
|
|
195
|
+
- test/fixtures/requests/referenced_fund_transfer.xml
|
|
196
|
+
- test/fixtures/requests/refund.json
|
|
197
|
+
- test/fixtures/requests/refund.xml
|
|
198
|
+
- test/fixtures/requests/risk_params.json
|
|
199
|
+
- test/fixtures/requests/risk_params.xml
|
|
200
|
+
- test/fixtures/requests/sale.json
|
|
201
|
+
- test/fixtures/requests/sale.xml
|
|
202
|
+
- test/fixtures/requests/sale3d_async.json
|
|
203
|
+
- test/fixtures/requests/sale3d_async.xml
|
|
204
|
+
- test/fixtures/requests/sale3d_sync.json
|
|
205
|
+
- test/fixtures/requests/sale3d_sync.xml
|
|
206
|
+
- test/fixtures/requests/scheduler_create.json
|
|
207
|
+
- test/fixtures/requests/scheduler_index_get_params.json
|
|
208
|
+
- test/fixtures/requests/scheduler_update.json
|
|
209
|
+
- test/fixtures/requests/void.json
|
|
210
|
+
- test/fixtures/requests/void.xml
|
|
211
|
+
- test/fixtures/responses/MobilePayment_new.json
|
|
212
|
+
- test/fixtures/responses/MobilePayment_new.xml
|
|
213
|
+
- test/fixtures/responses/PaymentNotification_echo.xml
|
|
214
|
+
- test/fixtures/responses/PaymentTransactionNotification_echo.xml
|
|
215
|
+
- test/fixtures/responses/WpfPayment_cancel.xml
|
|
216
|
+
- test/fixtures/responses/WpfPayment_captured.xml
|
|
217
|
+
- test/fixtures/responses/WpfPayment_error.json
|
|
218
|
+
- test/fixtures/responses/WpfPayment_error.xml
|
|
219
|
+
- test/fixtures/responses/WpfPayment_find.xml
|
|
220
|
+
- test/fixtures/responses/WpfPayment_new.json
|
|
221
|
+
- test/fixtures/responses/WpfPayment_new.xml
|
|
222
|
+
- test/fixtures/responses/WpfPayment_refunded.xml
|
|
223
|
+
- test/fixtures/responses/WpfPayment_voided.xml
|
|
224
|
+
- test/fixtures/responses/authorize3d_pending_async.xml
|
|
225
|
+
- test/fixtures/responses/authorize3d_sync.xml
|
|
226
|
+
- test/fixtures/responses/authorize_approved.xml
|
|
227
|
+
- test/fixtures/responses/authorize_error.json
|
|
228
|
+
- test/fixtures/responses/authorize_error.xml
|
|
229
|
+
- test/fixtures/responses/capture.xml
|
|
230
|
+
- test/fixtures/responses/create_chargeback.xml
|
|
231
|
+
- test/fixtures/responses/create_chargeback_reversal.xml
|
|
232
|
+
- test/fixtures/responses/create_charged_debit_sale.xml
|
|
233
|
+
- test/fixtures/responses/create_debit_chargeback.xml
|
|
234
|
+
- test/fixtures/responses/create_deposit.xml
|
|
235
|
+
- test/fixtures/responses/create_pre_arbitration.xml
|
|
236
|
+
- test/fixtures/responses/create_rejected_debit_sale.xml
|
|
237
|
+
- test/fixtures/responses/create_retrieval_request.xml
|
|
238
|
+
- test/fixtures/responses/debit_sale.xml
|
|
239
|
+
- test/fixtures/responses/direct_pay24_sale.xml
|
|
240
|
+
- test/fixtures/responses/giro_pay_sale.xml
|
|
241
|
+
- test/fixtures/responses/ideal_sale.xml
|
|
242
|
+
- test/fixtures/responses/init_recurring_authorize.xml
|
|
243
|
+
- test/fixtures/responses/init_recurring_debit_authorize.xml
|
|
244
|
+
- test/fixtures/responses/init_recurring_debit_sale.xml
|
|
245
|
+
- test/fixtures/responses/init_recurring_sale.xml
|
|
246
|
+
- test/fixtures/responses/pay_in_advance.xml
|
|
247
|
+
- test/fixtures/responses/pay_pal.xml
|
|
248
|
+
- test/fixtures/responses/pay_safe_card_sale.xml
|
|
249
|
+
- test/fixtures/responses/payment_on_delivery.xml
|
|
250
|
+
- test/fixtures/responses/purchase_on_account.xml
|
|
251
|
+
- test/fixtures/responses/reconcile_by_date_empty_result.xml
|
|
252
|
+
- test/fixtures/responses/reconcile_by_date_page_1.xml
|
|
253
|
+
- test/fixtures/responses/reconcile_by_date_page_2.xml
|
|
254
|
+
- test/fixtures/responses/reconcile_by_date_page_3.xml
|
|
255
|
+
- test/fixtures/responses/reconcile_by_date_single_result.xml
|
|
256
|
+
- test/fixtures/responses/recurring_debit_sale.xml
|
|
257
|
+
- test/fixtures/responses/recurring_event.json
|
|
258
|
+
- test/fixtures/responses/recurring_event.xml
|
|
259
|
+
- test/fixtures/responses/recurring_sale.xml
|
|
260
|
+
- test/fixtures/responses/referenced_fund_transfer.xml
|
|
261
|
+
- test/fixtures/responses/refund.xml
|
|
262
|
+
- test/fixtures/responses/sale.xml
|
|
263
|
+
- test/fixtures/responses/sale3d_async.xml
|
|
264
|
+
- test/fixtures/responses/sale3d_sync.xml
|
|
265
|
+
- test/fixtures/responses/scheduled_transactions_empty.json
|
|
266
|
+
- test/fixtures/responses/scheduled_transactions_one.json
|
|
267
|
+
- test/fixtures/responses/scheduler.json
|
|
268
|
+
- test/fixtures/responses/scheduler_empty_result.json
|
|
269
|
+
- test/fixtures/responses/scheduler_error.json
|
|
270
|
+
- test/fixtures/responses/scheduler_next.json
|
|
271
|
+
- test/fixtures/responses/scheduler_page_1.json
|
|
272
|
+
- test/fixtures/responses/scheduler_page_2.json
|
|
273
|
+
- test/fixtures/responses/scheduler_single_result.json
|
|
274
|
+
- test/fixtures/responses/void.xml
|
|
275
|
+
- test/js/mobile_payment_test.js
|
|
276
|
+
- test/php/all.php
|
|
277
|
+
- test/php/authorize3d_test.php
|
|
278
|
+
- test/php/authorize_test.php
|
|
279
|
+
- test/php/capture_test.php
|
|
280
|
+
- test/php/json_schema_validator_test.php
|
|
281
|
+
- test/php/mobile_payment_test.php
|
|
282
|
+
- test/php/reconcile_test.php
|
|
283
|
+
- test/php/referenced_fund_transfer_test.php
|
|
284
|
+
- test/php/refund_test.php
|
|
285
|
+
- test/php/sale_test.php
|
|
286
|
+
- test/php/test_helper.php
|
|
287
|
+
- test/php/void_test.php
|
|
288
|
+
- test/php/wpf_payment_test.php
|
|
289
|
+
- test/ruby/authorize3d_async_spec.rb
|
|
290
|
+
- test/ruby/authorize3d_sync_spec.rb
|
|
291
|
+
- test/ruby/authorize_spec.rb
|
|
292
|
+
- test/ruby/capture_spec.rb
|
|
293
|
+
- test/ruby/debit_sale_spec.rb
|
|
294
|
+
- test/ruby/direct_pay24_sale_spec.rb
|
|
295
|
+
- test/ruby/giro_pay_sale_spec.rb
|
|
296
|
+
- test/ruby/ideal_sale_spec.rb
|
|
297
|
+
- test/ruby/init_recurring_authorize_spec.rb
|
|
298
|
+
- test/ruby/init_recurring_debit_authorize_spec.rb
|
|
299
|
+
- test/ruby/init_recurring_debit_sale_spec.rb
|
|
300
|
+
- test/ruby/init_recurring_sale_spec.rb
|
|
301
|
+
- test/ruby/mobile_payment_spec.rb
|
|
302
|
+
- test/ruby/pay_in_advance_spec.rb
|
|
303
|
+
- test/ruby/pay_pal_spec.rb
|
|
304
|
+
- test/ruby/pay_safe_card_sale_spec.rb
|
|
305
|
+
- test/ruby/payment_on_delivery_spec.rb
|
|
306
|
+
- test/ruby/purchase_on_account_spec.rb
|
|
307
|
+
- test/ruby/reconcile_spec.rb
|
|
308
|
+
- test/ruby/recurring_debit_sale_spec.rb
|
|
309
|
+
- test/ruby/recurring_sale_spec.rb
|
|
310
|
+
- test/ruby/referenced_fund_transfer_spec.rb
|
|
311
|
+
- test/ruby/refund_spec.rb
|
|
312
|
+
- test/ruby/sale3d_async_spec.rb
|
|
313
|
+
- test/ruby/sale3d_sync_spec.rb
|
|
314
|
+
- test/ruby/sale_spec.rb
|
|
315
|
+
- test/ruby/scheduler_spec.rb
|
|
316
|
+
- test/ruby/test_helper.rb
|
|
317
|
+
- test/ruby/types_specs.rb
|
|
318
|
+
- test/ruby/void_spec.rb
|
|
319
|
+
- test/ruby/wpf_payment_spec.rb
|
|
320
|
+
homepage: https://sankyu.com
|
|
321
|
+
licenses:
|
|
322
|
+
- MIT
|
|
323
|
+
metadata: {}
|
|
324
|
+
post_install_message:
|
|
325
|
+
rdoc_options: []
|
|
326
|
+
require_paths:
|
|
327
|
+
- lib/ruby/
|
|
328
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
329
|
+
requirements:
|
|
330
|
+
- - '>='
|
|
331
|
+
- !ruby/object:Gem::Version
|
|
332
|
+
version: '0'
|
|
333
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
334
|
+
requirements:
|
|
335
|
+
- - '>='
|
|
336
|
+
- !ruby/object:Gem::Version
|
|
337
|
+
version: '0'
|
|
338
|
+
requirements: []
|
|
339
|
+
rubyforge_project:
|
|
340
|
+
rubygems_version: 2.0.7
|
|
341
|
+
signing_key:
|
|
342
|
+
specification_version: 4
|
|
343
|
+
summary: hypercharge API requests json schema
|
|
344
|
+
test_files:
|
|
345
|
+
- test/fixtures/notifications/PaymentNotification_echo.xml
|
|
346
|
+
- test/fixtures/notifications/TransactionNotification_echo.xml
|
|
347
|
+
- test/fixtures/notifications/recurring_event.json
|
|
348
|
+
- test/fixtures/notifications/scheduler.json
|
|
349
|
+
- test/fixtures/requests/MobilePayment.json
|
|
350
|
+
- test/fixtures/requests/MobilePayment.xml
|
|
351
|
+
- test/fixtures/requests/WpfPayment.json
|
|
352
|
+
- test/fixtures/requests/WpfPayment.xml
|
|
353
|
+
- test/fixtures/requests/WpfPayment_cancel.xml
|
|
354
|
+
- test/fixtures/requests/WpfPayment_capture.xml
|
|
355
|
+
- test/fixtures/requests/WpfPayment_refund.xml
|
|
356
|
+
- test/fixtures/requests/WpfPayment_void.xml
|
|
357
|
+
- test/fixtures/requests/authorize.json
|
|
358
|
+
- test/fixtures/requests/authorize.xml
|
|
359
|
+
- test/fixtures/requests/authorize3d_async.json
|
|
360
|
+
- test/fixtures/requests/authorize3d_async.xml
|
|
361
|
+
- test/fixtures/requests/authorize3d_sync.json
|
|
362
|
+
- test/fixtures/requests/authorize3d_sync.xml
|
|
363
|
+
- test/fixtures/requests/capture.json
|
|
364
|
+
- test/fixtures/requests/capture.xml
|
|
365
|
+
- test/fixtures/requests/debit_sale.json
|
|
366
|
+
- test/fixtures/requests/debit_sale.xml
|
|
367
|
+
- test/fixtures/requests/direct_pay24_sale.json
|
|
368
|
+
- test/fixtures/requests/direct_pay24_sale.xml
|
|
369
|
+
- test/fixtures/requests/giro_pay_sale.json
|
|
370
|
+
- test/fixtures/requests/giro_pay_sale.xml
|
|
371
|
+
- test/fixtures/requests/ideal_sale.json
|
|
372
|
+
- test/fixtures/requests/ideal_sale.xml
|
|
373
|
+
- test/fixtures/requests/init_recurring_authorize.json
|
|
374
|
+
- test/fixtures/requests/init_recurring_authorize.xml
|
|
375
|
+
- test/fixtures/requests/init_recurring_debit_authorize.json
|
|
376
|
+
- test/fixtures/requests/init_recurring_debit_authorize.xml
|
|
377
|
+
- test/fixtures/requests/init_recurring_debit_sale.json
|
|
378
|
+
- test/fixtures/requests/init_recurring_debit_sale.xml
|
|
379
|
+
- test/fixtures/requests/init_recurring_sale.json
|
|
380
|
+
- test/fixtures/requests/init_recurring_sale.xml
|
|
381
|
+
- test/fixtures/requests/init_recurring_sale_with_recurring_schedule.json
|
|
382
|
+
- test/fixtures/requests/pay_in_advance.json
|
|
383
|
+
- test/fixtures/requests/pay_in_advance.xml
|
|
384
|
+
- test/fixtures/requests/pay_pal.json
|
|
385
|
+
- test/fixtures/requests/pay_pal.xml
|
|
386
|
+
- test/fixtures/requests/pay_safe_card_sale.json
|
|
387
|
+
- test/fixtures/requests/pay_safe_card_sale.xml
|
|
388
|
+
- test/fixtures/requests/payment_on_delivery.json
|
|
389
|
+
- test/fixtures/requests/payment_on_delivery.xml
|
|
390
|
+
- test/fixtures/requests/purchase_on_account.json
|
|
391
|
+
- test/fixtures/requests/purchase_on_account.xml
|
|
392
|
+
- test/fixtures/requests/reconcile.json
|
|
393
|
+
- test/fixtures/requests/reconcile.xml
|
|
394
|
+
- test/fixtures/requests/reconcile_by_date.json
|
|
395
|
+
- test/fixtures/requests/reconcile_by_date.xml
|
|
396
|
+
- test/fixtures/requests/recurring_debit_sale.json
|
|
397
|
+
- test/fixtures/requests/recurring_debit_sale.xml
|
|
398
|
+
- test/fixtures/requests/recurring_event.xml
|
|
399
|
+
- test/fixtures/requests/recurring_sale.json
|
|
400
|
+
- test/fixtures/requests/recurring_sale.xml
|
|
401
|
+
- test/fixtures/requests/referenced_fund_transfer.json
|
|
402
|
+
- test/fixtures/requests/referenced_fund_transfer.xml
|
|
403
|
+
- test/fixtures/requests/refund.json
|
|
404
|
+
- test/fixtures/requests/refund.xml
|
|
405
|
+
- test/fixtures/requests/risk_params.json
|
|
406
|
+
- test/fixtures/requests/risk_params.xml
|
|
407
|
+
- test/fixtures/requests/sale.json
|
|
408
|
+
- test/fixtures/requests/sale.xml
|
|
409
|
+
- test/fixtures/requests/sale3d_async.json
|
|
410
|
+
- test/fixtures/requests/sale3d_async.xml
|
|
411
|
+
- test/fixtures/requests/sale3d_sync.json
|
|
412
|
+
- test/fixtures/requests/sale3d_sync.xml
|
|
413
|
+
- test/fixtures/requests/scheduler_create.json
|
|
414
|
+
- test/fixtures/requests/scheduler_index_get_params.json
|
|
415
|
+
- test/fixtures/requests/scheduler_update.json
|
|
416
|
+
- test/fixtures/requests/void.json
|
|
417
|
+
- test/fixtures/requests/void.xml
|
|
418
|
+
- test/fixtures/responses/MobilePayment_new.json
|
|
419
|
+
- test/fixtures/responses/MobilePayment_new.xml
|
|
420
|
+
- test/fixtures/responses/PaymentNotification_echo.xml
|
|
421
|
+
- test/fixtures/responses/PaymentTransactionNotification_echo.xml
|
|
422
|
+
- test/fixtures/responses/WpfPayment_cancel.xml
|
|
423
|
+
- test/fixtures/responses/WpfPayment_captured.xml
|
|
424
|
+
- test/fixtures/responses/WpfPayment_error.json
|
|
425
|
+
- test/fixtures/responses/WpfPayment_error.xml
|
|
426
|
+
- test/fixtures/responses/WpfPayment_find.xml
|
|
427
|
+
- test/fixtures/responses/WpfPayment_new.json
|
|
428
|
+
- test/fixtures/responses/WpfPayment_new.xml
|
|
429
|
+
- test/fixtures/responses/WpfPayment_refunded.xml
|
|
430
|
+
- test/fixtures/responses/WpfPayment_voided.xml
|
|
431
|
+
- test/fixtures/responses/authorize3d_pending_async.xml
|
|
432
|
+
- test/fixtures/responses/authorize3d_sync.xml
|
|
433
|
+
- test/fixtures/responses/authorize_approved.xml
|
|
434
|
+
- test/fixtures/responses/authorize_error.json
|
|
435
|
+
- test/fixtures/responses/authorize_error.xml
|
|
436
|
+
- test/fixtures/responses/capture.xml
|
|
437
|
+
- test/fixtures/responses/create_chargeback.xml
|
|
438
|
+
- test/fixtures/responses/create_chargeback_reversal.xml
|
|
439
|
+
- test/fixtures/responses/create_charged_debit_sale.xml
|
|
440
|
+
- test/fixtures/responses/create_debit_chargeback.xml
|
|
441
|
+
- test/fixtures/responses/create_deposit.xml
|
|
442
|
+
- test/fixtures/responses/create_pre_arbitration.xml
|
|
443
|
+
- test/fixtures/responses/create_rejected_debit_sale.xml
|
|
444
|
+
- test/fixtures/responses/create_retrieval_request.xml
|
|
445
|
+
- test/fixtures/responses/debit_sale.xml
|
|
446
|
+
- test/fixtures/responses/direct_pay24_sale.xml
|
|
447
|
+
- test/fixtures/responses/giro_pay_sale.xml
|
|
448
|
+
- test/fixtures/responses/ideal_sale.xml
|
|
449
|
+
- test/fixtures/responses/init_recurring_authorize.xml
|
|
450
|
+
- test/fixtures/responses/init_recurring_debit_authorize.xml
|
|
451
|
+
- test/fixtures/responses/init_recurring_debit_sale.xml
|
|
452
|
+
- test/fixtures/responses/init_recurring_sale.xml
|
|
453
|
+
- test/fixtures/responses/pay_in_advance.xml
|
|
454
|
+
- test/fixtures/responses/pay_pal.xml
|
|
455
|
+
- test/fixtures/responses/pay_safe_card_sale.xml
|
|
456
|
+
- test/fixtures/responses/payment_on_delivery.xml
|
|
457
|
+
- test/fixtures/responses/purchase_on_account.xml
|
|
458
|
+
- test/fixtures/responses/reconcile_by_date_empty_result.xml
|
|
459
|
+
- test/fixtures/responses/reconcile_by_date_page_1.xml
|
|
460
|
+
- test/fixtures/responses/reconcile_by_date_page_2.xml
|
|
461
|
+
- test/fixtures/responses/reconcile_by_date_page_3.xml
|
|
462
|
+
- test/fixtures/responses/reconcile_by_date_single_result.xml
|
|
463
|
+
- test/fixtures/responses/recurring_debit_sale.xml
|
|
464
|
+
- test/fixtures/responses/recurring_event.json
|
|
465
|
+
- test/fixtures/responses/recurring_event.xml
|
|
466
|
+
- test/fixtures/responses/recurring_sale.xml
|
|
467
|
+
- test/fixtures/responses/referenced_fund_transfer.xml
|
|
468
|
+
- test/fixtures/responses/refund.xml
|
|
469
|
+
- test/fixtures/responses/sale.xml
|
|
470
|
+
- test/fixtures/responses/sale3d_async.xml
|
|
471
|
+
- test/fixtures/responses/sale3d_sync.xml
|
|
472
|
+
- test/fixtures/responses/scheduled_transactions_empty.json
|
|
473
|
+
- test/fixtures/responses/scheduled_transactions_one.json
|
|
474
|
+
- test/fixtures/responses/scheduler.json
|
|
475
|
+
- test/fixtures/responses/scheduler_empty_result.json
|
|
476
|
+
- test/fixtures/responses/scheduler_error.json
|
|
477
|
+
- test/fixtures/responses/scheduler_next.json
|
|
478
|
+
- test/fixtures/responses/scheduler_page_1.json
|
|
479
|
+
- test/fixtures/responses/scheduler_page_2.json
|
|
480
|
+
- test/fixtures/responses/scheduler_single_result.json
|
|
481
|
+
- test/fixtures/responses/void.xml
|
|
482
|
+
- test/js/mobile_payment_test.js
|
|
483
|
+
- test/php/all.php
|
|
484
|
+
- test/php/authorize3d_test.php
|
|
485
|
+
- test/php/authorize_test.php
|
|
486
|
+
- test/php/capture_test.php
|
|
487
|
+
- test/php/json_schema_validator_test.php
|
|
488
|
+
- test/php/mobile_payment_test.php
|
|
489
|
+
- test/php/reconcile_test.php
|
|
490
|
+
- test/php/referenced_fund_transfer_test.php
|
|
491
|
+
- test/php/refund_test.php
|
|
492
|
+
- test/php/sale_test.php
|
|
493
|
+
- test/php/test_helper.php
|
|
494
|
+
- test/php/void_test.php
|
|
495
|
+
- test/php/wpf_payment_test.php
|
|
496
|
+
- test/ruby/authorize3d_async_spec.rb
|
|
497
|
+
- test/ruby/authorize3d_sync_spec.rb
|
|
498
|
+
- test/ruby/authorize_spec.rb
|
|
499
|
+
- test/ruby/capture_spec.rb
|
|
500
|
+
- test/ruby/debit_sale_spec.rb
|
|
501
|
+
- test/ruby/direct_pay24_sale_spec.rb
|
|
502
|
+
- test/ruby/giro_pay_sale_spec.rb
|
|
503
|
+
- test/ruby/ideal_sale_spec.rb
|
|
504
|
+
- test/ruby/init_recurring_authorize_spec.rb
|
|
505
|
+
- test/ruby/init_recurring_debit_authorize_spec.rb
|
|
506
|
+
- test/ruby/init_recurring_debit_sale_spec.rb
|
|
507
|
+
- test/ruby/init_recurring_sale_spec.rb
|
|
508
|
+
- test/ruby/mobile_payment_spec.rb
|
|
509
|
+
- test/ruby/pay_in_advance_spec.rb
|
|
510
|
+
- test/ruby/pay_pal_spec.rb
|
|
511
|
+
- test/ruby/pay_safe_card_sale_spec.rb
|
|
512
|
+
- test/ruby/payment_on_delivery_spec.rb
|
|
513
|
+
- test/ruby/purchase_on_account_spec.rb
|
|
514
|
+
- test/ruby/reconcile_spec.rb
|
|
515
|
+
- test/ruby/recurring_debit_sale_spec.rb
|
|
516
|
+
- test/ruby/recurring_sale_spec.rb
|
|
517
|
+
- test/ruby/referenced_fund_transfer_spec.rb
|
|
518
|
+
- test/ruby/refund_spec.rb
|
|
519
|
+
- test/ruby/sale3d_async_spec.rb
|
|
520
|
+
- test/ruby/sale3d_sync_spec.rb
|
|
521
|
+
- test/ruby/sale_spec.rb
|
|
522
|
+
- test/ruby/scheduler_spec.rb
|
|
523
|
+
- test/ruby/test_helper.rb
|
|
524
|
+
- test/ruby/types_specs.rb
|
|
525
|
+
- test/ruby/void_spec.rb
|
|
526
|
+
- test/ruby/wpf_payment_spec.rb
|
|
527
|
+
has_rdoc:
|