fdr_organization 3.9.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 +144 -0
- data/Rakefile +10 -0
- data/docs/AddPaymentRequest.md +18 -0
- data/docs/CreateRequest.md +34 -0
- data/docs/DeletePaymentRequest.md +18 -0
- data/docs/ErrorCode.md +22 -0
- data/docs/ErrorMessage.md +20 -0
- data/docs/ErrorResponse.md +26 -0
- data/docs/Fdr.md +24 -0
- data/docs/FdrByPspIdIuvIurBase.md +26 -0
- data/docs/FdrByPspIdIuvIurResponse.md +22 -0
- data/docs/FdrInserted.md +24 -0
- data/docs/FdrPublished.md +24 -0
- data/docs/GenericResponse.md +18 -0
- data/docs/GetAllCreatedResponse.md +22 -0
- data/docs/GetAllPublishedResponse.md +22 -0
- data/docs/GetAllResponse.md +22 -0
- data/docs/GetCreatedResponse.md +46 -0
- data/docs/GetPaymentResponse.md +22 -0
- data/docs/GetResponse.md +48 -0
- data/docs/InfoApi.md +81 -0
- data/docs/InfoResponse.md +26 -0
- data/docs/Metadata.md +22 -0
- data/docs/OrganizationsApi.md +266 -0
- data/docs/Payment.md +30 -0
- data/docs/PaymentStatusEnum.md +15 -0
- data/docs/Receiver.md +22 -0
- data/docs/ReportingFlowStatusEnum.md +15 -0
- data/docs/Sender.md +30 -0
- data/docs/SenderTypeEnum.md +15 -0
- data/fdr_organization.gemspec +39 -0
- data/git_push.sh +57 -0
- data/lib/fdr_organization/api/info_api.rb +79 -0
- data/lib/fdr_organization/api/organizations_api.rb +291 -0
- data/lib/fdr_organization/api_client.rb +394 -0
- data/lib/fdr_organization/api_error.rb +58 -0
- data/lib/fdr_organization/configuration.rb +319 -0
- data/lib/fdr_organization/models/add_payment_request.rb +251 -0
- data/lib/fdr_organization/models/create_request.rb +446 -0
- data/lib/fdr_organization/models/delete_payment_request.rb +251 -0
- data/lib/fdr_organization/models/error_code.rb +232 -0
- data/lib/fdr_organization/models/error_message.rb +223 -0
- data/lib/fdr_organization/models/error_response.rb +252 -0
- data/lib/fdr_organization/models/fdr.rb +241 -0
- data/lib/fdr_organization/models/fdr_by_psp_id_iuv_iur_base.rb +250 -0
- data/lib/fdr_organization/models/fdr_by_psp_id_iuv_iur_response.rb +234 -0
- data/lib/fdr_organization/models/fdr_inserted.rb +241 -0
- data/lib/fdr_organization/models/fdr_published.rb +241 -0
- data/lib/fdr_organization/models/generic_response.rb +214 -0
- data/lib/fdr_organization/models/get_all_created_response.rb +234 -0
- data/lib/fdr_organization/models/get_all_published_response.rb +234 -0
- data/lib/fdr_organization/models/get_all_response.rb +234 -0
- data/lib/fdr_organization/models/get_created_response.rb +362 -0
- data/lib/fdr_organization/models/get_payment_response.rb +234 -0
- data/lib/fdr_organization/models/get_response.rb +371 -0
- data/lib/fdr_organization/models/info_response.rb +252 -0
- data/lib/fdr_organization/models/metadata.rb +232 -0
- data/lib/fdr_organization/models/payment.rb +454 -0
- data/lib/fdr_organization/models/payment_status_enum.rb +43 -0
- data/lib/fdr_organization/models/receiver.rb +319 -0
- data/lib/fdr_organization/models/reporting_flow_status_enum.rb +41 -0
- data/lib/fdr_organization/models/sender.rb +461 -0
- data/lib/fdr_organization/models/sender_type_enum.rb +41 -0
- data/lib/fdr_organization/version.rb +15 -0
- data/lib/fdr_organization.rb +67 -0
- data/spec/api/info_api_spec.rb +46 -0
- data/spec/api/organizations_api_spec.rb +83 -0
- data/spec/models/add_payment_request_spec.rb +36 -0
- data/spec/models/create_request_spec.rb +84 -0
- data/spec/models/delete_payment_request_spec.rb +36 -0
- data/spec/models/error_code_spec.rb +48 -0
- data/spec/models/error_message_spec.rb +42 -0
- data/spec/models/error_response_spec.rb +60 -0
- data/spec/models/fdr_by_psp_id_iuv_iur_base_spec.rb +60 -0
- data/spec/models/fdr_by_psp_id_iuv_iur_response_spec.rb +48 -0
- data/spec/models/fdr_inserted_spec.rb +54 -0
- data/spec/models/fdr_published_spec.rb +54 -0
- data/spec/models/fdr_spec.rb +54 -0
- data/spec/models/generic_response_spec.rb +36 -0
- data/spec/models/get_all_created_response_spec.rb +48 -0
- data/spec/models/get_all_published_response_spec.rb +48 -0
- data/spec/models/get_all_response_spec.rb +48 -0
- data/spec/models/get_created_response_spec.rb +120 -0
- data/spec/models/get_payment_response_spec.rb +48 -0
- data/spec/models/get_response_spec.rb +126 -0
- data/spec/models/info_response_spec.rb +60 -0
- data/spec/models/metadata_spec.rb +48 -0
- data/spec/models/payment_spec.rb +72 -0
- data/spec/models/payment_status_enum_spec.rb +30 -0
- data/spec/models/receiver_spec.rb +48 -0
- data/spec/models/reporting_flow_status_enum_spec.rb +30 -0
- data/spec/models/sender_spec.rb +72 -0
- data/spec/models/sender_type_enum_spec.rb +30 -0
- data/spec/spec_helper.rb +111 -0
- metadata +204 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 973e7175afa97ffbd7b7843729f089fe8637990073fa51cc8d23dbad05acc87b
|
|
4
|
+
data.tar.gz: f21b7a787959ec55621df909d268de69fc4f54fc5de7f55456817257a0149b1d
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 5bb419618db63f037f5fae559c4e58df6e5a6f6e86407acbabc99ebb1e6decc7895eb7f8494b9391e4a3683320e3e1c4f76eb385db9a616cc3179838591297dc
|
|
7
|
+
data.tar.gz: 1c52655c230fcfd5a8ff61f9328c17db582bd572bbf4cd9bb90c6e4d6f36893ab26b5bd9b6a6d7dbe044cb79e1be8d33846c82b522aa08f7220834b82bd20e2f
|
data/Gemfile
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
# fdr_organization
|
|
2
|
+
|
|
3
|
+
FdrOrgs - the Ruby gem for the FDR - Flussi di rendicontazione (ORGS)
|
|
4
|
+
|
|
5
|
+
FDR - Flussi di rendicontazione (ORGS)
|
|
6
|
+
|
|
7
|
+
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
|
+
|
|
9
|
+
- API version: v1
|
|
10
|
+
- Package version: 3.9.1
|
|
11
|
+
- Generator version: 7.11.0
|
|
12
|
+
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
### Build a gem
|
|
17
|
+
|
|
18
|
+
To build the Ruby code into a gem:
|
|
19
|
+
|
|
20
|
+
```shell
|
|
21
|
+
gem build fdr_organization.gemspec
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Then either install the gem locally:
|
|
25
|
+
|
|
26
|
+
```shell
|
|
27
|
+
gem install ./fdr_organization-3.9.1.gem
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
(for development, run `gem install --dev ./fdr_organization-3.9.1.gem` to install the development dependencies)
|
|
31
|
+
|
|
32
|
+
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
33
|
+
|
|
34
|
+
Finally add this to the Gemfile:
|
|
35
|
+
|
|
36
|
+
gem 'fdr_organization', '~> 3.9.1'
|
|
37
|
+
|
|
38
|
+
### Install from Git
|
|
39
|
+
|
|
40
|
+
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:
|
|
41
|
+
|
|
42
|
+
gem 'fdr_organization', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'
|
|
43
|
+
|
|
44
|
+
### Include the Ruby code directly
|
|
45
|
+
|
|
46
|
+
Include the Ruby code directly using `-I` as follows:
|
|
47
|
+
|
|
48
|
+
```shell
|
|
49
|
+
ruby -Ilib script.rb
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Getting Started
|
|
53
|
+
|
|
54
|
+
Please follow the [installation](#installation) procedure and then run the following code:
|
|
55
|
+
|
|
56
|
+
```ruby
|
|
57
|
+
# Load the gem
|
|
58
|
+
require 'fdr_organization'
|
|
59
|
+
|
|
60
|
+
# Setup authorization
|
|
61
|
+
FdrOrgs.configure do |config|
|
|
62
|
+
# Configure API key authorization: apiKeyQuery
|
|
63
|
+
config.api_key['subscription-key'] = 'YOUR API KEY'
|
|
64
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
65
|
+
# config.api_key_prefix['subscription-key'] = 'Bearer'
|
|
66
|
+
|
|
67
|
+
# Configure API key authorization: apiKeyHeader
|
|
68
|
+
config.api_key['Ocp-Apim-Subscription-Key'] = 'YOUR API KEY'
|
|
69
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
70
|
+
# config.api_key_prefix['Ocp-Apim-Subscription-Key'] = 'Bearer'
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
api_instance = FdrOrgs::InfoApi.new
|
|
74
|
+
|
|
75
|
+
begin
|
|
76
|
+
#Get info of FDR
|
|
77
|
+
result = api_instance.get_info
|
|
78
|
+
p result
|
|
79
|
+
rescue FdrOrgs::ApiError => e
|
|
80
|
+
puts "Exception when calling InfoApi->get_info: #{e}"
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Documentation for API Endpoints
|
|
86
|
+
|
|
87
|
+
All URIs are relative to *https://api.uat.platform.pagopa.it/fdr-org/service/v1*
|
|
88
|
+
|
|
89
|
+
Class | Method | HTTP request | Description
|
|
90
|
+
------------ | ------------- | ------------- | -------------
|
|
91
|
+
*FdrOrgs::InfoApi* | [**get_info**](docs/InfoApi.md#get_info) | **GET** /info | Get info of FDR
|
|
92
|
+
*FdrOrgs::OrganizationsApi* | [**get**](docs/OrganizationsApi.md#get) | **GET** /organizations/{organizationId}/fdrs/{fdr}/revisions/{revision}/psps/{pspId} | Get fdr
|
|
93
|
+
*FdrOrgs::OrganizationsApi* | [**get_all_published**](docs/OrganizationsApi.md#get_all_published) | **GET** /organizations/{organizationId}/fdrs | Get all fdr published
|
|
94
|
+
*FdrOrgs::OrganizationsApi* | [**get_payment**](docs/OrganizationsApi.md#get_payment) | **GET** /organizations/{organizationId}/fdrs/{fdr}/revisions/{revision}/psps/{pspId}/payments | Get payments of fdr
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
## Documentation for Models
|
|
98
|
+
|
|
99
|
+
- [FdrOrgs::AddPaymentRequest](docs/AddPaymentRequest.md)
|
|
100
|
+
- [FdrOrgs::CreateRequest](docs/CreateRequest.md)
|
|
101
|
+
- [FdrOrgs::DeletePaymentRequest](docs/DeletePaymentRequest.md)
|
|
102
|
+
- [FdrOrgs::ErrorCode](docs/ErrorCode.md)
|
|
103
|
+
- [FdrOrgs::ErrorMessage](docs/ErrorMessage.md)
|
|
104
|
+
- [FdrOrgs::ErrorResponse](docs/ErrorResponse.md)
|
|
105
|
+
- [FdrOrgs::Fdr](docs/Fdr.md)
|
|
106
|
+
- [FdrOrgs::FdrByPspIdIuvIurBase](docs/FdrByPspIdIuvIurBase.md)
|
|
107
|
+
- [FdrOrgs::FdrByPspIdIuvIurResponse](docs/FdrByPspIdIuvIurResponse.md)
|
|
108
|
+
- [FdrOrgs::FdrInserted](docs/FdrInserted.md)
|
|
109
|
+
- [FdrOrgs::FdrPublished](docs/FdrPublished.md)
|
|
110
|
+
- [FdrOrgs::GenericResponse](docs/GenericResponse.md)
|
|
111
|
+
- [FdrOrgs::GetAllCreatedResponse](docs/GetAllCreatedResponse.md)
|
|
112
|
+
- [FdrOrgs::GetAllPublishedResponse](docs/GetAllPublishedResponse.md)
|
|
113
|
+
- [FdrOrgs::GetAllResponse](docs/GetAllResponse.md)
|
|
114
|
+
- [FdrOrgs::GetCreatedResponse](docs/GetCreatedResponse.md)
|
|
115
|
+
- [FdrOrgs::GetPaymentResponse](docs/GetPaymentResponse.md)
|
|
116
|
+
- [FdrOrgs::GetResponse](docs/GetResponse.md)
|
|
117
|
+
- [FdrOrgs::InfoResponse](docs/InfoResponse.md)
|
|
118
|
+
- [FdrOrgs::Metadata](docs/Metadata.md)
|
|
119
|
+
- [FdrOrgs::Payment](docs/Payment.md)
|
|
120
|
+
- [FdrOrgs::PaymentStatusEnum](docs/PaymentStatusEnum.md)
|
|
121
|
+
- [FdrOrgs::Receiver](docs/Receiver.md)
|
|
122
|
+
- [FdrOrgs::ReportingFlowStatusEnum](docs/ReportingFlowStatusEnum.md)
|
|
123
|
+
- [FdrOrgs::Sender](docs/Sender.md)
|
|
124
|
+
- [FdrOrgs::SenderTypeEnum](docs/SenderTypeEnum.md)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
## Documentation for Authorization
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
Authentication schemes defined for the API:
|
|
131
|
+
### apiKeyHeader
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
- **Type**: API key
|
|
135
|
+
- **API key parameter name**: Ocp-Apim-Subscription-Key
|
|
136
|
+
- **Location**: HTTP header
|
|
137
|
+
|
|
138
|
+
### apiKeyQuery
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
- **Type**: API key
|
|
142
|
+
- **API key parameter name**: subscription-key
|
|
143
|
+
- **Location**: URL query string
|
|
144
|
+
|
data/Rakefile
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# FdrOrgs::AddPaymentRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **payments** | [**Array<Payment>**](Payment.md) | | |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'fdr_organization'
|
|
13
|
+
|
|
14
|
+
instance = FdrOrgs::AddPaymentRequest.new(
|
|
15
|
+
payments: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# FdrOrgs::CreateRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **fdr** | **String** | [XML NodoInviaFlussoRendicontazione]=[identificativoFlusso] | |
|
|
8
|
+
| **fdr_date** | **Time** | [XML NodoInviaFlussoRendicontazione]=[dataOraFlusso] | |
|
|
9
|
+
| **sender** | [**Sender**](Sender.md) | | |
|
|
10
|
+
| **receiver** | [**Receiver**](Receiver.md) | | |
|
|
11
|
+
| **regulation** | **String** | [XML FlussoRiversamento]=[identificativoUnivocoRegolamento] | |
|
|
12
|
+
| **regulation_date** | **Time** | [XML FlussoRiversamento]=[dataRegolamento] | |
|
|
13
|
+
| **bic_code_pouring_bank** | **String** | [XML FlussoRiversamento]=[codiceBicBancaDiRiversamento] | [optional] |
|
|
14
|
+
| **tot_payments** | **Integer** | [XML FlussoRiversamento]=[numeroTotalePagamenti] | |
|
|
15
|
+
| **sum_payments** | **Float** | [XML FlussoRiversamento]=[importoTotalePagamenti] | |
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```ruby
|
|
20
|
+
require 'fdr_organization'
|
|
21
|
+
|
|
22
|
+
instance = FdrOrgs::CreateRequest.new(
|
|
23
|
+
fdr: 2016-08-16pspTest-1178,
|
|
24
|
+
fdr_date: 2022-03-10T04:15:50Z,
|
|
25
|
+
sender: null,
|
|
26
|
+
receiver: null,
|
|
27
|
+
regulation: SEPA - Bonifico xzy,
|
|
28
|
+
regulation_date: 2022-03-10T04:15:50Z,
|
|
29
|
+
bic_code_pouring_bank: UNCRITMMXXX,
|
|
30
|
+
tot_payments: 1,
|
|
31
|
+
sum_payments: 0.01
|
|
32
|
+
)
|
|
33
|
+
```
|
|
34
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# FdrOrgs::DeletePaymentRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **index_list** | **Array<Integer>** | | |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'fdr_organization'
|
|
13
|
+
|
|
14
|
+
instance = FdrOrgs::DeletePaymentRequest.new(
|
|
15
|
+
index_list: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
data/docs/ErrorCode.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FdrOrgs::ErrorCode
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **code** | **String** | | [optional] |
|
|
8
|
+
| **description** | **String** | | [optional] |
|
|
9
|
+
| **status_code** | **Integer** | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'fdr_organization'
|
|
15
|
+
|
|
16
|
+
instance = FdrOrgs::ErrorCode.new(
|
|
17
|
+
code: FDR-0500,
|
|
18
|
+
description: An unexpected error has occurred. Please contact support.,
|
|
19
|
+
status_code: 500
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# FdrOrgs::ErrorMessage
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **path** | **String** | | [optional] |
|
|
8
|
+
| **message** | **String** | | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'fdr_organization'
|
|
14
|
+
|
|
15
|
+
instance = FdrOrgs::ErrorMessage.new(
|
|
16
|
+
path: demo.test,
|
|
17
|
+
message: An unexpected error has occurred. Please contact support.
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# FdrOrgs::ErrorResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **error_id** | **String** | | [optional] |
|
|
8
|
+
| **http_status_code** | **Integer** | | [optional] |
|
|
9
|
+
| **http_status_description** | **String** | | [optional] |
|
|
10
|
+
| **app_error_code** | **String** | | [optional] |
|
|
11
|
+
| **errors** | [**Array<ErrorMessage>**](ErrorMessage.md) | | [optional] |
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
require 'fdr_organization'
|
|
17
|
+
|
|
18
|
+
instance = FdrOrgs::ErrorResponse.new(
|
|
19
|
+
error_id: 50905466-1881-457b-b42f-fb7b2bfb1610,
|
|
20
|
+
http_status_code: 500,
|
|
21
|
+
http_status_description: Internal Server Error,
|
|
22
|
+
app_error_code: FDR-500,
|
|
23
|
+
errors: null
|
|
24
|
+
)
|
|
25
|
+
```
|
|
26
|
+
|
data/docs/Fdr.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# FdrOrgs::Fdr
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **fdr** | **String** | | [optional] |
|
|
8
|
+
| **psp_id** | **String** | | [optional] |
|
|
9
|
+
| **revision** | **Integer** | | [optional] |
|
|
10
|
+
| **published** | **Time** | | [optional] |
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'fdr_organization'
|
|
16
|
+
|
|
17
|
+
instance = FdrOrgs::Fdr.new(
|
|
18
|
+
fdr: AAABBB,
|
|
19
|
+
psp_id: 1,
|
|
20
|
+
revision: 1,
|
|
21
|
+
published: 2022-03-10T04:15:50Z
|
|
22
|
+
)
|
|
23
|
+
```
|
|
24
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# FdrOrgs::FdrByPspIdIuvIurBase
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **psp_id** | **String** | | [optional] |
|
|
8
|
+
| **organization_id** | **String** | | [optional] |
|
|
9
|
+
| **fdr** | **String** | | [optional] |
|
|
10
|
+
| **revision** | **Integer** | | [optional] |
|
|
11
|
+
| **created** | **Time** | | [optional] |
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
require 'fdr_organization'
|
|
17
|
+
|
|
18
|
+
instance = FdrOrgs::FdrByPspIdIuvIurBase.new(
|
|
19
|
+
psp_id: null,
|
|
20
|
+
organization_id: null,
|
|
21
|
+
fdr: null,
|
|
22
|
+
revision: null,
|
|
23
|
+
created: 2022-03-10T04:15:50Z
|
|
24
|
+
)
|
|
25
|
+
```
|
|
26
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FdrOrgs::FdrByPspIdIuvIurResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **metadata** | [**Metadata**](Metadata.md) | | [optional] |
|
|
8
|
+
| **count** | **Integer** | | [optional] |
|
|
9
|
+
| **data** | [**Array<FdrByPspIdIuvIurBase>**](FdrByPspIdIuvIurBase.md) | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'fdr_organization'
|
|
15
|
+
|
|
16
|
+
instance = FdrOrgs::FdrByPspIdIuvIurResponse.new(
|
|
17
|
+
metadata: null,
|
|
18
|
+
count: 100,
|
|
19
|
+
data: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
data/docs/FdrInserted.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# FdrOrgs::FdrInserted
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **fdr** | **String** | | [optional] |
|
|
8
|
+
| **organization_id** | **String** | | [optional] |
|
|
9
|
+
| **revision** | **Integer** | | [optional] |
|
|
10
|
+
| **created** | **Time** | | [optional] |
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'fdr_organization'
|
|
16
|
+
|
|
17
|
+
instance = FdrOrgs::FdrInserted.new(
|
|
18
|
+
fdr: AAABBB,
|
|
19
|
+
organization_id: 1,
|
|
20
|
+
revision: 1,
|
|
21
|
+
created: 2022-03-10T04:15:50Z
|
|
22
|
+
)
|
|
23
|
+
```
|
|
24
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# FdrOrgs::FdrPublished
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **fdr** | **String** | | [optional] |
|
|
8
|
+
| **organization_id** | **String** | | [optional] |
|
|
9
|
+
| **revision** | **Integer** | | [optional] |
|
|
10
|
+
| **published** | **Time** | | [optional] |
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'fdr_organization'
|
|
16
|
+
|
|
17
|
+
instance = FdrOrgs::FdrPublished.new(
|
|
18
|
+
fdr: AAABBB,
|
|
19
|
+
organization_id: 1,
|
|
20
|
+
revision: 1,
|
|
21
|
+
published: 2022-03-10T04:15:50Z
|
|
22
|
+
)
|
|
23
|
+
```
|
|
24
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# FdrOrgs::GenericResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **message** | **String** | | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'fdr_organization'
|
|
13
|
+
|
|
14
|
+
instance = FdrOrgs::GenericResponse.new(
|
|
15
|
+
message: Success
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FdrOrgs::GetAllCreatedResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **metadata** | [**Metadata**](Metadata.md) | | [optional] |
|
|
8
|
+
| **count** | **Integer** | | [optional] |
|
|
9
|
+
| **data** | [**Array<FdrInserted>**](FdrInserted.md) | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'fdr_organization'
|
|
15
|
+
|
|
16
|
+
instance = FdrOrgs::GetAllCreatedResponse.new(
|
|
17
|
+
metadata: null,
|
|
18
|
+
count: 100,
|
|
19
|
+
data: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FdrOrgs::GetAllPublishedResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **metadata** | [**Metadata**](Metadata.md) | | [optional] |
|
|
8
|
+
| **count** | **Integer** | | [optional] |
|
|
9
|
+
| **data** | [**Array<FdrPublished>**](FdrPublished.md) | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'fdr_organization'
|
|
15
|
+
|
|
16
|
+
instance = FdrOrgs::GetAllPublishedResponse.new(
|
|
17
|
+
metadata: null,
|
|
18
|
+
count: 100,
|
|
19
|
+
data: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FdrOrgs::GetAllResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **metadata** | [**Metadata**](Metadata.md) | | [optional] |
|
|
8
|
+
| **count** | **Integer** | | [optional] |
|
|
9
|
+
| **data** | [**Array<Fdr>**](Fdr.md) | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'fdr_organization'
|
|
15
|
+
|
|
16
|
+
instance = FdrOrgs::GetAllResponse.new(
|
|
17
|
+
metadata: null,
|
|
18
|
+
count: 100,
|
|
19
|
+
data: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# FdrOrgs::GetCreatedResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **status** | [**ReportingFlowStatusEnum**](ReportingFlowStatusEnum.md) | | [optional] |
|
|
8
|
+
| **revision** | **Integer** | | [optional] |
|
|
9
|
+
| **created** | **Time** | | [optional] |
|
|
10
|
+
| **updated** | **Time** | | [optional] |
|
|
11
|
+
| **fdr** | **String** | | [optional] |
|
|
12
|
+
| **fdr_date** | **Time** | | [optional] |
|
|
13
|
+
| **regulation** | **String** | | [optional] |
|
|
14
|
+
| **regulation_date** | **Time** | | [optional] |
|
|
15
|
+
| **bic_code_pouring_bank** | **String** | | [optional] |
|
|
16
|
+
| **sender** | [**Sender**](Sender.md) | | [optional] |
|
|
17
|
+
| **receiver** | [**Receiver**](Receiver.md) | | [optional] |
|
|
18
|
+
| **computed_tot_payments** | **Integer** | | [optional] |
|
|
19
|
+
| **computed_sum_payments** | **Float** | | [optional] |
|
|
20
|
+
| **tot_payments** | **Integer** | | [optional] |
|
|
21
|
+
| **sum_payments** | **Float** | | [optional] |
|
|
22
|
+
|
|
23
|
+
## Example
|
|
24
|
+
|
|
25
|
+
```ruby
|
|
26
|
+
require 'fdr_organization'
|
|
27
|
+
|
|
28
|
+
instance = FdrOrgs::GetCreatedResponse.new(
|
|
29
|
+
status: null,
|
|
30
|
+
revision: 4,
|
|
31
|
+
created: 2022-03-10T04:15:50Z,
|
|
32
|
+
updated: 2022-03-10T04:15:50Z,
|
|
33
|
+
fdr: 2016-08-16pspTest-1178,
|
|
34
|
+
fdr_date: 2022-03-10T04:15:50Z,
|
|
35
|
+
regulation: SEPA - Bonifico xzy,
|
|
36
|
+
regulation_date: 2022-03-10T04:15:50Z,
|
|
37
|
+
bic_code_pouring_bank: UNCRITMMXXX,
|
|
38
|
+
sender: null,
|
|
39
|
+
receiver: null,
|
|
40
|
+
computed_tot_payments: 100,
|
|
41
|
+
computed_sum_payments: 100.9,
|
|
42
|
+
tot_payments: 100,
|
|
43
|
+
sum_payments: 100.9
|
|
44
|
+
)
|
|
45
|
+
```
|
|
46
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# FdrOrgs::GetPaymentResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **metadata** | [**Metadata**](Metadata.md) | | [optional] |
|
|
8
|
+
| **count** | **Integer** | | [optional] |
|
|
9
|
+
| **data** | [**Array<Payment>**](Payment.md) | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'fdr_organization'
|
|
15
|
+
|
|
16
|
+
instance = FdrOrgs::GetPaymentResponse.new(
|
|
17
|
+
metadata: null,
|
|
18
|
+
count: 100,
|
|
19
|
+
data: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
data/docs/GetResponse.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# FdrOrgs::GetResponse
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **status** | [**ReportingFlowStatusEnum**](ReportingFlowStatusEnum.md) | | [optional] |
|
|
8
|
+
| **revision** | **Integer** | | [optional] |
|
|
9
|
+
| **created** | **Time** | | [optional] |
|
|
10
|
+
| **updated** | **Time** | | [optional] |
|
|
11
|
+
| **fdr** | **String** | | [optional] |
|
|
12
|
+
| **fdr_date** | **Time** | | [optional] |
|
|
13
|
+
| **regulation** | **String** | | [optional] |
|
|
14
|
+
| **regulation_date** | **Time** | | [optional] |
|
|
15
|
+
| **bic_code_pouring_bank** | **String** | | [optional] |
|
|
16
|
+
| **sender** | [**Sender**](Sender.md) | | [optional] |
|
|
17
|
+
| **receiver** | [**Receiver**](Receiver.md) | | [optional] |
|
|
18
|
+
| **published** | **Time** | | [optional] |
|
|
19
|
+
| **computed_tot_payments** | **Integer** | | [optional] |
|
|
20
|
+
| **computed_sum_payments** | **Float** | | [optional] |
|
|
21
|
+
| **tot_payments** | **Integer** | | [optional] |
|
|
22
|
+
| **sum_payments** | **Float** | | [optional] |
|
|
23
|
+
|
|
24
|
+
## Example
|
|
25
|
+
|
|
26
|
+
```ruby
|
|
27
|
+
require 'fdr_organization'
|
|
28
|
+
|
|
29
|
+
instance = FdrOrgs::GetResponse.new(
|
|
30
|
+
status: null,
|
|
31
|
+
revision: 4,
|
|
32
|
+
created: 2022-03-10T04:15:50Z,
|
|
33
|
+
updated: 2022-03-10T04:15:50Z,
|
|
34
|
+
fdr: 2016-08-16pspTest-1178,
|
|
35
|
+
fdr_date: 2022-03-10T04:15:50Z,
|
|
36
|
+
regulation: SEPA - Bonifico xzy,
|
|
37
|
+
regulation_date: 2022-03-10T04:15:50Z,
|
|
38
|
+
bic_code_pouring_bank: UNCRITMMXXX,
|
|
39
|
+
sender: null,
|
|
40
|
+
receiver: null,
|
|
41
|
+
published: 2022-03-10T04:15:50Z,
|
|
42
|
+
computed_tot_payments: 100,
|
|
43
|
+
computed_sum_payments: 100.9,
|
|
44
|
+
tot_payments: 100,
|
|
45
|
+
sum_payments: 100.9
|
|
46
|
+
)
|
|
47
|
+
```
|
|
48
|
+
|