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,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::AddressTypeCode
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'AddressTypeCode' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::AddressTypeCode.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of AddressTypeCode' do
|
31
|
+
it 'should create an instance of AddressTypeCode' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::AddressTypeCode)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,47 @@
|
|
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::Beneficiary
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Beneficiary' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::Beneficiary.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Beneficiary' do
|
31
|
+
it 'should create an instance of Beneficiary' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::Beneficiary)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "beneficiary_persons"' 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 "account_numbers"' 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
|
+
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::BeneficiaryVasp
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'BeneficiaryVasp' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::BeneficiaryVasp.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of BeneficiaryVasp' do
|
31
|
+
it 'should create an instance of BeneficiaryVasp' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::BeneficiaryVasp)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "beneficiary_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
|
@@ -0,0 +1,47 @@
|
|
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::DateAndPlaceOfBirth
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'DateAndPlaceOfBirth' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::DateAndPlaceOfBirth.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of DateAndPlaceOfBirth' do
|
31
|
+
it 'should create an instance of DateAndPlaceOfBirth' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::DateAndPlaceOfBirth)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "date_of_birth"' 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 "place_of_birth"' 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
|
+
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::IdentityPayload
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'IdentityPayload' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::IdentityPayload.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of IdentityPayload' do
|
31
|
+
it 'should create an instance of IdentityPayload' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::IdentityPayload)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "originator"' 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 "beneficiary"' 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 "originating_vasp"' 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 "beneficiary_vasp"' 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 "transfer_path"' 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 "payload_metadata"' 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,47 @@
|
|
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::IntermediaryVasp
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'IntermediaryVasp' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::IntermediaryVasp.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of IntermediaryVasp' do
|
31
|
+
it 'should create an instance of IntermediaryVasp' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::IntermediaryVasp)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "intermediary_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
|
+
describe 'test attribute "sequence"' 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
|
+
end
|
@@ -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::LegalPersonNameId
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'LegalPersonNameId' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::LegalPersonNameId.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of LegalPersonNameId' do
|
31
|
+
it 'should create an instance of LegalPersonNameId' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::LegalPersonNameId)
|
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,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::LegalPersonName
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'LegalPersonName' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::LegalPersonName.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of LegalPersonName' do
|
31
|
+
it 'should create an instance of LegalPersonName' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::LegalPersonName)
|
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::LegalPersonNameTypeCode
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'LegalPersonNameTypeCode' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::LegalPersonNameTypeCode.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of LegalPersonNameTypeCode' do
|
31
|
+
it 'should create an instance of LegalPersonNameTypeCode' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::LegalPersonNameTypeCode)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,65 @@
|
|
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::LegalPerson
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'LegalPerson' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = SygnaBridgeIvmsUtil::LegalPerson.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of LegalPerson' do
|
31
|
+
it 'should create an instance of LegalPerson' do
|
32
|
+
expect(@instance).to be_instance_of(SygnaBridgeIvmsUtil::LegalPerson)
|
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 "customer_number"' 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 "national_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 "country_of_registration"' 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
|
+
end
|