wallee-ruby-sdk 2.2.5 → 3.0.0
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 +4 -4
- data/lib/wallee-ruby-sdk.rb +22 -2
- data/lib/wallee-ruby-sdk/api/bank_account_service_api.rb +213 -0
- data/lib/wallee-ruby-sdk/api/bank_transaction_service_api.rb +213 -0
- data/lib/wallee-ruby-sdk/api/currency_bank_account_service_api.rb +213 -0
- data/lib/wallee-ruby-sdk/api/payment_terminal_till_service_api.rb +71 -0
- data/lib/wallee-ruby-sdk/api/shopify_subscriber_service_api.rb +62 -0
- data/lib/wallee-ruby-sdk/api/transaction_terminal_service_api.rb +21 -32
- data/lib/wallee-ruby-sdk/api/web_app_service_api.rb +200 -0
- data/lib/wallee-ruby-sdk/models/authenticated_card_data.rb +221 -0
- data/lib/wallee-ruby-sdk/models/{unencrypted_card_data.rb → authenticated_card_data_create.rb} +86 -12
- data/lib/wallee-ruby-sdk/models/card_authentication_response.rb +38 -0
- data/lib/wallee-ruby-sdk/models/card_authentication_version.rb +35 -0
- data/lib/wallee-ruby-sdk/models/card_cryptogram.rb +201 -0
- data/lib/wallee-ruby-sdk/models/card_cryptogram_create.rb +211 -0
- data/lib/wallee-ruby-sdk/models/card_cryptogram_type.rb +34 -0
- data/lib/wallee-ruby-sdk/models/cardholder_authentication.rb +231 -0
- data/lib/wallee-ruby-sdk/models/cardholder_authentication_create.rb +241 -0
- data/lib/wallee-ruby-sdk/models/charge_bank_transaction.rb +1 -1
- data/lib/wallee-ruby-sdk/models/payment_terminal.rb +11 -1
- data/lib/wallee-ruby-sdk/models/payment_terminal_configuration_version.rb +11 -1
- data/lib/wallee-ruby-sdk/models/payment_terminal_receipt_type.rb +215 -0
- data/lib/wallee-ruby-sdk/models/permission.rb +14 -4
- data/lib/wallee-ruby-sdk/models/recurring_indicator.rb +37 -0
- data/lib/wallee-ruby-sdk/models/refund_bank_transaction.rb +1 -1
- data/lib/wallee-ruby-sdk/models/refund_recovery_bank_transaction.rb +1 -1
- data/lib/wallee-ruby-sdk/models/rendered_terminal_receipt.rb +26 -6
- data/lib/wallee-ruby-sdk/models/shopify_subscriber_active.rb +241 -0
- data/lib/wallee-ruby-sdk/models/shopify_subscription.rb +11 -1
- data/lib/wallee-ruby-sdk/models/shopify_subscription_creation_request.rb +11 -1
- data/lib/wallee-ruby-sdk/models/subscription_product_component.rb +1 -1
- data/lib/wallee-ruby-sdk/models/subscription_product_component_update.rb +1 -1
- data/lib/wallee-ruby-sdk/models/tax_calculation.rb +2 -2
- data/lib/wallee-ruby-sdk/models/terminal_receipt_fetch_request.rb +221 -0
- data/lib/wallee-ruby-sdk/models/terminal_receipt_format.rb +35 -0
- data/lib/wallee-ruby-sdk/models/tokenized_card_data.rb +211 -0
- data/lib/wallee-ruby-sdk/models/{unencrypted_card_data_create.rb → tokenized_card_data_create.rb} +60 -5
- data/lib/wallee-ruby-sdk/models/web_app_confirmation_request.rb +206 -0
- data/lib/wallee-ruby-sdk/models/web_app_confirmation_response.rb +231 -0
- data/lib/wallee-ruby-sdk/models/webhook_url.rb +11 -1
- data/lib/wallee-ruby-sdk/version.rb +1 -1
- metadata +24 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e13c91c60b9958588e970f8a4960edcca4905135370a6222816363c763d77f6
|
4
|
+
data.tar.gz: c08cc0cd0547c258b30a19fab445ca342ef2a252c32b63405bedca4bf0935b61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7ec3a6f9cfdd5f53dc267af4e3e17c993afb2821fddbc738a6a27c29ab63c689808db3c11dc04ae7045bffb23f83284a4681129afffdfc809690a99e997eb8d
|
7
|
+
data.tar.gz: b2087aa30b8d3874e9d073244781e29b0f62861251211b829c24ff3b3f9c4d16cd485cb87744b87a44a2514eea9a59d7fb9d83da95d6a43fd4c36bce9b82f016
|
data/lib/wallee-ruby-sdk.rb
CHANGED
@@ -48,6 +48,7 @@ require 'wallee-ruby-sdk/models/account_state'
|
|
48
48
|
require 'wallee-ruby-sdk/models/account_type'
|
49
49
|
require 'wallee-ruby-sdk/models/address'
|
50
50
|
require 'wallee-ruby-sdk/models/address_create'
|
51
|
+
require 'wallee-ruby-sdk/models/authenticated_card_data_create'
|
51
52
|
require 'wallee-ruby-sdk/models/bank_account'
|
52
53
|
require 'wallee-ruby-sdk/models/bank_account_environment'
|
53
54
|
require 'wallee-ruby-sdk/models/bank_account_state'
|
@@ -57,6 +58,13 @@ require 'wallee-ruby-sdk/models/bank_transaction_flow_direction'
|
|
57
58
|
require 'wallee-ruby-sdk/models/bank_transaction_source'
|
58
59
|
require 'wallee-ruby-sdk/models/bank_transaction_state'
|
59
60
|
require 'wallee-ruby-sdk/models/bank_transaction_type'
|
61
|
+
require 'wallee-ruby-sdk/models/card_authentication_response'
|
62
|
+
require 'wallee-ruby-sdk/models/card_authentication_version'
|
63
|
+
require 'wallee-ruby-sdk/models/card_cryptogram'
|
64
|
+
require 'wallee-ruby-sdk/models/card_cryptogram_create'
|
65
|
+
require 'wallee-ruby-sdk/models/card_cryptogram_type'
|
66
|
+
require 'wallee-ruby-sdk/models/cardholder_authentication'
|
67
|
+
require 'wallee-ruby-sdk/models/cardholder_authentication_create'
|
60
68
|
require 'wallee-ruby-sdk/models/charge_attempt_environment'
|
61
69
|
require 'wallee-ruby-sdk/models/charge_attempt_state'
|
62
70
|
require 'wallee-ruby-sdk/models/charge_flow'
|
@@ -176,6 +184,7 @@ require 'wallee-ruby-sdk/models/payment_terminal_location'
|
|
176
184
|
require 'wallee-ruby-sdk/models/payment_terminal_location_state'
|
177
185
|
require 'wallee-ruby-sdk/models/payment_terminal_location_version'
|
178
186
|
require 'wallee-ruby-sdk/models/payment_terminal_location_version_state'
|
187
|
+
require 'wallee-ruby-sdk/models/payment_terminal_receipt_type'
|
179
188
|
require 'wallee-ruby-sdk/models/payment_terminal_state'
|
180
189
|
require 'wallee-ruby-sdk/models/payment_terminal_type'
|
181
190
|
require 'wallee-ruby-sdk/models/permission'
|
@@ -191,6 +200,7 @@ require 'wallee-ruby-sdk/models/product_period_fee'
|
|
191
200
|
require 'wallee-ruby-sdk/models/product_period_fee_update'
|
192
201
|
require 'wallee-ruby-sdk/models/product_setup_fee'
|
193
202
|
require 'wallee-ruby-sdk/models/product_setup_fee_update'
|
203
|
+
require 'wallee-ruby-sdk/models/recurring_indicator'
|
194
204
|
require 'wallee-ruby-sdk/models/refund'
|
195
205
|
require 'wallee-ruby-sdk/models/refund_comment'
|
196
206
|
require 'wallee-ruby-sdk/models/refund_create'
|
@@ -217,6 +227,7 @@ require 'wallee-ruby-sdk/models/shopify_integration_subscription_app_version'
|
|
217
227
|
require 'wallee-ruby-sdk/models/shopify_recurring_order_state'
|
218
228
|
require 'wallee-ruby-sdk/models/shopify_recurring_order_update_request'
|
219
229
|
require 'wallee-ruby-sdk/models/shopify_subscriber'
|
230
|
+
require 'wallee-ruby-sdk/models/shopify_subscriber_active'
|
220
231
|
require 'wallee-ruby-sdk/models/shopify_subscriber_creation'
|
221
232
|
require 'wallee-ruby-sdk/models/shopify_subscriber_state'
|
222
233
|
require 'wallee-ruby-sdk/models/shopify_subscription'
|
@@ -305,11 +316,15 @@ require 'wallee-ruby-sdk/models/tax_calculation'
|
|
305
316
|
require 'wallee-ruby-sdk/models/tax_class'
|
306
317
|
require 'wallee-ruby-sdk/models/tax_create'
|
307
318
|
require 'wallee-ruby-sdk/models/tenant_database'
|
319
|
+
require 'wallee-ruby-sdk/models/terminal_receipt_fetch_request'
|
320
|
+
require 'wallee-ruby-sdk/models/terminal_receipt_format'
|
308
321
|
require 'wallee-ruby-sdk/models/token'
|
309
322
|
require 'wallee-ruby-sdk/models/token_version'
|
310
323
|
require 'wallee-ruby-sdk/models/token_version_state'
|
311
324
|
require 'wallee-ruby-sdk/models/token_version_type'
|
312
325
|
require 'wallee-ruby-sdk/models/tokenization_mode'
|
326
|
+
require 'wallee-ruby-sdk/models/tokenized_card_data'
|
327
|
+
require 'wallee-ruby-sdk/models/tokenized_card_data_create'
|
313
328
|
require 'wallee-ruby-sdk/models/transaction'
|
314
329
|
require 'wallee-ruby-sdk/models/transaction_aware_entity'
|
315
330
|
require 'wallee-ruby-sdk/models/transaction_comment'
|
@@ -329,12 +344,12 @@ require 'wallee-ruby-sdk/models/transaction_user_interface_type'
|
|
329
344
|
require 'wallee-ruby-sdk/models/transaction_void_mode'
|
330
345
|
require 'wallee-ruby-sdk/models/transaction_void_state'
|
331
346
|
require 'wallee-ruby-sdk/models/two_factor_authentication_type'
|
332
|
-
require 'wallee-ruby-sdk/models/unencrypted_card_data'
|
333
|
-
require 'wallee-ruby-sdk/models/unencrypted_card_data_create'
|
334
347
|
require 'wallee-ruby-sdk/models/user'
|
335
348
|
require 'wallee-ruby-sdk/models/user_account_role'
|
336
349
|
require 'wallee-ruby-sdk/models/user_space_role'
|
337
350
|
require 'wallee-ruby-sdk/models/user_type'
|
351
|
+
require 'wallee-ruby-sdk/models/web_app_confirmation_request'
|
352
|
+
require 'wallee-ruby-sdk/models/web_app_confirmation_response'
|
338
353
|
require 'wallee-ruby-sdk/models/webhook_identity'
|
339
354
|
require 'wallee-ruby-sdk/models/webhook_listener'
|
340
355
|
require 'wallee-ruby-sdk/models/webhook_listener_entity'
|
@@ -344,6 +359,7 @@ require 'wallee-ruby-sdk/models/account_update'
|
|
344
359
|
require 'wallee-ruby-sdk/models/application_user'
|
345
360
|
require 'wallee-ruby-sdk/models/application_user_create'
|
346
361
|
require 'wallee-ruby-sdk/models/application_user_update'
|
362
|
+
require 'wallee-ruby-sdk/models/authenticated_card_data'
|
347
363
|
require 'wallee-ruby-sdk/models/charge'
|
348
364
|
require 'wallee-ruby-sdk/models/charge_attempt'
|
349
365
|
require 'wallee-ruby-sdk/models/charge_bank_transaction'
|
@@ -408,6 +424,8 @@ require 'wallee-ruby-sdk/models/subscription_affiliate_deleting'
|
|
408
424
|
# APIs
|
409
425
|
require 'wallee-ruby-sdk/api/account_service_api'
|
410
426
|
require 'wallee-ruby-sdk/api/application_user_service_api'
|
427
|
+
require 'wallee-ruby-sdk/api/bank_account_service_api'
|
428
|
+
require 'wallee-ruby-sdk/api/bank_transaction_service_api'
|
411
429
|
require 'wallee-ruby-sdk/api/card_processing_service_api'
|
412
430
|
require 'wallee-ruby-sdk/api/charge_attempt_service_api'
|
413
431
|
require 'wallee-ruby-sdk/api/charge_bank_transaction_service_api'
|
@@ -417,6 +435,7 @@ require 'wallee-ruby-sdk/api/charge_flow_service_api'
|
|
417
435
|
require 'wallee-ruby-sdk/api/condition_type_service_api'
|
418
436
|
require 'wallee-ruby-sdk/api/country_service_api'
|
419
437
|
require 'wallee-ruby-sdk/api/country_state_service_api'
|
438
|
+
require 'wallee-ruby-sdk/api/currency_bank_account_service_api'
|
420
439
|
require 'wallee-ruby-sdk/api/currency_service_api'
|
421
440
|
require 'wallee-ruby-sdk/api/customer_address_service_api'
|
422
441
|
require 'wallee-ruby-sdk/api/customer_comment_service_api'
|
@@ -500,6 +519,7 @@ require 'wallee-ruby-sdk/api/transaction_terminal_service_api'
|
|
500
519
|
require 'wallee-ruby-sdk/api/transaction_void_service_api'
|
501
520
|
require 'wallee-ruby-sdk/api/user_account_role_service_api'
|
502
521
|
require 'wallee-ruby-sdk/api/user_space_role_service_api'
|
522
|
+
require 'wallee-ruby-sdk/api/web_app_service_api'
|
503
523
|
require 'wallee-ruby-sdk/api/webhook_listener_service_api'
|
504
524
|
require 'wallee-ruby-sdk/api/webhook_url_service_api'
|
505
525
|
|
@@ -0,0 +1,213 @@
|
|
1
|
+
=begin
|
2
|
+
The wallee API allows an easy interaction with the wallee web service.
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
15
|
+
|
16
|
+
=end
|
17
|
+
|
18
|
+
require "uri"
|
19
|
+
|
20
|
+
module Wallee
|
21
|
+
class BankAccountService
|
22
|
+
attr_accessor :api_client
|
23
|
+
|
24
|
+
def initialize(api_client = ApiClient.default)
|
25
|
+
@api_client = api_client
|
26
|
+
end
|
27
|
+
|
28
|
+
# Count
|
29
|
+
# Counts the number of items in the database as restricted by the given filter.
|
30
|
+
# @param space_id
|
31
|
+
# @param [Hash] opts the optional parameters
|
32
|
+
# @option opts [EntityQueryFilter] :filter The filter which restricts the entities which are used to calculate the count.
|
33
|
+
# @return [Integer]
|
34
|
+
def count(space_id, opts = {})
|
35
|
+
data, _status_code, _headers = count_with_http_info(space_id, opts)
|
36
|
+
return data
|
37
|
+
end
|
38
|
+
|
39
|
+
# Count
|
40
|
+
# Counts the number of items in the database as restricted by the given filter.
|
41
|
+
# @param space_id
|
42
|
+
# @param [Hash] opts the optional parameters
|
43
|
+
# @option opts [EntityQueryFilter] :filter The filter which restricts the entities which are used to calculate the count.
|
44
|
+
# @return [Array<(Integer, Fixnum, Hash)>] Integer data, response status code and response headers
|
45
|
+
def count_with_http_info(space_id, opts = {})
|
46
|
+
if @api_client.config.debugging
|
47
|
+
@api_client.config.logger.debug "Calling API: BankAccountService.count ..."
|
48
|
+
end
|
49
|
+
# verify the required parameter 'space_id' is set
|
50
|
+
fail ArgumentError, "Missing the required parameter 'space_id' when calling BankAccountService.count" if space_id.nil?
|
51
|
+
# resource path
|
52
|
+
local_var_path = "/bank-account/count".sub('{format}','json')
|
53
|
+
|
54
|
+
# query parameters
|
55
|
+
query_params = {}
|
56
|
+
query_params[:'spaceId'] = space_id
|
57
|
+
|
58
|
+
# header parameters
|
59
|
+
header_params = {}
|
60
|
+
|
61
|
+
# HTTP header 'Accept' (if needed)
|
62
|
+
local_header_accept = ['application/json;charset=utf-8']
|
63
|
+
local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result
|
64
|
+
|
65
|
+
# HTTP header 'Content-Type'
|
66
|
+
local_header_content_type = ['application/json;charset=utf-8']
|
67
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)
|
68
|
+
|
69
|
+
# form parameters
|
70
|
+
form_params = {}
|
71
|
+
|
72
|
+
# http body (model)
|
73
|
+
post_body = @api_client.object_to_http_body(opts[:'filter'])
|
74
|
+
auth_names = []
|
75
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
76
|
+
:header_params => header_params,
|
77
|
+
:query_params => query_params,
|
78
|
+
:form_params => form_params,
|
79
|
+
:body => post_body,
|
80
|
+
:auth_names => auth_names,
|
81
|
+
:return_type => 'Integer')
|
82
|
+
if @api_client.config.debugging
|
83
|
+
@api_client.config.logger.debug "API called: BankAccountService#count\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
84
|
+
end
|
85
|
+
return data, status_code, headers
|
86
|
+
end
|
87
|
+
|
88
|
+
# Read
|
89
|
+
# Reads the entity with the given 'id' and returns it.
|
90
|
+
# @param space_id
|
91
|
+
# @param id The ID of the bank account which should be returned.
|
92
|
+
# @param [Hash] opts the optional parameters
|
93
|
+
# @return [BankAccount]
|
94
|
+
def read(space_id, id, opts = {})
|
95
|
+
data, _status_code, _headers = read_with_http_info(space_id, id, opts)
|
96
|
+
return data
|
97
|
+
end
|
98
|
+
|
99
|
+
# Read
|
100
|
+
# Reads the entity with the given 'id' and returns it.
|
101
|
+
# @param space_id
|
102
|
+
# @param id The ID of the bank account which should be returned.
|
103
|
+
# @param [Hash] opts the optional parameters
|
104
|
+
# @return [Array<(BankAccount, Fixnum, Hash)>] BankAccount data, response status code and response headers
|
105
|
+
def read_with_http_info(space_id, id, opts = {})
|
106
|
+
if @api_client.config.debugging
|
107
|
+
@api_client.config.logger.debug "Calling API: BankAccountService.read ..."
|
108
|
+
end
|
109
|
+
# verify the required parameter 'space_id' is set
|
110
|
+
fail ArgumentError, "Missing the required parameter 'space_id' when calling BankAccountService.read" if space_id.nil?
|
111
|
+
# verify the required parameter 'id' is set
|
112
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling BankAccountService.read" if id.nil?
|
113
|
+
# resource path
|
114
|
+
local_var_path = "/bank-account/read".sub('{format}','json')
|
115
|
+
|
116
|
+
# query parameters
|
117
|
+
query_params = {}
|
118
|
+
query_params[:'spaceId'] = space_id
|
119
|
+
query_params[:'id'] = id
|
120
|
+
|
121
|
+
# header parameters
|
122
|
+
header_params = {}
|
123
|
+
|
124
|
+
# HTTP header 'Accept' (if needed)
|
125
|
+
local_header_accept = ['application/json;charset=utf-8']
|
126
|
+
local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result
|
127
|
+
|
128
|
+
# HTTP header 'Content-Type'
|
129
|
+
local_header_content_type = ['*/*']
|
130
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)
|
131
|
+
|
132
|
+
# form parameters
|
133
|
+
form_params = {}
|
134
|
+
|
135
|
+
# http body (model)
|
136
|
+
post_body = nil
|
137
|
+
auth_names = []
|
138
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
139
|
+
:header_params => header_params,
|
140
|
+
:query_params => query_params,
|
141
|
+
:form_params => form_params,
|
142
|
+
:body => post_body,
|
143
|
+
:auth_names => auth_names,
|
144
|
+
:return_type => 'BankAccount')
|
145
|
+
if @api_client.config.debugging
|
146
|
+
@api_client.config.logger.debug "API called: BankAccountService#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
147
|
+
end
|
148
|
+
return data, status_code, headers
|
149
|
+
end
|
150
|
+
|
151
|
+
# Search
|
152
|
+
# Searches for the entities as specified by the given query.
|
153
|
+
# @param space_id
|
154
|
+
# @param query The query restricts the bank accounts which are returned by the search.
|
155
|
+
# @param [Hash] opts the optional parameters
|
156
|
+
# @return [Array<BankAccount>]
|
157
|
+
def search(space_id, query, opts = {})
|
158
|
+
data, _status_code, _headers = search_with_http_info(space_id, query, opts)
|
159
|
+
return data
|
160
|
+
end
|
161
|
+
|
162
|
+
# Search
|
163
|
+
# Searches for the entities as specified by the given query.
|
164
|
+
# @param space_id
|
165
|
+
# @param query The query restricts the bank accounts which are returned by the search.
|
166
|
+
# @param [Hash] opts the optional parameters
|
167
|
+
# @return [Array<(Array<BankAccount>, Fixnum, Hash)>] Array<BankAccount> data, response status code and response headers
|
168
|
+
def search_with_http_info(space_id, query, opts = {})
|
169
|
+
if @api_client.config.debugging
|
170
|
+
@api_client.config.logger.debug "Calling API: BankAccountService.search ..."
|
171
|
+
end
|
172
|
+
# verify the required parameter 'space_id' is set
|
173
|
+
fail ArgumentError, "Missing the required parameter 'space_id' when calling BankAccountService.search" if space_id.nil?
|
174
|
+
# verify the required parameter 'query' is set
|
175
|
+
fail ArgumentError, "Missing the required parameter 'query' when calling BankAccountService.search" if query.nil?
|
176
|
+
# resource path
|
177
|
+
local_var_path = "/bank-account/search".sub('{format}','json')
|
178
|
+
|
179
|
+
# query parameters
|
180
|
+
query_params = {}
|
181
|
+
query_params[:'spaceId'] = space_id
|
182
|
+
|
183
|
+
# header parameters
|
184
|
+
header_params = {}
|
185
|
+
|
186
|
+
# HTTP header 'Accept' (if needed)
|
187
|
+
local_header_accept = ['application/json;charset=utf-8']
|
188
|
+
local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result
|
189
|
+
|
190
|
+
# HTTP header 'Content-Type'
|
191
|
+
local_header_content_type = ['application/json;charset=utf-8']
|
192
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)
|
193
|
+
|
194
|
+
# form parameters
|
195
|
+
form_params = {}
|
196
|
+
|
197
|
+
# http body (model)
|
198
|
+
post_body = @api_client.object_to_http_body(query)
|
199
|
+
auth_names = []
|
200
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
201
|
+
:header_params => header_params,
|
202
|
+
:query_params => query_params,
|
203
|
+
:form_params => form_params,
|
204
|
+
:body => post_body,
|
205
|
+
:auth_names => auth_names,
|
206
|
+
:return_type => 'Array<BankAccount>')
|
207
|
+
if @api_client.config.debugging
|
208
|
+
@api_client.config.logger.debug "API called: BankAccountService#search\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
209
|
+
end
|
210
|
+
return data, status_code, headers
|
211
|
+
end
|
212
|
+
end
|
213
|
+
end
|
@@ -0,0 +1,213 @@
|
|
1
|
+
=begin
|
2
|
+
The wallee API allows an easy interaction with the wallee web service.
|
3
|
+
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
you may not use this file except in compliance with the License.
|
6
|
+
You may obtain a copy of the License at
|
7
|
+
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
See the License for the specific language governing permissions and
|
14
|
+
limitations under the License.
|
15
|
+
|
16
|
+
=end
|
17
|
+
|
18
|
+
require "uri"
|
19
|
+
|
20
|
+
module Wallee
|
21
|
+
class BankTransactionService
|
22
|
+
attr_accessor :api_client
|
23
|
+
|
24
|
+
def initialize(api_client = ApiClient.default)
|
25
|
+
@api_client = api_client
|
26
|
+
end
|
27
|
+
|
28
|
+
# Count
|
29
|
+
# Counts the number of items in the database as restricted by the given filter.
|
30
|
+
# @param space_id
|
31
|
+
# @param [Hash] opts the optional parameters
|
32
|
+
# @option opts [EntityQueryFilter] :filter The filter which restricts the entities which are used to calculate the count.
|
33
|
+
# @return [Integer]
|
34
|
+
def count(space_id, opts = {})
|
35
|
+
data, _status_code, _headers = count_with_http_info(space_id, opts)
|
36
|
+
return data
|
37
|
+
end
|
38
|
+
|
39
|
+
# Count
|
40
|
+
# Counts the number of items in the database as restricted by the given filter.
|
41
|
+
# @param space_id
|
42
|
+
# @param [Hash] opts the optional parameters
|
43
|
+
# @option opts [EntityQueryFilter] :filter The filter which restricts the entities which are used to calculate the count.
|
44
|
+
# @return [Array<(Integer, Fixnum, Hash)>] Integer data, response status code and response headers
|
45
|
+
def count_with_http_info(space_id, opts = {})
|
46
|
+
if @api_client.config.debugging
|
47
|
+
@api_client.config.logger.debug "Calling API: BankTransactionService.count ..."
|
48
|
+
end
|
49
|
+
# verify the required parameter 'space_id' is set
|
50
|
+
fail ArgumentError, "Missing the required parameter 'space_id' when calling BankTransactionService.count" if space_id.nil?
|
51
|
+
# resource path
|
52
|
+
local_var_path = "/bank-transaction/count".sub('{format}','json')
|
53
|
+
|
54
|
+
# query parameters
|
55
|
+
query_params = {}
|
56
|
+
query_params[:'spaceId'] = space_id
|
57
|
+
|
58
|
+
# header parameters
|
59
|
+
header_params = {}
|
60
|
+
|
61
|
+
# HTTP header 'Accept' (if needed)
|
62
|
+
local_header_accept = ['application/json;charset=utf-8']
|
63
|
+
local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result
|
64
|
+
|
65
|
+
# HTTP header 'Content-Type'
|
66
|
+
local_header_content_type = ['application/json;charset=utf-8']
|
67
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)
|
68
|
+
|
69
|
+
# form parameters
|
70
|
+
form_params = {}
|
71
|
+
|
72
|
+
# http body (model)
|
73
|
+
post_body = @api_client.object_to_http_body(opts[:'filter'])
|
74
|
+
auth_names = []
|
75
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
76
|
+
:header_params => header_params,
|
77
|
+
:query_params => query_params,
|
78
|
+
:form_params => form_params,
|
79
|
+
:body => post_body,
|
80
|
+
:auth_names => auth_names,
|
81
|
+
:return_type => 'Integer')
|
82
|
+
if @api_client.config.debugging
|
83
|
+
@api_client.config.logger.debug "API called: BankTransactionService#count\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
84
|
+
end
|
85
|
+
return data, status_code, headers
|
86
|
+
end
|
87
|
+
|
88
|
+
# Read
|
89
|
+
# Reads the entity with the given 'id' and returns it.
|
90
|
+
# @param space_id
|
91
|
+
# @param id The ID of the bank transaction which should be returned.
|
92
|
+
# @param [Hash] opts the optional parameters
|
93
|
+
# @return [BankTransaction]
|
94
|
+
def read(space_id, id, opts = {})
|
95
|
+
data, _status_code, _headers = read_with_http_info(space_id, id, opts)
|
96
|
+
return data
|
97
|
+
end
|
98
|
+
|
99
|
+
# Read
|
100
|
+
# Reads the entity with the given 'id' and returns it.
|
101
|
+
# @param space_id
|
102
|
+
# @param id The ID of the bank transaction which should be returned.
|
103
|
+
# @param [Hash] opts the optional parameters
|
104
|
+
# @return [Array<(BankTransaction, Fixnum, Hash)>] BankTransaction data, response status code and response headers
|
105
|
+
def read_with_http_info(space_id, id, opts = {})
|
106
|
+
if @api_client.config.debugging
|
107
|
+
@api_client.config.logger.debug "Calling API: BankTransactionService.read ..."
|
108
|
+
end
|
109
|
+
# verify the required parameter 'space_id' is set
|
110
|
+
fail ArgumentError, "Missing the required parameter 'space_id' when calling BankTransactionService.read" if space_id.nil?
|
111
|
+
# verify the required parameter 'id' is set
|
112
|
+
fail ArgumentError, "Missing the required parameter 'id' when calling BankTransactionService.read" if id.nil?
|
113
|
+
# resource path
|
114
|
+
local_var_path = "/bank-transaction/read".sub('{format}','json')
|
115
|
+
|
116
|
+
# query parameters
|
117
|
+
query_params = {}
|
118
|
+
query_params[:'spaceId'] = space_id
|
119
|
+
query_params[:'id'] = id
|
120
|
+
|
121
|
+
# header parameters
|
122
|
+
header_params = {}
|
123
|
+
|
124
|
+
# HTTP header 'Accept' (if needed)
|
125
|
+
local_header_accept = ['application/json;charset=utf-8']
|
126
|
+
local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result
|
127
|
+
|
128
|
+
# HTTP header 'Content-Type'
|
129
|
+
local_header_content_type = ['*/*']
|
130
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)
|
131
|
+
|
132
|
+
# form parameters
|
133
|
+
form_params = {}
|
134
|
+
|
135
|
+
# http body (model)
|
136
|
+
post_body = nil
|
137
|
+
auth_names = []
|
138
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path,
|
139
|
+
:header_params => header_params,
|
140
|
+
:query_params => query_params,
|
141
|
+
:form_params => form_params,
|
142
|
+
:body => post_body,
|
143
|
+
:auth_names => auth_names,
|
144
|
+
:return_type => 'BankTransaction')
|
145
|
+
if @api_client.config.debugging
|
146
|
+
@api_client.config.logger.debug "API called: BankTransactionService#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
147
|
+
end
|
148
|
+
return data, status_code, headers
|
149
|
+
end
|
150
|
+
|
151
|
+
# Search
|
152
|
+
# Searches for the entities as specified by the given query.
|
153
|
+
# @param space_id
|
154
|
+
# @param query The query restricts the bank transactions which are returned by the search.
|
155
|
+
# @param [Hash] opts the optional parameters
|
156
|
+
# @return [Array<BankTransaction>]
|
157
|
+
def search(space_id, query, opts = {})
|
158
|
+
data, _status_code, _headers = search_with_http_info(space_id, query, opts)
|
159
|
+
return data
|
160
|
+
end
|
161
|
+
|
162
|
+
# Search
|
163
|
+
# Searches for the entities as specified by the given query.
|
164
|
+
# @param space_id
|
165
|
+
# @param query The query restricts the bank transactions which are returned by the search.
|
166
|
+
# @param [Hash] opts the optional parameters
|
167
|
+
# @return [Array<(Array<BankTransaction>, Fixnum, Hash)>] Array<BankTransaction> data, response status code and response headers
|
168
|
+
def search_with_http_info(space_id, query, opts = {})
|
169
|
+
if @api_client.config.debugging
|
170
|
+
@api_client.config.logger.debug "Calling API: BankTransactionService.search ..."
|
171
|
+
end
|
172
|
+
# verify the required parameter 'space_id' is set
|
173
|
+
fail ArgumentError, "Missing the required parameter 'space_id' when calling BankTransactionService.search" if space_id.nil?
|
174
|
+
# verify the required parameter 'query' is set
|
175
|
+
fail ArgumentError, "Missing the required parameter 'query' when calling BankTransactionService.search" if query.nil?
|
176
|
+
# resource path
|
177
|
+
local_var_path = "/bank-transaction/search".sub('{format}','json')
|
178
|
+
|
179
|
+
# query parameters
|
180
|
+
query_params = {}
|
181
|
+
query_params[:'spaceId'] = space_id
|
182
|
+
|
183
|
+
# header parameters
|
184
|
+
header_params = {}
|
185
|
+
|
186
|
+
# HTTP header 'Accept' (if needed)
|
187
|
+
local_header_accept = ['application/json;charset=utf-8']
|
188
|
+
local_header_accept_result = @api_client.select_header_accept(local_header_accept) and header_params['Accept'] = local_header_accept_result
|
189
|
+
|
190
|
+
# HTTP header 'Content-Type'
|
191
|
+
local_header_content_type = ['application/json;charset=utf-8']
|
192
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(local_header_content_type)
|
193
|
+
|
194
|
+
# form parameters
|
195
|
+
form_params = {}
|
196
|
+
|
197
|
+
# http body (model)
|
198
|
+
post_body = @api_client.object_to_http_body(query)
|
199
|
+
auth_names = []
|
200
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
201
|
+
:header_params => header_params,
|
202
|
+
:query_params => query_params,
|
203
|
+
:form_params => form_params,
|
204
|
+
:body => post_body,
|
205
|
+
:auth_names => auth_names,
|
206
|
+
:return_type => 'Array<BankTransaction>')
|
207
|
+
if @api_client.config.debugging
|
208
|
+
@api_client.config.logger.debug "API called: BankTransactionService#search\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
209
|
+
end
|
210
|
+
return data, status_code, headers
|
211
|
+
end
|
212
|
+
end
|
213
|
+
end
|