wire4_client 1.0.0 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +7 -4
- data/docs/AccountResponse.md +1 -0
- data/docs/BeneficiariesQueryRegisterStatus.md +13 -0
- data/docs/CuentasDeBeneficiariosSPEIApi.md +54 -0
- data/docs/Deposit.md +1 -0
- data/docs/MessageDepositReceived.md +1 -0
- data/docs/MessageRequestChanged.md +9 -0
- data/docs/TransferenciasSPEIApi.md +1 -1
- data/lib/wire4_client.rb +2 -0
- data/lib/wire4_client/api/cuentas_de_beneficiarios_spei_api.rb +89 -0
- data/lib/wire4_client/api/transferencias_spei_api.rb +2 -2
- data/lib/wire4_client/models/account_response.rb +14 -4
- data/lib/wire4_client/models/beneficiaries_query_register_status.rb +270 -0
- data/lib/wire4_client/models/deposit.rb +11 -1
- data/lib/wire4_client/models/message_deposit_received.rb +11 -1
- data/lib/wire4_client/models/message_request_changed.rb +229 -0
- data/lib/wire4_client/version.rb +1 -1
- data/spec/api/cuentas_de_beneficiarios_spei_api_spec.rb +14 -0
- data/spec/api/transferencias_spei_api_spec.rb +1 -1
- data/spec/models/account_response_spec.rb +6 -0
- data/spec/models/beneficiaries_query_register_status_spec.rb +75 -0
- data/spec/models/deposit_spec.rb +6 -0
- data/spec/models/message_deposit_received_spec.rb +6 -0
- data/spec/models/message_request_changed_spec.rb +51 -0
- metadata +10 -2
data/spec/models/deposit_spec.rb
CHANGED
@@ -56,6 +56,12 @@ describe 'Deposit' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
+
describe 'test attribute "cep"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
59
65
|
describe 'test attribute "clave_rastreo"' do
|
60
66
|
it 'should work' do
|
61
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -56,6 +56,12 @@ describe 'MessageDepositReceived' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
+
describe 'test attribute "cep"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
59
65
|
describe 'test attribute "clave_rastreo"' do
|
60
66
|
it 'should work' do
|
61
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -0,0 +1,51 @@
|
|
1
|
+
=begin
|
2
|
+
#Wire4RestAPI
|
3
|
+
|
4
|
+
#Referencia de la API de Wire4
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.10
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Wire4Client::MessageRequestChanged
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'MessageRequestChanged' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = Wire4Client::MessageRequestChanged.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of MessageRequestChanged' do
|
31
|
+
it 'should create an instance of MessageRequestChanged' do
|
32
|
+
expect(@instance).to be_instance_of(Wire4Client::MessageRequestChanged)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "request_id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "status"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["AUTHORIZED"])
|
45
|
+
# validator.allowable_values.each do |value|
|
46
|
+
# expect { @instance.status = value }.not_to raise_error
|
47
|
+
# end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wire4_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wire4
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -208,6 +208,7 @@ files:
|
|
208
208
|
- docs/AmountRequest.md
|
209
209
|
- docs/Balance.md
|
210
210
|
- docs/BalanceListResponse.md
|
211
|
+
- docs/BeneficiariesQueryRegisterStatus.md
|
211
212
|
- docs/BeneficiariesResponse.md
|
212
213
|
- docs/BeneficiaryInstitution.md
|
213
214
|
- docs/Billing.md
|
@@ -235,6 +236,7 @@ files:
|
|
235
236
|
- docs/MessageDepositReceived.md
|
236
237
|
- docs/MessageInstitution.md
|
237
238
|
- docs/MessagePayment.md
|
239
|
+
- docs/MessageRequestChanged.md
|
238
240
|
- docs/MessageSubscription.md
|
239
241
|
- docs/MessageWebHook.md
|
240
242
|
- docs/Payment.md
|
@@ -285,6 +287,7 @@ files:
|
|
285
287
|
- lib/wire4_client/models/amount_request.rb
|
286
288
|
- lib/wire4_client/models/balance.rb
|
287
289
|
- lib/wire4_client/models/balance_list_response.rb
|
290
|
+
- lib/wire4_client/models/beneficiaries_query_register_status.rb
|
288
291
|
- lib/wire4_client/models/beneficiaries_response.rb
|
289
292
|
- lib/wire4_client/models/beneficiary_institution.rb
|
290
293
|
- lib/wire4_client/models/billing.rb
|
@@ -305,6 +308,7 @@ files:
|
|
305
308
|
- lib/wire4_client/models/message_deposit_received.rb
|
306
309
|
- lib/wire4_client/models/message_institution.rb
|
307
310
|
- lib/wire4_client/models/message_payment.rb
|
311
|
+
- lib/wire4_client/models/message_request_changed.rb
|
308
312
|
- lib/wire4_client/models/message_subscription.rb
|
309
313
|
- lib/wire4_client/models/message_web_hook.rb
|
310
314
|
- lib/wire4_client/models/payment.rb
|
@@ -348,6 +352,7 @@ files:
|
|
348
352
|
- spec/models/amount_request_spec.rb
|
349
353
|
- spec/models/balance_list_response_spec.rb
|
350
354
|
- spec/models/balance_spec.rb
|
355
|
+
- spec/models/beneficiaries_query_register_status_spec.rb
|
351
356
|
- spec/models/beneficiaries_response_spec.rb
|
352
357
|
- spec/models/beneficiary_institution_spec.rb
|
353
358
|
- spec/models/billing_spec.rb
|
@@ -368,6 +373,7 @@ files:
|
|
368
373
|
- spec/models/message_deposit_received_spec.rb
|
369
374
|
- spec/models/message_institution_spec.rb
|
370
375
|
- spec/models/message_payment_spec.rb
|
376
|
+
- spec/models/message_request_changed_spec.rb
|
371
377
|
- spec/models/message_subscription_spec.rb
|
372
378
|
- spec/models/message_web_hook_spec.rb
|
373
379
|
- spec/models/payment_spec.rb
|
@@ -451,10 +457,12 @@ test_files:
|
|
451
457
|
- spec/models/transaction_outgoing_spid_spec.rb
|
452
458
|
- spec/models/get_depositants_spec.rb
|
453
459
|
- spec/models/institutions_list_spec.rb
|
460
|
+
- spec/models/beneficiaries_query_register_status_spec.rb
|
454
461
|
- spec/models/webhook_response_spec.rb
|
455
462
|
- spec/models/webhooks_list_spec.rb
|
456
463
|
- spec/models/payment_spec.rb
|
457
464
|
- spec/models/spid_classifications_response_dto_spec.rb
|
465
|
+
- spec/models/message_request_changed_spec.rb
|
458
466
|
- spec/models/message_payment_spec.rb
|
459
467
|
- spec/models/beneficiary_institution_spec.rb
|
460
468
|
- spec/models/billing_transaction_spec.rb
|