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
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: bbb6f1264b703fe565f1c46e73acf7f757a872a9132c7c4d3f304d8628219c39
|
4
|
+
data.tar.gz: 5bf3c658eca5cdc8522f4c8381f69cbe50c63ca4efbe8f45e0b7be79474b2e5c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6981a6bd81bb87def607d10635f06e278d92ce3c2af43867fcf6cb49552f83c531794aff355399cffe49204e7c7135a163fe70a8694960b9266646148f916043
|
7
|
+
data.tar.gz: 66f89b6a37a52837896886411ab2adfd823ac1a372e1fa9d7fb45a8f45e4c4a5d3299e025bd91d0feeaa7b953871db820c3ad2dcf404cf63c83af05e144d773f
|
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
# sygna-bridge-ivms-util
|
2
|
+
|
3
|
+
SygnaBridgeIvmsUtil - the Ruby gem for the Bridge
|
4
|
+
|
5
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
|
+
|
7
|
+
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
|
+
|
9
|
+
- API version: 2
|
10
|
+
- Package version: 0.0.1
|
11
|
+
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
|
+
|
13
|
+
## Installation
|
14
|
+
|
15
|
+
### Build a gem
|
16
|
+
|
17
|
+
To build the Ruby code into a gem:
|
18
|
+
|
19
|
+
```shell
|
20
|
+
gem build sygna-bridge-ivms-util.gemspec
|
21
|
+
```
|
22
|
+
|
23
|
+
Then either install the gem locally:
|
24
|
+
|
25
|
+
```shell
|
26
|
+
gem install ./sygna-bridge-ivms-util-0.0.1.gem
|
27
|
+
```
|
28
|
+
|
29
|
+
(for development, run `gem install --dev ./sygna-bridge-ivms-util-0.0.1.gem` to install the development dependencies)
|
30
|
+
|
31
|
+
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
|
+
|
33
|
+
Finally add this to the Gemfile:
|
34
|
+
|
35
|
+
gem 'sygna-bridge-ivms-util', '~> 0.0.1'
|
36
|
+
|
37
|
+
### Install from Git
|
38
|
+
|
39
|
+
If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
|
40
|
+
|
41
|
+
gem 'sygna-bridge-ivms-util', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'
|
42
|
+
|
43
|
+
### Include the Ruby code directly
|
44
|
+
|
45
|
+
Include the Ruby code directly using `-I` as follows:
|
46
|
+
|
47
|
+
```shell
|
48
|
+
ruby -Ilib script.rb
|
49
|
+
```
|
50
|
+
|
51
|
+
## Getting Started
|
52
|
+
|
53
|
+
Please follow the [installation](#installation) procedure and then run the following code:
|
54
|
+
|
55
|
+
```ruby
|
56
|
+
# Load the gem
|
57
|
+
require 'sygna-bridge-ivms-util'
|
58
|
+
|
59
|
+
api_instance = SygnaBridgeIvmsUtil::DefaultApi.new
|
60
|
+
|
61
|
+
begin
|
62
|
+
result = api_instance.bridge_vasp_get
|
63
|
+
p result
|
64
|
+
rescue SygnaBridgeIvmsUtil::ApiError => e
|
65
|
+
puts "Exception when calling DefaultApi->bridge_vasp_get: #{e}"
|
66
|
+
end
|
67
|
+
|
68
|
+
```
|
69
|
+
|
70
|
+
## Documentation for API Endpoints
|
71
|
+
|
72
|
+
All URIs are relative to *http://localhost*
|
73
|
+
|
74
|
+
Class | Method | HTTP request | Description
|
75
|
+
------------ | ------------- | ------------- | -------------
|
76
|
+
*SygnaBridgeIvmsUtil::DefaultApi* | [**bridge_vasp_get**](docs/DefaultApi.md#bridge_vasp_get) | **GET** /bridge/vasp |
|
77
|
+
|
78
|
+
|
79
|
+
## Documentation for Models
|
80
|
+
|
81
|
+
- [SygnaBridgeIvmsUtil::Address](docs/Address.md)
|
82
|
+
- [SygnaBridgeIvmsUtil::AddressTypeCode](docs/AddressTypeCode.md)
|
83
|
+
- [SygnaBridgeIvmsUtil::Beneficiary](docs/Beneficiary.md)
|
84
|
+
- [SygnaBridgeIvmsUtil::BeneficiaryVasp](docs/BeneficiaryVasp.md)
|
85
|
+
- [SygnaBridgeIvmsUtil::DateAndPlaceOfBirth](docs/DateAndPlaceOfBirth.md)
|
86
|
+
- [SygnaBridgeIvmsUtil::IdentityPayload](docs/IdentityPayload.md)
|
87
|
+
- [SygnaBridgeIvmsUtil::IntermediaryVasp](docs/IntermediaryVasp.md)
|
88
|
+
- [SygnaBridgeIvmsUtil::LegalPerson](docs/LegalPerson.md)
|
89
|
+
- [SygnaBridgeIvmsUtil::LegalPersonName](docs/LegalPersonName.md)
|
90
|
+
- [SygnaBridgeIvmsUtil::LegalPersonNameId](docs/LegalPersonNameId.md)
|
91
|
+
- [SygnaBridgeIvmsUtil::LegalPersonNameTypeCode](docs/LegalPersonNameTypeCode.md)
|
92
|
+
- [SygnaBridgeIvmsUtil::LocalLegalPersonNameId](docs/LocalLegalPersonNameId.md)
|
93
|
+
- [SygnaBridgeIvmsUtil::LocalNaturalPersonNameId](docs/LocalNaturalPersonNameId.md)
|
94
|
+
- [SygnaBridgeIvmsUtil::NationalIdentification](docs/NationalIdentification.md)
|
95
|
+
- [SygnaBridgeIvmsUtil::NationalIdentifierTypeCode](docs/NationalIdentifierTypeCode.md)
|
96
|
+
- [SygnaBridgeIvmsUtil::NaturalPerson](docs/NaturalPerson.md)
|
97
|
+
- [SygnaBridgeIvmsUtil::NaturalPersonName](docs/NaturalPersonName.md)
|
98
|
+
- [SygnaBridgeIvmsUtil::NaturalPersonNameId](docs/NaturalPersonNameId.md)
|
99
|
+
- [SygnaBridgeIvmsUtil::NaturalPersonNameTypeCode](docs/NaturalPersonNameTypeCode.md)
|
100
|
+
- [SygnaBridgeIvmsUtil::OriginatingVasp](docs/OriginatingVasp.md)
|
101
|
+
- [SygnaBridgeIvmsUtil::Originator](docs/Originator.md)
|
102
|
+
- [SygnaBridgeIvmsUtil::PayloadMetadata](docs/PayloadMetadata.md)
|
103
|
+
- [SygnaBridgeIvmsUtil::Person](docs/Person.md)
|
104
|
+
- [SygnaBridgeIvmsUtil::TransliterationMethodCode](docs/TransliterationMethodCode.md)
|
105
|
+
|
106
|
+
|
107
|
+
## Documentation for Authorization
|
108
|
+
|
109
|
+
All endpoints do not require authorization.
|
110
|
+
|
data/Rakefile
ADDED
data/docs/Address.md
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::Address
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**address_type** | **String** | | [optional]
|
8
|
+
**department** | **String** | | [optional]
|
9
|
+
**sub_department** | **String** | | [optional]
|
10
|
+
**street_name** | **String** | | [optional]
|
11
|
+
**building_number** | **String** | | [optional]
|
12
|
+
**building_name** | **String** | | [optional]
|
13
|
+
**floor** | **String** | | [optional]
|
14
|
+
**post_box** | **String** | | [optional]
|
15
|
+
**room** | **String** | | [optional]
|
16
|
+
**post_code** | **String** | | [optional]
|
17
|
+
**town_name** | **String** | | [optional]
|
18
|
+
**town_location_name** | **String** | | [optional]
|
19
|
+
**district_name** | **String** | | [optional]
|
20
|
+
**country_sub_division** | **String** | | [optional]
|
21
|
+
**address_line** | **Array<String>** | | [optional]
|
22
|
+
**country** | **String** | | [optional]
|
23
|
+
|
24
|
+
## Code Sample
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
require 'SygnaBridgeIvmsUtil'
|
28
|
+
|
29
|
+
instance = SygnaBridgeIvmsUtil::Address.new(address_type: null,
|
30
|
+
department: null,
|
31
|
+
sub_department: null,
|
32
|
+
street_name: null,
|
33
|
+
building_number: null,
|
34
|
+
building_name: null,
|
35
|
+
floor: null,
|
36
|
+
post_box: null,
|
37
|
+
room: null,
|
38
|
+
post_code: null,
|
39
|
+
town_name: null,
|
40
|
+
town_location_name: null,
|
41
|
+
district_name: null,
|
42
|
+
country_sub_division: null,
|
43
|
+
address_line: null,
|
44
|
+
country: null)
|
45
|
+
```
|
46
|
+
|
47
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::AddressTypeCode
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
|
8
|
+
## Code Sample
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
require 'SygnaBridgeIvmsUtil'
|
12
|
+
|
13
|
+
instance = SygnaBridgeIvmsUtil::AddressTypeCode.new()
|
14
|
+
```
|
15
|
+
|
16
|
+
|
data/docs/Beneficiary.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::Beneficiary
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**beneficiary_persons** | [**Array<Person>**](Person.md) | | [optional]
|
8
|
+
**account_numbers** | **Array<String>** | | [optional]
|
9
|
+
|
10
|
+
## Code Sample
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'SygnaBridgeIvmsUtil'
|
14
|
+
|
15
|
+
instance = SygnaBridgeIvmsUtil::Beneficiary.new(beneficiary_persons: null,
|
16
|
+
account_numbers: null)
|
17
|
+
```
|
18
|
+
|
19
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::BeneficiaryVasp
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**beneficiary_vasp** | [**Person**](Person.md) | | [optional]
|
8
|
+
|
9
|
+
## Code Sample
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'SygnaBridgeIvmsUtil'
|
13
|
+
|
14
|
+
instance = SygnaBridgeIvmsUtil::BeneficiaryVasp.new(beneficiary_vasp: null)
|
15
|
+
```
|
16
|
+
|
17
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::DateAndPlaceOfBirth
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**date_of_birth** | **String** | | [optional]
|
8
|
+
**place_of_birth** | **String** | | [optional]
|
9
|
+
|
10
|
+
## Code Sample
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'SygnaBridgeIvmsUtil'
|
14
|
+
|
15
|
+
instance = SygnaBridgeIvmsUtil::DateAndPlaceOfBirth.new(date_of_birth: null,
|
16
|
+
place_of_birth: null)
|
17
|
+
```
|
18
|
+
|
19
|
+
|
data/docs/DefaultApi.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::DefaultApi
|
2
|
+
|
3
|
+
All URIs are relative to *http://localhost*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**bridge_vasp_get**](DefaultApi.md#bridge_vasp_get) | **GET** /bridge/vasp |
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
## bridge_vasp_get
|
12
|
+
|
13
|
+
> Object bridge_vasp_get
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
### Example
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
# load the gem
|
21
|
+
require 'sygna-bridge-ivms-util'
|
22
|
+
|
23
|
+
api_instance = SygnaBridgeIvmsUtil::DefaultApi.new
|
24
|
+
|
25
|
+
begin
|
26
|
+
result = api_instance.bridge_vasp_get
|
27
|
+
p result
|
28
|
+
rescue SygnaBridgeIvmsUtil::ApiError => e
|
29
|
+
puts "Exception when calling DefaultApi->bridge_vasp_get: #{e}"
|
30
|
+
end
|
31
|
+
```
|
32
|
+
|
33
|
+
### Parameters
|
34
|
+
|
35
|
+
This endpoint does not need any parameter.
|
36
|
+
|
37
|
+
### Return type
|
38
|
+
|
39
|
+
**Object**
|
40
|
+
|
41
|
+
### Authorization
|
42
|
+
|
43
|
+
No authorization required
|
44
|
+
|
45
|
+
### HTTP request headers
|
46
|
+
|
47
|
+
- **Content-Type**: Not defined
|
48
|
+
- **Accept**: */*
|
49
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::IdentityPayload
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**originator** | [**Originator**](Originator.md) | | [optional]
|
8
|
+
**beneficiary** | [**Beneficiary**](Beneficiary.md) | | [optional]
|
9
|
+
**originating_vasp** | [**OriginatingVasp**](OriginatingVasp.md) | | [optional]
|
10
|
+
**beneficiary_vasp** | [**BeneficiaryVasp**](BeneficiaryVasp.md) | | [optional]
|
11
|
+
**transfer_path** | [**Array<IntermediaryVasp>**](IntermediaryVasp.md) | | [optional]
|
12
|
+
**payload_metadata** | [**PayloadMetadata**](PayloadMetadata.md) | | [optional]
|
13
|
+
|
14
|
+
## Code Sample
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'SygnaBridgeIvmsUtil'
|
18
|
+
|
19
|
+
instance = SygnaBridgeIvmsUtil::IdentityPayload.new(originator: null,
|
20
|
+
beneficiary: null,
|
21
|
+
originating_vasp: null,
|
22
|
+
beneficiary_vasp: null,
|
23
|
+
transfer_path: null,
|
24
|
+
payload_metadata: null)
|
25
|
+
```
|
26
|
+
|
27
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::IntermediaryVasp
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**intermediary_vasp** | [**Person**](Person.md) | | [optional]
|
8
|
+
**sequence** | **Integer** | | [optional]
|
9
|
+
|
10
|
+
## Code Sample
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'SygnaBridgeIvmsUtil'
|
14
|
+
|
15
|
+
instance = SygnaBridgeIvmsUtil::IntermediaryVasp.new(intermediary_vasp: null,
|
16
|
+
sequence: null)
|
17
|
+
```
|
18
|
+
|
19
|
+
|
data/docs/LegalPerson.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::LegalPerson
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**name** | [**LegalPersonName**](LegalPersonName.md) | | [optional]
|
8
|
+
**geographic_addresses** | [**Array<Address>**](Address.md) | | [optional]
|
9
|
+
**customer_number** | **String** | | [optional]
|
10
|
+
**national_identification** | [**NationalIdentification**](NationalIdentification.md) | | [optional]
|
11
|
+
**country_of_registration** | **String** | | [optional]
|
12
|
+
|
13
|
+
## Code Sample
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
require 'SygnaBridgeIvmsUtil'
|
17
|
+
|
18
|
+
instance = SygnaBridgeIvmsUtil::LegalPerson.new(name: null,
|
19
|
+
geographic_addresses: null,
|
20
|
+
customer_number: null,
|
21
|
+
national_identification: null,
|
22
|
+
country_of_registration: null)
|
23
|
+
```
|
24
|
+
|
25
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::LegalPersonName
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**name_identifiers** | [**Array<LegalPersonNameId>**](LegalPersonNameId.md) | | [optional]
|
8
|
+
**local_name_identifiers** | [**Array<LocalLegalPersonNameId>**](LocalLegalPersonNameId.md) | | [optional]
|
9
|
+
**phonetic_name_identifiers** | [**Array<LocalLegalPersonNameId>**](LocalLegalPersonNameId.md) | | [optional]
|
10
|
+
|
11
|
+
## Code Sample
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'SygnaBridgeIvmsUtil'
|
15
|
+
|
16
|
+
instance = SygnaBridgeIvmsUtil::LegalPersonName.new(name_identifiers: null,
|
17
|
+
local_name_identifiers: null,
|
18
|
+
phonetic_name_identifiers: null)
|
19
|
+
```
|
20
|
+
|
21
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::LegalPersonNameId
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**legal_person_name** | **String** | | [optional]
|
8
|
+
**legal_person_name_identifier_type** | **String** | | [optional]
|
9
|
+
|
10
|
+
## Code Sample
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'SygnaBridgeIvmsUtil'
|
14
|
+
|
15
|
+
instance = SygnaBridgeIvmsUtil::LegalPersonNameId.new(legal_person_name: null,
|
16
|
+
legal_person_name_identifier_type: null)
|
17
|
+
```
|
18
|
+
|
19
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# SygnaBridgeIvmsUtil::LegalPersonNameTypeCode
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
|
8
|
+
## Code Sample
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
require 'SygnaBridgeIvmsUtil'
|
12
|
+
|
13
|
+
instance = SygnaBridgeIvmsUtil::LegalPersonNameTypeCode.new()
|
14
|
+
```
|
15
|
+
|
16
|
+
|