sygna-bridge-ivms-util 0.0.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 +7 -0
- data/Gemfile +9 -0
- data/README.md +110 -0
- data/Rakefile +10 -0
- data/docs/Address.md +47 -0
- data/docs/AddressTypeCode.md +16 -0
- data/docs/Beneficiary.md +19 -0
- data/docs/BeneficiaryVasp.md +17 -0
- data/docs/DateAndPlaceOfBirth.md +19 -0
- data/docs/DefaultApi.md +49 -0
- data/docs/IdentityPayload.md +27 -0
- data/docs/IntermediaryVasp.md +19 -0
- data/docs/LegalPerson.md +25 -0
- data/docs/LegalPersonName.md +21 -0
- data/docs/LegalPersonNameId.md +19 -0
- data/docs/LegalPersonNameTypeCode.md +16 -0
- data/docs/LocalLegalPersonNameId.md +19 -0
- data/docs/LocalNaturalPersonNameId.md +21 -0
- data/docs/NationalIdentification.md +23 -0
- data/docs/NationalIdentifierTypeCode.md +16 -0
- data/docs/NaturalPerson.md +27 -0
- data/docs/NaturalPersonName.md +21 -0
- data/docs/NaturalPersonNameId.md +21 -0
- data/docs/NaturalPersonNameTypeCode.md +16 -0
- data/docs/OriginatingVasp.md +17 -0
- data/docs/Originator.md +19 -0
- data/docs/PayloadMetadata.md +17 -0
- data/docs/Person.md +19 -0
- data/docs/TransliterationMethodCode.md +16 -0
- data/git_push.sh +58 -0
- data/lib/sygna-bridge-ivms-util.rb +64 -0
- data/lib/sygna-bridge-ivms-util/api/default_api.rb +74 -0
- data/lib/sygna-bridge-ivms-util/api_client.rb +387 -0
- data/lib/sygna-bridge-ivms-util/api_error.rb +57 -0
- data/lib/sygna-bridge-ivms-util/configuration.rb +241 -0
- data/lib/sygna-bridge-ivms-util/models/address.rb +377 -0
- data/lib/sygna-bridge-ivms-util/models/address_type_code.rb +37 -0
- data/lib/sygna-bridge-ivms-util/models/beneficiary.rb +219 -0
- data/lib/sygna-bridge-ivms-util/models/beneficiary_vasp.rb +206 -0
- data/lib/sygna-bridge-ivms-util/models/date_and_place_of_birth.rb +215 -0
- data/lib/sygna-bridge-ivms-util/models/identity_payload.rb +253 -0
- data/lib/sygna-bridge-ivms-util/models/intermediary_vasp.rb +239 -0
- data/lib/sygna-bridge-ivms-util/models/legal_person.rb +244 -0
- data/lib/sygna-bridge-ivms-util/models/legal_person_name.rb +230 -0
- data/lib/sygna-bridge-ivms-util/models/legal_person_name_id.rb +249 -0
- data/lib/sygna-bridge-ivms-util/models/legal_person_name_type_code.rb +37 -0
- data/lib/sygna-bridge-ivms-util/models/local_legal_person_name_id.rb +249 -0
- data/lib/sygna-bridge-ivms-util/models/local_natural_person_name_id.rb +258 -0
- data/lib/sygna-bridge-ivms-util/models/national_identification.rb +267 -0
- data/lib/sygna-bridge-ivms-util/models/national_identifier_type_code.rb +44 -0
- data/lib/sygna-bridge-ivms-util/models/natural_person.rb +253 -0
- data/lib/sygna-bridge-ivms-util/models/natural_person_name.rb +230 -0
- data/lib/sygna-bridge-ivms-util/models/natural_person_name_id.rb +258 -0
- data/lib/sygna-bridge-ivms-util/models/natural_person_name_type_code.rb +39 -0
- data/lib/sygna-bridge-ivms-util/models/originating_vasp.rb +206 -0
- data/lib/sygna-bridge-ivms-util/models/originator.rb +219 -0
- data/lib/sygna-bridge-ivms-util/models/payload_metadata.rb +230 -0
- data/lib/sygna-bridge-ivms-util/models/person.rb +215 -0
- data/lib/sygna-bridge-ivms-util/models/transliteration_method_code.rb +47 -0
- data/lib/sygna-bridge-ivms-util/version.rb +15 -0
- data/spec/api/default_api_spec.rb +44 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/address_spec.rb +135 -0
- data/spec/models/address_type_code_spec.rb +35 -0
- data/spec/models/beneficiary_spec.rb +47 -0
- data/spec/models/beneficiary_vasp_spec.rb +41 -0
- data/spec/models/date_and_place_of_birth_spec.rb +47 -0
- data/spec/models/identity_payload_spec.rb +71 -0
- data/spec/models/intermediary_vasp_spec.rb +47 -0
- data/spec/models/legal_person_name_id_spec.rb +51 -0
- data/spec/models/legal_person_name_spec.rb +53 -0
- data/spec/models/legal_person_name_type_code_spec.rb +35 -0
- data/spec/models/legal_person_spec.rb +65 -0
- data/spec/models/local_legal_person_name_id_spec.rb +51 -0
- data/spec/models/local_natural_person_name_id_spec.rb +57 -0
- data/spec/models/national_identification_spec.rb +63 -0
- data/spec/models/national_identifier_type_code_spec.rb +35 -0
- data/spec/models/natural_person_name_id_spec.rb +57 -0
- data/spec/models/natural_person_name_spec.rb +53 -0
- data/spec/models/natural_person_name_type_code_spec.rb +35 -0
- data/spec/models/natural_person_spec.rb +71 -0
- data/spec/models/originating_vasp_spec.rb +41 -0
- data/spec/models/originator_spec.rb +47 -0
- data/spec/models/payload_metadata_spec.rb +45 -0
- data/spec/models/person_spec.rb +47 -0
- data/spec/models/transliteration_method_code_spec.rb +35 -0
- data/spec/spec_helper.rb +111 -0
- data/sygna-bridge-ivms-util.gemspec +39 -0
- metadata +219 -0
@@ -0,0 +1,51 @@
|
|
1
|
+
=begin
|
2
|
+
#Bridge
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SygnaBridgeIvmsUtil::LocalLegalPersonNameId
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'LocalLegalPersonNameId' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::LocalLegalPersonNameId.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of LocalLegalPersonNameId' do
|
31
|
+
it 'should create an instance of LocalLegalPersonNameId' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::LocalLegalPersonNameId)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "legal_person_name"' 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 "legal_person_name_identifier_type"' 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', ["LEGL", "SHRT", "TRAD"])
|
45
|
+
# validator.allowable_values.each do |value|
|
46
|
+
# expect { @instance.legal_person_name_identifier_type = value }.not_to raise_error
|
47
|
+
# end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
=begin
|
2
|
+
#Bridge
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SygnaBridgeIvmsUtil::LocalNaturalPersonNameId
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'LocalNaturalPersonNameId' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::LocalNaturalPersonNameId.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of LocalNaturalPersonNameId' do
|
31
|
+
it 'should create an instance of LocalNaturalPersonNameId' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::LocalNaturalPersonNameId)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "primary_identifier"' 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 "secondary_identifier"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "name_identifier_type"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["ALIA", "BIRT", "MAID", "LEGL", "MISC"])
|
51
|
+
# validator.allowable_values.each do |value|
|
52
|
+
# expect { @instance.name_identifier_type = value }.not_to raise_error
|
53
|
+
# end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
=begin
|
2
|
+
#Bridge
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SygnaBridgeIvmsUtil::NationalIdentification
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NationalIdentification' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::NationalIdentification.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NationalIdentification' do
|
31
|
+
it 'should create an instance of NationalIdentification' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::NationalIdentification)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "national_identifier"' 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 "national_identifier_type"' 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', ["ARNU", "CCPT", "RAID", "DRLC", "FIIN", "TXID", "SOCS", "IDCD", "LEIX", "MISC"])
|
45
|
+
# validator.allowable_values.each do |value|
|
46
|
+
# expect { @instance.national_identifier_type = value }.not_to raise_error
|
47
|
+
# end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
describe 'test attribute "country_of_issue"' do
|
52
|
+
it 'should work' do
|
53
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
describe 'test attribute "registration_authority"' do
|
58
|
+
it 'should work' do
|
59
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#Bridge
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SygnaBridgeIvmsUtil::NationalIdentifierTypeCode
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NationalIdentifierTypeCode' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::NationalIdentifierTypeCode.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NationalIdentifierTypeCode' do
|
31
|
+
it 'should create an instance of NationalIdentifierTypeCode' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::NationalIdentifierTypeCode)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
=begin
|
2
|
+
#Bridge
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SygnaBridgeIvmsUtil::NaturalPersonNameId
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NaturalPersonNameId' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::NaturalPersonNameId.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NaturalPersonNameId' do
|
31
|
+
it 'should create an instance of NaturalPersonNameId' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::NaturalPersonNameId)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "primary_identifier"' 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 "secondary_identifier"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "name_identifier_type"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["ALIA", "BIRT", "MAID", "LEGL", "MISC"])
|
51
|
+
# validator.allowable_values.each do |value|
|
52
|
+
# expect { @instance.name_identifier_type = value }.not_to raise_error
|
53
|
+
# end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
=begin
|
2
|
+
#Bridge
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SygnaBridgeIvmsUtil::NaturalPersonName
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NaturalPersonName' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::NaturalPersonName.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NaturalPersonName' do
|
31
|
+
it 'should create an instance of NaturalPersonName' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::NaturalPersonName)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "name_identifiers"' 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 "local_name_identifiers"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "phonetic_name_identifiers"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
=begin
|
2
|
+
#Bridge
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SygnaBridgeIvmsUtil::NaturalPersonNameTypeCode
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NaturalPersonNameTypeCode' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::NaturalPersonNameTypeCode.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NaturalPersonNameTypeCode' do
|
31
|
+
it 'should create an instance of NaturalPersonNameTypeCode' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::NaturalPersonNameTypeCode)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
=begin
|
2
|
+
#Bridge
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SygnaBridgeIvmsUtil::NaturalPerson
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'NaturalPerson' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::NaturalPerson.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of NaturalPerson' do
|
31
|
+
it 'should create an instance of NaturalPerson' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::NaturalPerson)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "name"' 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 "geographic_addresses"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "national_identification"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "customer_identification"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "date_and_place_of_birth"' 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
|
+
|
65
|
+
describe 'test attribute "country_of_residence"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#Bridge
|
3
|
+
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.0.0-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for SygnaBridgeIvmsUtil::OriginatingVasp
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'OriginatingVasp' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::OriginatingVasp.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of OriginatingVasp' do
|
31
|
+
it 'should create an instance of OriginatingVasp' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::OriginatingVasp)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "originating_vasp"' 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
|
+
end
|