wallee-ruby-sdk 2.2.4 → 2.2.5
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/LICENSE +1 -1
- data/lib/wallee-ruby-sdk.rb +23 -1
- data/lib/wallee-ruby-sdk/api/charge_bank_transaction_service_api.rb +213 -0
- data/lib/wallee-ruby-sdk/api/external_transfer_bank_transaction_service_api.rb +213 -0
- data/lib/wallee-ruby-sdk/api/internal_transfer_bank_transaction_service_api.rb +213 -0
- data/lib/wallee-ruby-sdk/api/refund_bank_transaction_service_api.rb +213 -0
- data/lib/wallee-ruby-sdk/api/refund_recovery_bank_transaction_service_api.rb +213 -0
- data/lib/wallee-ruby-sdk/api_client.rb +2 -1
- data/lib/wallee-ruby-sdk/models/abstract_payment_link_update.rb +15 -15
- data/lib/wallee-ruby-sdk/models/bank_account.rb +291 -0
- data/lib/wallee-ruby-sdk/models/bank_account_environment.rb +35 -0
- data/lib/wallee-ruby-sdk/models/bank_account_state.rb +37 -0
- data/lib/wallee-ruby-sdk/models/bank_account_type.rb +227 -0
- data/lib/wallee-ruby-sdk/models/bank_transaction.rb +387 -0
- data/lib/wallee-ruby-sdk/models/bank_transaction_flow_direction.rb +35 -0
- data/lib/wallee-ruby-sdk/models/bank_transaction_source.rb +215 -0
- data/lib/wallee-ruby-sdk/models/bank_transaction_state.rb +35 -0
- data/lib/wallee-ruby-sdk/models/bank_transaction_type.rb +215 -0
- data/lib/wallee-ruby-sdk/models/charge_bank_transaction.rb +291 -0
- data/lib/wallee-ruby-sdk/models/currency_bank_account.rb +241 -0
- data/lib/wallee-ruby-sdk/models/external_transfer_bank_transaction.rb +251 -0
- data/lib/wallee-ruby-sdk/models/internal_transfer_bank_transaction.rb +231 -0
- data/lib/wallee-ruby-sdk/models/payment_adjustment.rb +231 -0
- data/lib/wallee-ruby-sdk/models/payment_adjustment_type.rb +215 -0
- data/lib/wallee-ruby-sdk/models/payment_link.rb +15 -15
- data/lib/wallee-ruby-sdk/models/payment_link_active.rb +15 -15
- data/lib/wallee-ruby-sdk/models/payment_link_address_handling_mode.rb +36 -0
- data/lib/wallee-ruby-sdk/models/payment_link_create.rb +15 -15
- data/lib/wallee-ruby-sdk/models/payment_link_update.rb +15 -15
- data/lib/wallee-ruby-sdk/models/payment_terminal_address.rb +0 -60
- data/lib/wallee-ruby-sdk/models/payment_terminal_location.rb +2 -12
- data/lib/wallee-ruby-sdk/models/refund_bank_transaction.rb +281 -0
- data/lib/wallee-ruby-sdk/models/refund_recovery_bank_transaction.rb +293 -0
- data/lib/wallee-ruby-sdk/models/subscription_ledger_entry.rb +11 -1
- data/lib/wallee-ruby-sdk/models/transaction.rb +64 -4
- data/lib/wallee-ruby-sdk/version.rb +1 -1
- data/test/condition_type_service_test.rb +22 -0
- metadata +27 -3
- data/lib/wallee-ruby-sdk/models/payment_terminal_contact_address.rb +0 -396
@@ -35,6 +35,9 @@ module Wallee
|
|
35
35
|
# The created on date indicates the date on which the entity was stored into the database.
|
36
36
|
attr_accessor :created_on
|
37
37
|
|
38
|
+
#
|
39
|
+
attr_accessor :discount_including_tax
|
40
|
+
|
38
41
|
# The external id helps to identify the entity and a subsequent creation of an entity with the same ID will not create a new entity.
|
39
42
|
attr_accessor :external_id
|
40
43
|
|
@@ -76,6 +79,7 @@ module Wallee
|
|
76
79
|
:'amount_including_tax' => :'amountIncludingTax',
|
77
80
|
:'created_by' => :'createdBy',
|
78
81
|
:'created_on' => :'createdOn',
|
82
|
+
:'discount_including_tax' => :'discountIncludingTax',
|
79
83
|
:'external_id' => :'externalId',
|
80
84
|
:'id' => :'id',
|
81
85
|
:'linked_space_id' => :'linkedSpaceId',
|
@@ -98,6 +102,7 @@ module Wallee
|
|
98
102
|
:'amount_including_tax' => :'Float',
|
99
103
|
:'created_by' => :'Integer',
|
100
104
|
:'created_on' => :'DateTime',
|
105
|
+
:'discount_including_tax' => :'Float',
|
101
106
|
:'external_id' => :'String',
|
102
107
|
:'id' => :'Integer',
|
103
108
|
:'linked_space_id' => :'Integer',
|
@@ -140,6 +145,10 @@ module Wallee
|
|
140
145
|
self.created_on = attributes[:'createdOn']
|
141
146
|
end
|
142
147
|
|
148
|
+
if attributes.has_key?(:'discountIncludingTax')
|
149
|
+
self.discount_including_tax = attributes[:'discountIncludingTax']
|
150
|
+
end
|
151
|
+
|
143
152
|
if attributes.has_key?(:'externalId')
|
144
153
|
self.external_id = attributes[:'externalId']
|
145
154
|
end
|
@@ -234,6 +243,7 @@ module Wallee
|
|
234
243
|
amount_including_tax == o.amount_including_tax &&
|
235
244
|
created_by == o.created_by &&
|
236
245
|
created_on == o.created_on &&
|
246
|
+
discount_including_tax == o.discount_including_tax &&
|
237
247
|
external_id == o.external_id &&
|
238
248
|
id == o.id &&
|
239
249
|
linked_space_id == o.linked_space_id &&
|
@@ -256,7 +266,7 @@ module Wallee
|
|
256
266
|
# Calculates hash code according to all attributes.
|
257
267
|
# @return [Fixnum] Hash code
|
258
268
|
def hash
|
259
|
-
[aggregated_tax_rate, amount_excluding_tax, amount_including_tax, created_by, created_on, external_id, id, linked_space_id, planned_purge_date, quantity, state, subscription_version, tax_amount, taxes, title, version].hash
|
269
|
+
[aggregated_tax_rate, amount_excluding_tax, amount_including_tax, created_by, created_on, discount_including_tax, external_id, id, linked_space_id, planned_purge_date, quantity, state, subscription_version, tax_amount, taxes, title, version].hash
|
260
270
|
end
|
261
271
|
|
262
272
|
# Builds the object from hash
|
@@ -134,6 +134,9 @@ module Wallee
|
|
134
134
|
#
|
135
135
|
attr_accessor :invoice_merchant_reference
|
136
136
|
|
137
|
+
#
|
138
|
+
attr_accessor :java_enabled
|
139
|
+
|
137
140
|
#
|
138
141
|
attr_accessor :language
|
139
142
|
|
@@ -164,6 +167,15 @@ module Wallee
|
|
164
167
|
# The refunded amount is the total amount which has been refunded so far.
|
165
168
|
attr_accessor :refunded_amount
|
166
169
|
|
170
|
+
#
|
171
|
+
attr_accessor :screen_color_depth
|
172
|
+
|
173
|
+
#
|
174
|
+
attr_accessor :screen_height
|
175
|
+
|
176
|
+
#
|
177
|
+
attr_accessor :screen_width
|
178
|
+
|
167
179
|
#
|
168
180
|
attr_accessor :shipping_address
|
169
181
|
|
@@ -209,6 +221,12 @@ module Wallee
|
|
209
221
|
# The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
|
210
222
|
attr_accessor :version
|
211
223
|
|
224
|
+
#
|
225
|
+
attr_accessor :window_height
|
226
|
+
|
227
|
+
#
|
228
|
+
attr_accessor :window_width
|
229
|
+
|
212
230
|
# Attribute mapping from ruby-style variable name to JSON key.
|
213
231
|
def self.attribute_map
|
214
232
|
{
|
@@ -250,6 +268,7 @@ module Wallee
|
|
250
268
|
:'internet_protocol_address' => :'internetProtocolAddress',
|
251
269
|
:'internet_protocol_address_country' => :'internetProtocolAddressCountry',
|
252
270
|
:'invoice_merchant_reference' => :'invoiceMerchantReference',
|
271
|
+
:'java_enabled' => :'javaEnabled',
|
253
272
|
:'language' => :'language',
|
254
273
|
:'line_items' => :'lineItems',
|
255
274
|
:'linked_space_id' => :'linkedSpaceId',
|
@@ -260,6 +279,9 @@ module Wallee
|
|
260
279
|
:'planned_purge_date' => :'plannedPurgeDate',
|
261
280
|
:'processing_on' => :'processingOn',
|
262
281
|
:'refunded_amount' => :'refundedAmount',
|
282
|
+
:'screen_color_depth' => :'screenColorDepth',
|
283
|
+
:'screen_height' => :'screenHeight',
|
284
|
+
:'screen_width' => :'screenWidth',
|
263
285
|
:'shipping_address' => :'shippingAddress',
|
264
286
|
:'shipping_method' => :'shippingMethod',
|
265
287
|
:'space_view_id' => :'spaceViewId',
|
@@ -274,7 +296,9 @@ module Wallee
|
|
274
296
|
:'user_agent_header' => :'userAgentHeader',
|
275
297
|
:'user_failure_message' => :'userFailureMessage',
|
276
298
|
:'user_interface_type' => :'userInterfaceType',
|
277
|
-
:'version' => :'version'
|
299
|
+
:'version' => :'version',
|
300
|
+
:'window_height' => :'windowHeight',
|
301
|
+
:'window_width' => :'windowWidth'
|
278
302
|
}
|
279
303
|
end
|
280
304
|
|
@@ -319,6 +343,7 @@ module Wallee
|
|
319
343
|
:'internet_protocol_address' => :'String',
|
320
344
|
:'internet_protocol_address_country' => :'String',
|
321
345
|
:'invoice_merchant_reference' => :'String',
|
346
|
+
:'java_enabled' => :'BOOLEAN',
|
322
347
|
:'language' => :'String',
|
323
348
|
:'line_items' => :'Array<LineItem>',
|
324
349
|
:'linked_space_id' => :'Integer',
|
@@ -329,6 +354,9 @@ module Wallee
|
|
329
354
|
:'planned_purge_date' => :'DateTime',
|
330
355
|
:'processing_on' => :'DateTime',
|
331
356
|
:'refunded_amount' => :'Float',
|
357
|
+
:'screen_color_depth' => :'String',
|
358
|
+
:'screen_height' => :'String',
|
359
|
+
:'screen_width' => :'String',
|
332
360
|
:'shipping_address' => :'Address',
|
333
361
|
:'shipping_method' => :'String',
|
334
362
|
:'space_view_id' => :'Integer',
|
@@ -343,7 +371,9 @@ module Wallee
|
|
343
371
|
:'user_agent_header' => :'String',
|
344
372
|
:'user_failure_message' => :'String',
|
345
373
|
:'user_interface_type' => :'TransactionUserInterfaceType',
|
346
|
-
:'version' => :'Integer'
|
374
|
+
:'version' => :'Integer',
|
375
|
+
:'window_height' => :'String',
|
376
|
+
:'window_width' => :'String'
|
347
377
|
}
|
348
378
|
end
|
349
379
|
|
@@ -511,6 +541,10 @@ module Wallee
|
|
511
541
|
self.invoice_merchant_reference = attributes[:'invoiceMerchantReference']
|
512
542
|
end
|
513
543
|
|
544
|
+
if attributes.has_key?(:'javaEnabled')
|
545
|
+
self.java_enabled = attributes[:'javaEnabled']
|
546
|
+
end
|
547
|
+
|
514
548
|
if attributes.has_key?(:'language')
|
515
549
|
self.language = attributes[:'language']
|
516
550
|
end
|
@@ -555,6 +589,18 @@ module Wallee
|
|
555
589
|
self.refunded_amount = attributes[:'refundedAmount']
|
556
590
|
end
|
557
591
|
|
592
|
+
if attributes.has_key?(:'screenColorDepth')
|
593
|
+
self.screen_color_depth = attributes[:'screenColorDepth']
|
594
|
+
end
|
595
|
+
|
596
|
+
if attributes.has_key?(:'screenHeight')
|
597
|
+
self.screen_height = attributes[:'screenHeight']
|
598
|
+
end
|
599
|
+
|
600
|
+
if attributes.has_key?(:'screenWidth')
|
601
|
+
self.screen_width = attributes[:'screenWidth']
|
602
|
+
end
|
603
|
+
|
558
604
|
if attributes.has_key?(:'shippingAddress')
|
559
605
|
self.shipping_address = attributes[:'shippingAddress']
|
560
606
|
end
|
@@ -614,6 +660,14 @@ module Wallee
|
|
614
660
|
if attributes.has_key?(:'version')
|
615
661
|
self.version = attributes[:'version']
|
616
662
|
end
|
663
|
+
|
664
|
+
if attributes.has_key?(:'windowHeight')
|
665
|
+
self.window_height = attributes[:'windowHeight']
|
666
|
+
end
|
667
|
+
|
668
|
+
if attributes.has_key?(:'windowWidth')
|
669
|
+
self.window_width = attributes[:'windowWidth']
|
670
|
+
end
|
617
671
|
end
|
618
672
|
|
619
673
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -804,6 +858,7 @@ module Wallee
|
|
804
858
|
internet_protocol_address == o.internet_protocol_address &&
|
805
859
|
internet_protocol_address_country == o.internet_protocol_address_country &&
|
806
860
|
invoice_merchant_reference == o.invoice_merchant_reference &&
|
861
|
+
java_enabled == o.java_enabled &&
|
807
862
|
language == o.language &&
|
808
863
|
line_items == o.line_items &&
|
809
864
|
linked_space_id == o.linked_space_id &&
|
@@ -814,6 +869,9 @@ module Wallee
|
|
814
869
|
planned_purge_date == o.planned_purge_date &&
|
815
870
|
processing_on == o.processing_on &&
|
816
871
|
refunded_amount == o.refunded_amount &&
|
872
|
+
screen_color_depth == o.screen_color_depth &&
|
873
|
+
screen_height == o.screen_height &&
|
874
|
+
screen_width == o.screen_width &&
|
817
875
|
shipping_address == o.shipping_address &&
|
818
876
|
shipping_method == o.shipping_method &&
|
819
877
|
space_view_id == o.space_view_id &&
|
@@ -828,7 +886,9 @@ module Wallee
|
|
828
886
|
user_agent_header == o.user_agent_header &&
|
829
887
|
user_failure_message == o.user_failure_message &&
|
830
888
|
user_interface_type == o.user_interface_type &&
|
831
|
-
version == o.version
|
889
|
+
version == o.version &&
|
890
|
+
window_height == o.window_height &&
|
891
|
+
window_width == o.window_width
|
832
892
|
end
|
833
893
|
|
834
894
|
# @see the `==` method
|
@@ -840,7 +900,7 @@ module Wallee
|
|
840
900
|
# Calculates hash code according to all attributes.
|
841
901
|
# @return [Fixnum] Hash code
|
842
902
|
def hash
|
843
|
-
[accept_header, accept_language_header, allowed_payment_method_brands, allowed_payment_method_configurations, authorization_amount, authorization_environment, authorization_sales_channel, authorization_timeout_on, authorized_on, auto_confirmation_enabled, billing_address, charge_retry_enabled, completed_amount, completed_on, completion_behavior, completion_timeout_on, confirmed_by, confirmed_on, created_by, created_on, currency, customer_email_address, customer_id, customers_presence, delivery_decision_made_on, device_session_identifier, emails_disabled, end_of_life, environment, environment_selection_strategy, failed_on, failed_url, failure_reason, group, id, internet_protocol_address, internet_protocol_address_country, invoice_merchant_reference, language, line_items, linked_space_id, merchant_reference, meta_data, parent, payment_connector_configuration, planned_purge_date, processing_on, refunded_amount, shipping_address, shipping_method, space_view_id, state, success_url, terminal, time_zone, token, tokenization_mode, total_applied_fees, total_settled_amount, user_agent_header, user_failure_message, user_interface_type, version].hash
|
903
|
+
[accept_header, accept_language_header, allowed_payment_method_brands, allowed_payment_method_configurations, authorization_amount, authorization_environment, authorization_sales_channel, authorization_timeout_on, authorized_on, auto_confirmation_enabled, billing_address, charge_retry_enabled, completed_amount, completed_on, completion_behavior, completion_timeout_on, confirmed_by, confirmed_on, created_by, created_on, currency, customer_email_address, customer_id, customers_presence, delivery_decision_made_on, device_session_identifier, emails_disabled, end_of_life, environment, environment_selection_strategy, failed_on, failed_url, failure_reason, group, id, internet_protocol_address, internet_protocol_address_country, invoice_merchant_reference, java_enabled, language, line_items, linked_space_id, merchant_reference, meta_data, parent, payment_connector_configuration, planned_purge_date, processing_on, refunded_amount, screen_color_depth, screen_height, screen_width, shipping_address, shipping_method, space_view_id, state, success_url, terminal, time_zone, token, tokenization_mode, total_applied_fees, total_settled_amount, user_agent_header, user_failure_message, user_interface_type, version, window_height, window_width].hash
|
844
904
|
end
|
845
905
|
|
846
906
|
# Builds the object from hash
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'wallee-ruby-sdk'
|
3
|
+
|
4
|
+
class TestConditionTypeAll < Test::Unit::TestCase
|
5
|
+
|
6
|
+
def test_condition_type_all
|
7
|
+
|
8
|
+
app_user_id = 512
|
9
|
+
app_user_key = "FKrO76r5VwJtBrqZawBspljbBNOxp5veKQQkOnZxucQ="
|
10
|
+
|
11
|
+
Wallee.configure do |config|
|
12
|
+
config.user_id = app_user_id
|
13
|
+
config.authentication_key = app_user_key
|
14
|
+
end
|
15
|
+
|
16
|
+
condition_type_service = Wallee::ConditionTypeService.new
|
17
|
+
|
18
|
+
condition_types, status_code = condition_type_service.all_with_http_info()
|
19
|
+
assert_equal(200, status_code)
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wallee-ruby-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wallee AG
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -86,6 +86,7 @@ files:
|
|
86
86
|
- lib/wallee-ruby-sdk/api/application_user_service_api.rb
|
87
87
|
- lib/wallee-ruby-sdk/api/card_processing_service_api.rb
|
88
88
|
- lib/wallee-ruby-sdk/api/charge_attempt_service_api.rb
|
89
|
+
- lib/wallee-ruby-sdk/api/charge_bank_transaction_service_api.rb
|
89
90
|
- lib/wallee-ruby-sdk/api/charge_flow_level_payment_link_service_api.rb
|
90
91
|
- lib/wallee-ruby-sdk/api/charge_flow_level_service_api.rb
|
91
92
|
- lib/wallee-ruby-sdk/api/charge_flow_service_api.rb
|
@@ -102,12 +103,14 @@ files:
|
|
102
103
|
- lib/wallee-ruby-sdk/api/delivery_indication_service_api.rb
|
103
104
|
- lib/wallee-ruby-sdk/api/document_template_service_api.rb
|
104
105
|
- lib/wallee-ruby-sdk/api/document_template_type_service_api.rb
|
106
|
+
- lib/wallee-ruby-sdk/api/external_transfer_bank_transaction_service_api.rb
|
105
107
|
- lib/wallee-ruby-sdk/api/human_user_service_api.rb
|
106
108
|
- lib/wallee-ruby-sdk/api/installment_payment_service_api.rb
|
107
109
|
- lib/wallee-ruby-sdk/api/installment_payment_slice_service_api.rb
|
108
110
|
- lib/wallee-ruby-sdk/api/installment_plan_calculation_service_api.rb
|
109
111
|
- lib/wallee-ruby-sdk/api/installment_plan_configuration_service_api.rb
|
110
112
|
- lib/wallee-ruby-sdk/api/installment_plan_slice_configuration_service_api.rb
|
113
|
+
- lib/wallee-ruby-sdk/api/internal_transfer_bank_transaction_service_api.rb
|
111
114
|
- lib/wallee-ruby-sdk/api/label_description_group_service_api.rb
|
112
115
|
- lib/wallee-ruby-sdk/api/label_description_service_api.rb
|
113
116
|
- lib/wallee-ruby-sdk/api/language_service_api.rb
|
@@ -125,7 +128,9 @@ files:
|
|
125
128
|
- lib/wallee-ruby-sdk/api/payment_terminal_service_api.rb
|
126
129
|
- lib/wallee-ruby-sdk/api/payment_terminal_till_service_api.rb
|
127
130
|
- lib/wallee-ruby-sdk/api/permission_service_api.rb
|
131
|
+
- lib/wallee-ruby-sdk/api/refund_bank_transaction_service_api.rb
|
128
132
|
- lib/wallee-ruby-sdk/api/refund_comment_service_api.rb
|
133
|
+
- lib/wallee-ruby-sdk/api/refund_recovery_bank_transaction_service_api.rb
|
129
134
|
- lib/wallee-ruby-sdk/api/refund_service_api.rb
|
130
135
|
- lib/wallee-ruby-sdk/api/shopify_recurring_order_service_api.rb
|
131
136
|
- lib/wallee-ruby-sdk/api/shopify_subscriber_service_api.rb
|
@@ -208,10 +213,20 @@ files:
|
|
208
213
|
- lib/wallee-ruby-sdk/models/application_user_create.rb
|
209
214
|
- lib/wallee-ruby-sdk/models/application_user_create_with_mac_key.rb
|
210
215
|
- lib/wallee-ruby-sdk/models/application_user_update.rb
|
216
|
+
- lib/wallee-ruby-sdk/models/bank_account.rb
|
217
|
+
- lib/wallee-ruby-sdk/models/bank_account_environment.rb
|
218
|
+
- lib/wallee-ruby-sdk/models/bank_account_state.rb
|
219
|
+
- lib/wallee-ruby-sdk/models/bank_account_type.rb
|
220
|
+
- lib/wallee-ruby-sdk/models/bank_transaction.rb
|
221
|
+
- lib/wallee-ruby-sdk/models/bank_transaction_flow_direction.rb
|
222
|
+
- lib/wallee-ruby-sdk/models/bank_transaction_source.rb
|
223
|
+
- lib/wallee-ruby-sdk/models/bank_transaction_state.rb
|
224
|
+
- lib/wallee-ruby-sdk/models/bank_transaction_type.rb
|
211
225
|
- lib/wallee-ruby-sdk/models/charge.rb
|
212
226
|
- lib/wallee-ruby-sdk/models/charge_attempt.rb
|
213
227
|
- lib/wallee-ruby-sdk/models/charge_attempt_environment.rb
|
214
228
|
- lib/wallee-ruby-sdk/models/charge_attempt_state.rb
|
229
|
+
- lib/wallee-ruby-sdk/models/charge_bank_transaction.rb
|
215
230
|
- lib/wallee-ruby-sdk/models/charge_flow.rb
|
216
231
|
- lib/wallee-ruby-sdk/models/charge_flow_level.rb
|
217
232
|
- lib/wallee-ruby-sdk/models/charge_flow_level_configuration.rb
|
@@ -230,6 +245,7 @@ files:
|
|
230
245
|
- lib/wallee-ruby-sdk/models/connector_invocation_stage.rb
|
231
246
|
- lib/wallee-ruby-sdk/models/creation_entity_state.rb
|
232
247
|
- lib/wallee-ruby-sdk/models/criteria_operator.rb
|
248
|
+
- lib/wallee-ruby-sdk/models/currency_bank_account.rb
|
233
249
|
- lib/wallee-ruby-sdk/models/customer.rb
|
234
250
|
- lib/wallee-ruby-sdk/models/customer_active.rb
|
235
251
|
- lib/wallee-ruby-sdk/models/customer_address.rb
|
@@ -274,6 +290,7 @@ files:
|
|
274
290
|
- lib/wallee-ruby-sdk/models/entity_query_order_by.rb
|
275
291
|
- lib/wallee-ruby-sdk/models/entity_query_order_by_type.rb
|
276
292
|
- lib/wallee-ruby-sdk/models/environment.rb
|
293
|
+
- lib/wallee-ruby-sdk/models/external_transfer_bank_transaction.rb
|
277
294
|
- lib/wallee-ruby-sdk/models/failure_category.rb
|
278
295
|
- lib/wallee-ruby-sdk/models/failure_reason.rb
|
279
296
|
- lib/wallee-ruby-sdk/models/feature.rb
|
@@ -290,6 +307,7 @@ files:
|
|
290
307
|
- lib/wallee-ruby-sdk/models/installment_payment_state.rb
|
291
308
|
- lib/wallee-ruby-sdk/models/installment_plan_configuration.rb
|
292
309
|
- lib/wallee-ruby-sdk/models/installment_plan_slice_configuration.rb
|
310
|
+
- lib/wallee-ruby-sdk/models/internal_transfer_bank_transaction.rb
|
293
311
|
- lib/wallee-ruby-sdk/models/label.rb
|
294
312
|
- lib/wallee-ruby-sdk/models/label_descriptor.rb
|
295
313
|
- lib/wallee-ruby-sdk/models/label_descriptor_category.rb
|
@@ -311,6 +329,8 @@ files:
|
|
311
329
|
- lib/wallee-ruby-sdk/models/manual_task_type.rb
|
312
330
|
- lib/wallee-ruby-sdk/models/metric_usage.rb
|
313
331
|
- lib/wallee-ruby-sdk/models/one_click_payment_mode.rb
|
332
|
+
- lib/wallee-ruby-sdk/models/payment_adjustment.rb
|
333
|
+
- lib/wallee-ruby-sdk/models/payment_adjustment_type.rb
|
314
334
|
- lib/wallee-ruby-sdk/models/payment_connector.rb
|
315
335
|
- lib/wallee-ruby-sdk/models/payment_connector_configuration.rb
|
316
336
|
- lib/wallee-ruby-sdk/models/payment_connector_feature.rb
|
@@ -321,6 +341,7 @@ files:
|
|
321
341
|
- lib/wallee-ruby-sdk/models/payment_information_hash_type.rb
|
322
342
|
- lib/wallee-ruby-sdk/models/payment_link.rb
|
323
343
|
- lib/wallee-ruby-sdk/models/payment_link_active.rb
|
344
|
+
- lib/wallee-ruby-sdk/models/payment_link_address_handling_mode.rb
|
324
345
|
- lib/wallee-ruby-sdk/models/payment_link_create.rb
|
325
346
|
- lib/wallee-ruby-sdk/models/payment_link_protection_mode.rb
|
326
347
|
- lib/wallee-ruby-sdk/models/payment_link_update.rb
|
@@ -336,7 +357,6 @@ files:
|
|
336
357
|
- lib/wallee-ruby-sdk/models/payment_terminal_configuration_state.rb
|
337
358
|
- lib/wallee-ruby-sdk/models/payment_terminal_configuration_version.rb
|
338
359
|
- lib/wallee-ruby-sdk/models/payment_terminal_configuration_version_state.rb
|
339
|
-
- lib/wallee-ruby-sdk/models/payment_terminal_contact_address.rb
|
340
360
|
- lib/wallee-ruby-sdk/models/payment_terminal_location.rb
|
341
361
|
- lib/wallee-ruby-sdk/models/payment_terminal_location_state.rb
|
342
362
|
- lib/wallee-ruby-sdk/models/payment_terminal_location_version.rb
|
@@ -357,10 +377,12 @@ files:
|
|
357
377
|
- lib/wallee-ruby-sdk/models/product_setup_fee.rb
|
358
378
|
- lib/wallee-ruby-sdk/models/product_setup_fee_update.rb
|
359
379
|
- lib/wallee-ruby-sdk/models/refund.rb
|
380
|
+
- lib/wallee-ruby-sdk/models/refund_bank_transaction.rb
|
360
381
|
- lib/wallee-ruby-sdk/models/refund_comment.rb
|
361
382
|
- lib/wallee-ruby-sdk/models/refund_comment_active.rb
|
362
383
|
- lib/wallee-ruby-sdk/models/refund_comment_create.rb
|
363
384
|
- lib/wallee-ruby-sdk/models/refund_create.rb
|
385
|
+
- lib/wallee-ruby-sdk/models/refund_recovery_bank_transaction.rb
|
364
386
|
- lib/wallee-ruby-sdk/models/refund_state.rb
|
365
387
|
- lib/wallee-ruby-sdk/models/refund_type.rb
|
366
388
|
- lib/wallee-ruby-sdk/models/rendered_document.rb
|
@@ -542,6 +564,7 @@ files:
|
|
542
564
|
- lib/wallee-ruby-sdk/models/webhook_url_create.rb
|
543
565
|
- lib/wallee-ruby-sdk/models/webhook_url_update.rb
|
544
566
|
- lib/wallee-ruby-sdk/version.rb
|
567
|
+
- test/condition_type_service_test.rb
|
545
568
|
- test/transaction_create_service_test.rb
|
546
569
|
- test/transaction_payment_page_service_test.rb
|
547
570
|
- wallee-ruby-sdk.gemspec
|
@@ -569,5 +592,6 @@ signing_key:
|
|
569
592
|
specification_version: 4
|
570
593
|
summary: A ruby wrapper around the wallee API.
|
571
594
|
test_files:
|
595
|
+
- test/condition_type_service_test.rb
|
572
596
|
- test/transaction_create_service_test.rb
|
573
597
|
- test/transaction_payment_page_service_test.rb
|
@@ -1,396 +0,0 @@
|
|
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 'date'
|
19
|
-
|
20
|
-
module Wallee
|
21
|
-
#
|
22
|
-
class PaymentTerminalContactAddress
|
23
|
-
#
|
24
|
-
attr_accessor :city
|
25
|
-
|
26
|
-
#
|
27
|
-
attr_accessor :country
|
28
|
-
|
29
|
-
#
|
30
|
-
attr_accessor :dependent_locality
|
31
|
-
|
32
|
-
#
|
33
|
-
attr_accessor :email_address
|
34
|
-
|
35
|
-
#
|
36
|
-
attr_accessor :family_name
|
37
|
-
|
38
|
-
#
|
39
|
-
attr_accessor :given_name
|
40
|
-
|
41
|
-
#
|
42
|
-
attr_accessor :mobile_phone_number
|
43
|
-
|
44
|
-
#
|
45
|
-
attr_accessor :organization_name
|
46
|
-
|
47
|
-
#
|
48
|
-
attr_accessor :phone_number
|
49
|
-
|
50
|
-
#
|
51
|
-
attr_accessor :postal_state
|
52
|
-
|
53
|
-
#
|
54
|
-
attr_accessor :postcode
|
55
|
-
|
56
|
-
#
|
57
|
-
attr_accessor :salutation
|
58
|
-
|
59
|
-
# The sorting code identifies the post office at which the post box is located in.
|
60
|
-
attr_accessor :sorting_code
|
61
|
-
|
62
|
-
#
|
63
|
-
attr_accessor :street
|
64
|
-
|
65
|
-
# Attribute mapping from ruby-style variable name to JSON key.
|
66
|
-
def self.attribute_map
|
67
|
-
{
|
68
|
-
:'city' => :'city',
|
69
|
-
:'country' => :'country',
|
70
|
-
:'dependent_locality' => :'dependentLocality',
|
71
|
-
:'email_address' => :'emailAddress',
|
72
|
-
:'family_name' => :'familyName',
|
73
|
-
:'given_name' => :'givenName',
|
74
|
-
:'mobile_phone_number' => :'mobilePhoneNumber',
|
75
|
-
:'organization_name' => :'organizationName',
|
76
|
-
:'phone_number' => :'phoneNumber',
|
77
|
-
:'postal_state' => :'postalState',
|
78
|
-
:'postcode' => :'postcode',
|
79
|
-
:'salutation' => :'salutation',
|
80
|
-
:'sorting_code' => :'sortingCode',
|
81
|
-
:'street' => :'street'
|
82
|
-
}
|
83
|
-
end
|
84
|
-
|
85
|
-
# Attribute type mapping.
|
86
|
-
def self.swagger_types
|
87
|
-
{
|
88
|
-
:'city' => :'String',
|
89
|
-
:'country' => :'String',
|
90
|
-
:'dependent_locality' => :'String',
|
91
|
-
:'email_address' => :'String',
|
92
|
-
:'family_name' => :'String',
|
93
|
-
:'given_name' => :'String',
|
94
|
-
:'mobile_phone_number' => :'String',
|
95
|
-
:'organization_name' => :'String',
|
96
|
-
:'phone_number' => :'String',
|
97
|
-
:'postal_state' => :'String',
|
98
|
-
:'postcode' => :'String',
|
99
|
-
:'salutation' => :'String',
|
100
|
-
:'sorting_code' => :'String',
|
101
|
-
:'street' => :'String'
|
102
|
-
}
|
103
|
-
end
|
104
|
-
|
105
|
-
# Initializes the object
|
106
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
107
|
-
def initialize(attributes = {})
|
108
|
-
return unless attributes.is_a?(Hash)
|
109
|
-
|
110
|
-
# convert string to symbol for hash key
|
111
|
-
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
112
|
-
|
113
|
-
if attributes.has_key?(:'city')
|
114
|
-
self.city = attributes[:'city']
|
115
|
-
end
|
116
|
-
|
117
|
-
if attributes.has_key?(:'country')
|
118
|
-
self.country = attributes[:'country']
|
119
|
-
end
|
120
|
-
|
121
|
-
if attributes.has_key?(:'dependentLocality')
|
122
|
-
self.dependent_locality = attributes[:'dependentLocality']
|
123
|
-
end
|
124
|
-
|
125
|
-
if attributes.has_key?(:'emailAddress')
|
126
|
-
self.email_address = attributes[:'emailAddress']
|
127
|
-
end
|
128
|
-
|
129
|
-
if attributes.has_key?(:'familyName')
|
130
|
-
self.family_name = attributes[:'familyName']
|
131
|
-
end
|
132
|
-
|
133
|
-
if attributes.has_key?(:'givenName')
|
134
|
-
self.given_name = attributes[:'givenName']
|
135
|
-
end
|
136
|
-
|
137
|
-
if attributes.has_key?(:'mobilePhoneNumber')
|
138
|
-
self.mobile_phone_number = attributes[:'mobilePhoneNumber']
|
139
|
-
end
|
140
|
-
|
141
|
-
if attributes.has_key?(:'organizationName')
|
142
|
-
self.organization_name = attributes[:'organizationName']
|
143
|
-
end
|
144
|
-
|
145
|
-
if attributes.has_key?(:'phoneNumber')
|
146
|
-
self.phone_number = attributes[:'phoneNumber']
|
147
|
-
end
|
148
|
-
|
149
|
-
if attributes.has_key?(:'postalState')
|
150
|
-
self.postal_state = attributes[:'postalState']
|
151
|
-
end
|
152
|
-
|
153
|
-
if attributes.has_key?(:'postcode')
|
154
|
-
self.postcode = attributes[:'postcode']
|
155
|
-
end
|
156
|
-
|
157
|
-
if attributes.has_key?(:'salutation')
|
158
|
-
self.salutation = attributes[:'salutation']
|
159
|
-
end
|
160
|
-
|
161
|
-
if attributes.has_key?(:'sortingCode')
|
162
|
-
self.sorting_code = attributes[:'sortingCode']
|
163
|
-
end
|
164
|
-
|
165
|
-
if attributes.has_key?(:'street')
|
166
|
-
self.street = attributes[:'street']
|
167
|
-
end
|
168
|
-
end
|
169
|
-
|
170
|
-
# Show invalid properties with the reasons. Usually used together with valid?
|
171
|
-
# @return Array for valid properties with the reasons
|
172
|
-
def list_invalid_properties
|
173
|
-
invalid_properties = Array.new
|
174
|
-
if !@dependent_locality.nil? && @dependent_locality.to_s.length > 100
|
175
|
-
invalid_properties.push('invalid value for "dependent_locality", the character length must be smaller than or equal to 100.')
|
176
|
-
end
|
177
|
-
|
178
|
-
if !@email_address.nil? && @email_address.to_s.length > 254
|
179
|
-
invalid_properties.push('invalid value for "email_address", the character length must be smaller than or equal to 254.')
|
180
|
-
end
|
181
|
-
|
182
|
-
if !@mobile_phone_number.nil? && @mobile_phone_number.to_s.length > 100
|
183
|
-
invalid_properties.push('invalid value for "mobile_phone_number", the character length must be smaller than or equal to 100.')
|
184
|
-
end
|
185
|
-
|
186
|
-
if !@salutation.nil? && @salutation.to_s.length > 20
|
187
|
-
invalid_properties.push('invalid value for "salutation", the character length must be smaller than or equal to 20.')
|
188
|
-
end
|
189
|
-
|
190
|
-
if !@sorting_code.nil? && @sorting_code.to_s.length > 100
|
191
|
-
invalid_properties.push('invalid value for "sorting_code", the character length must be smaller than or equal to 100.')
|
192
|
-
end
|
193
|
-
|
194
|
-
invalid_properties
|
195
|
-
end
|
196
|
-
|
197
|
-
# Check to see if the all the properties in the model are valid
|
198
|
-
# @return true if the model is valid
|
199
|
-
def valid?
|
200
|
-
return false if !@dependent_locality.nil? && @dependent_locality.to_s.length > 100
|
201
|
-
return false if !@email_address.nil? && @email_address.to_s.length > 254
|
202
|
-
return false if !@mobile_phone_number.nil? && @mobile_phone_number.to_s.length > 100
|
203
|
-
return false if !@salutation.nil? && @salutation.to_s.length > 20
|
204
|
-
return false if !@sorting_code.nil? && @sorting_code.to_s.length > 100
|
205
|
-
true
|
206
|
-
end
|
207
|
-
|
208
|
-
# Custom attribute writer method with validation
|
209
|
-
# @param [Object] dependent_locality Value to be assigned
|
210
|
-
def dependent_locality=(dependent_locality)
|
211
|
-
if !dependent_locality.nil? && dependent_locality.to_s.length > 100
|
212
|
-
fail ArgumentError, 'invalid value for "dependent_locality", the character length must be smaller than or equal to 100.'
|
213
|
-
end
|
214
|
-
|
215
|
-
@dependent_locality = dependent_locality
|
216
|
-
end
|
217
|
-
|
218
|
-
# Custom attribute writer method with validation
|
219
|
-
# @param [Object] email_address Value to be assigned
|
220
|
-
def email_address=(email_address)
|
221
|
-
if !email_address.nil? && email_address.to_s.length > 254
|
222
|
-
fail ArgumentError, 'invalid value for "email_address", the character length must be smaller than or equal to 254.'
|
223
|
-
end
|
224
|
-
|
225
|
-
@email_address = email_address
|
226
|
-
end
|
227
|
-
|
228
|
-
# Custom attribute writer method with validation
|
229
|
-
# @param [Object] mobile_phone_number Value to be assigned
|
230
|
-
def mobile_phone_number=(mobile_phone_number)
|
231
|
-
if !mobile_phone_number.nil? && mobile_phone_number.to_s.length > 100
|
232
|
-
fail ArgumentError, 'invalid value for "mobile_phone_number", the character length must be smaller than or equal to 100.'
|
233
|
-
end
|
234
|
-
|
235
|
-
@mobile_phone_number = mobile_phone_number
|
236
|
-
end
|
237
|
-
|
238
|
-
# Custom attribute writer method with validation
|
239
|
-
# @param [Object] salutation Value to be assigned
|
240
|
-
def salutation=(salutation)
|
241
|
-
if !salutation.nil? && salutation.to_s.length > 20
|
242
|
-
fail ArgumentError, 'invalid value for "salutation", the character length must be smaller than or equal to 20.'
|
243
|
-
end
|
244
|
-
|
245
|
-
@salutation = salutation
|
246
|
-
end
|
247
|
-
|
248
|
-
# Custom attribute writer method with validation
|
249
|
-
# @param [Object] sorting_code Value to be assigned
|
250
|
-
def sorting_code=(sorting_code)
|
251
|
-
if !sorting_code.nil? && sorting_code.to_s.length > 100
|
252
|
-
fail ArgumentError, 'invalid value for "sorting_code", the character length must be smaller than or equal to 100.'
|
253
|
-
end
|
254
|
-
|
255
|
-
@sorting_code = sorting_code
|
256
|
-
end
|
257
|
-
|
258
|
-
# Checks equality by comparing each attribute.
|
259
|
-
# @param [Object] Object to be compared
|
260
|
-
def ==(o)
|
261
|
-
return true if self.equal?(o)
|
262
|
-
self.class == o.class &&
|
263
|
-
city == o.city &&
|
264
|
-
country == o.country &&
|
265
|
-
dependent_locality == o.dependent_locality &&
|
266
|
-
email_address == o.email_address &&
|
267
|
-
family_name == o.family_name &&
|
268
|
-
given_name == o.given_name &&
|
269
|
-
mobile_phone_number == o.mobile_phone_number &&
|
270
|
-
organization_name == o.organization_name &&
|
271
|
-
phone_number == o.phone_number &&
|
272
|
-
postal_state == o.postal_state &&
|
273
|
-
postcode == o.postcode &&
|
274
|
-
salutation == o.salutation &&
|
275
|
-
sorting_code == o.sorting_code &&
|
276
|
-
street == o.street
|
277
|
-
end
|
278
|
-
|
279
|
-
# @see the `==` method
|
280
|
-
# @param [Object] Object to be compared
|
281
|
-
def eql?(o)
|
282
|
-
self == o
|
283
|
-
end
|
284
|
-
|
285
|
-
# Calculates hash code according to all attributes.
|
286
|
-
# @return [Fixnum] Hash code
|
287
|
-
def hash
|
288
|
-
[city, country, dependent_locality, email_address, family_name, given_name, mobile_phone_number, organization_name, phone_number, postal_state, postcode, salutation, sorting_code, street].hash
|
289
|
-
end
|
290
|
-
|
291
|
-
# Builds the object from hash
|
292
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
293
|
-
# @return [Object] Returns the model itself
|
294
|
-
def build_from_hash(attributes)
|
295
|
-
return nil unless attributes.is_a?(Hash)
|
296
|
-
self.class.swagger_types.each_pair do |key, type|
|
297
|
-
if type =~ /\AArray<(.*)>/i
|
298
|
-
# check to ensure the input is an array given that the attribute
|
299
|
-
# is documented as an array but the input is not
|
300
|
-
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
301
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
|
302
|
-
end
|
303
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
304
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
305
|
-
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
306
|
-
end
|
307
|
-
|
308
|
-
self
|
309
|
-
end
|
310
|
-
|
311
|
-
# Deserializes the data based on type
|
312
|
-
# @param string type Data type
|
313
|
-
# @param string value Value to be deserialized
|
314
|
-
# @return [Object] Deserialized data
|
315
|
-
def _deserialize(type, value)
|
316
|
-
case type.to_sym
|
317
|
-
when :DateTime
|
318
|
-
DateTime.parse(value)
|
319
|
-
when :Date
|
320
|
-
Date.parse(value)
|
321
|
-
when :String
|
322
|
-
value.to_s
|
323
|
-
when :Integer
|
324
|
-
value.to_i
|
325
|
-
when :Float
|
326
|
-
value.to_f
|
327
|
-
when :BOOLEAN
|
328
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
329
|
-
true
|
330
|
-
else
|
331
|
-
false
|
332
|
-
end
|
333
|
-
when :Object
|
334
|
-
# generic object (usually a Hash), return directly
|
335
|
-
value
|
336
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
337
|
-
inner_type = Regexp.last_match[:inner_type]
|
338
|
-
value.map { |v| _deserialize(inner_type, v) }
|
339
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
340
|
-
k_type = Regexp.last_match[:k_type]
|
341
|
-
v_type = Regexp.last_match[:v_type]
|
342
|
-
{}.tap do |hash|
|
343
|
-
value.each do |k, v|
|
344
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
345
|
-
end
|
346
|
-
end
|
347
|
-
else # model
|
348
|
-
temp_model = Wallee.const_get(type).new
|
349
|
-
temp_model.build_from_hash(value)
|
350
|
-
end
|
351
|
-
end
|
352
|
-
|
353
|
-
# Returns the string representation of the object
|
354
|
-
# @return [String] String presentation of the object
|
355
|
-
def to_s
|
356
|
-
to_hash.to_s
|
357
|
-
end
|
358
|
-
|
359
|
-
# to_body is an alias to to_hash (backward compatibility)
|
360
|
-
# @return [Hash] Returns the object in the form of hash
|
361
|
-
def to_body
|
362
|
-
to_hash
|
363
|
-
end
|
364
|
-
|
365
|
-
# Returns the object in the form of hash
|
366
|
-
# @return [Hash] Returns the object in the form of hash
|
367
|
-
def to_hash
|
368
|
-
hash = {}
|
369
|
-
self.class.attribute_map.each_pair do |attr, param|
|
370
|
-
value = self.send(attr)
|
371
|
-
next if value.nil?
|
372
|
-
hash[param] = _to_hash(value)
|
373
|
-
end
|
374
|
-
hash
|
375
|
-
end
|
376
|
-
|
377
|
-
# Outputs non-array value in the form of hash
|
378
|
-
# For object, use to_hash. Otherwise, just return the value
|
379
|
-
# @param [Object] value Any valid value
|
380
|
-
# @return [Hash] Returns the value in the form of hash
|
381
|
-
def _to_hash(value)
|
382
|
-
if value.is_a?(Array)
|
383
|
-
value.compact.map{ |v| _to_hash(v) }
|
384
|
-
elsif value.is_a?(Hash)
|
385
|
-
{}.tap do |hash|
|
386
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
387
|
-
end
|
388
|
-
elsif value.respond_to? :to_hash
|
389
|
-
value.to_hash
|
390
|
-
else
|
391
|
-
value
|
392
|
-
end
|
393
|
-
end
|
394
|
-
|
395
|
-
end
|
396
|
-
end
|