increase 1.129.1 → 1.131.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.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -0
  3. data/README.md +1 -1
  4. data/lib/increase/models/account.rb +0 -15
  5. data/lib/increase/models/account_transfer.rb +0 -15
  6. data/lib/increase/models/ach_transfer.rb +0 -30
  7. data/lib/increase/models/card_payment.rb +0 -210
  8. data/lib/increase/models/card_push_transfer.rb +0 -15
  9. data/lib/increase/models/check_deposit.rb +0 -60
  10. data/lib/increase/models/check_transfer.rb +0 -15
  11. data/lib/increase/models/declined_transaction.rb +0 -60
  12. data/lib/increase/models/fednow_transfer.rb +0 -15
  13. data/lib/increase/models/inbound_check_deposit.rb +0 -15
  14. data/lib/increase/models/inbound_fednow_transfer.rb +0 -15
  15. data/lib/increase/models/inbound_real_time_payments_transfer.rb +0 -15
  16. data/lib/increase/models/intrafi_balance.rb +0 -15
  17. data/lib/increase/models/lockbox.rb +16 -16
  18. data/lib/increase/models/lockbox_update_params.rb +14 -14
  19. data/lib/increase/models/pending_transaction.rb +0 -90
  20. data/lib/increase/models/real_time_payments_transfer.rb +0 -15
  21. data/lib/increase/models/transaction.rb +0 -255
  22. data/lib/increase/models/wire_transfer.rb +0 -15
  23. data/lib/increase/resources/lockboxes.rb +3 -3
  24. data/lib/increase/version.rb +1 -1
  25. data/rbi/increase/models/account.rbi +0 -15
  26. data/rbi/increase/models/account_transfer.rbi +0 -15
  27. data/rbi/increase/models/ach_transfer.rbi +0 -50
  28. data/rbi/increase/models/card_payment.rbi +0 -490
  29. data/rbi/increase/models/card_push_transfer.rbi +0 -15
  30. data/rbi/increase/models/check_deposit.rbi +0 -140
  31. data/rbi/increase/models/check_transfer.rbi +0 -15
  32. data/rbi/increase/models/declined_transaction.rbi +0 -120
  33. data/rbi/increase/models/fednow_transfer.rbi +0 -15
  34. data/rbi/increase/models/inbound_check_deposit.rbi +0 -15
  35. data/rbi/increase/models/inbound_fednow_transfer.rbi +0 -20
  36. data/rbi/increase/models/inbound_real_time_payments_transfer.rbi +0 -35
  37. data/rbi/increase/models/intrafi_balance.rbi +0 -15
  38. data/rbi/increase/models/lockbox.rbi +28 -16
  39. data/rbi/increase/models/lockbox_update_params.rbi +44 -25
  40. data/rbi/increase/models/pending_transaction.rbi +0 -190
  41. data/rbi/increase/models/real_time_payments_transfer.rbi +0 -35
  42. data/rbi/increase/models/transaction.rbi +0 -575
  43. data/rbi/increase/models/wire_transfer.rbi +0 -15
  44. data/rbi/increase/resources/lockboxes.rbi +4 -3
  45. data/sig/increase/models/account.rbs +1 -16
  46. data/sig/increase/models/account_transfer.rbs +1 -16
  47. data/sig/increase/models/ach_transfer.rbs +2 -32
  48. data/sig/increase/models/card_payment.rbs +14 -224
  49. data/sig/increase/models/card_push_transfer.rbs +1 -16
  50. data/sig/increase/models/check_deposit.rbs +4 -64
  51. data/sig/increase/models/check_transfer.rbs +1 -16
  52. data/sig/increase/models/declined_transaction.rbs +4 -64
  53. data/sig/increase/models/fednow_transfer.rbs +1 -16
  54. data/sig/increase/models/inbound_check_deposit.rbs +1 -16
  55. data/sig/increase/models/inbound_fednow_transfer.rbs +1 -16
  56. data/sig/increase/models/inbound_real_time_payments_transfer.rbs +1 -16
  57. data/sig/increase/models/intrafi_balance.rbs +1 -16
  58. data/sig/increase/models/lockbox.rbs +12 -12
  59. data/sig/increase/models/lockbox_update_params.rbs +17 -17
  60. data/sig/increase/models/pending_transaction.rbs +6 -96
  61. data/sig/increase/models/real_time_payments_transfer.rbs +1 -16
  62. data/sig/increase/models/transaction.rbs +17 -272
  63. data/sig/increase/models/wire_transfer.rbs +1 -16
  64. data/sig/increase/resources/lockboxes.rbs +1 -1
  65. metadata +2 -2
@@ -164,21 +164,6 @@ module Increase
164
164
  module Currency
165
165
  extend Increase::Internal::Type::Enum
166
166
 
167
- # Canadian Dollar (CAD)
168
- CAD = :CAD
169
-
170
- # Swiss Franc (CHF)
171
- CHF = :CHF
172
-
173
- # Euro (EUR)
174
- EUR = :EUR
175
-
176
- # British Pound (GBP)
177
- GBP = :GBP
178
-
179
- # Japanese Yen (JPY)
180
- JPY = :JPY
181
-
182
167
  # US Dollar (USD)
183
168
  USD = :USD
184
169
 
@@ -171,21 +171,6 @@ module Increase
171
171
  module Currency
172
172
  extend Increase::Internal::Type::Enum
173
173
 
174
- # Canadian Dollar (CAD)
175
- CAD = :CAD
176
-
177
- # Swiss Franc (CHF)
178
- CHF = :CHF
179
-
180
- # Euro (EUR)
181
- EUR = :EUR
182
-
183
- # British Pound (GBP)
184
- GBP = :GBP
185
-
186
- # Japanese Yen (JPY)
187
- JPY = :JPY
188
-
189
174
  # US Dollar (USD)
190
175
  USD = :USD
191
176
 
@@ -141,21 +141,6 @@ module Increase
141
141
  module Currency
142
142
  extend Increase::Internal::Type::Enum
143
143
 
144
- # Canadian Dollar (CAD)
145
- CAD = :CAD
146
-
147
- # Swiss Franc (CHF)
148
- CHF = :CHF
149
-
150
- # Euro (EUR)
151
- EUR = :EUR
152
-
153
- # British Pound (GBP)
154
- GBP = :GBP
155
-
156
- # Japanese Yen (JPY)
157
- JPY = :JPY
158
-
159
144
  # US Dollar (USD)
160
145
  USD = :USD
161
146
 
@@ -23,6 +23,12 @@ module Increase
23
23
  # @return [Increase::Models::Lockbox::Address]
24
24
  required :address, -> { Increase::Lockbox::Address }
25
25
 
26
+ # @!attribute check_deposit_behavior
27
+ # Indicates if checks mailed to this lockbox will be deposited.
28
+ #
29
+ # @return [Symbol, Increase::Models::Lockbox::CheckDepositBehavior]
30
+ required :check_deposit_behavior, enum: -> { Increase::Lockbox::CheckDepositBehavior }
31
+
26
32
  # @!attribute created_at
27
33
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Lockbox
28
34
  # was created.
@@ -50,12 +56,6 @@ module Increase
50
56
  # @return [String, nil]
51
57
  required :recipient_name, String, nil?: true
52
58
 
53
- # @!attribute status
54
- # This indicates if mail can be sent to this address.
55
- #
56
- # @return [Symbol, Increase::Models::Lockbox::Status]
57
- required :status, enum: -> { Increase::Lockbox::Status }
58
-
59
59
  # @!attribute type
60
60
  # A constant representing the object's type. For this resource it will always be
61
61
  # `lockbox`.
@@ -63,7 +63,7 @@ module Increase
63
63
  # @return [Symbol, Increase::Models::Lockbox::Type]
64
64
  required :type, enum: -> { Increase::Lockbox::Type }
65
65
 
66
- # @!method initialize(id:, account_id:, address:, created_at:, description:, idempotency_key:, recipient_name:, status:, type:)
66
+ # @!method initialize(id:, account_id:, address:, check_deposit_behavior:, created_at:, description:, idempotency_key:, recipient_name:, type:)
67
67
  # Some parameter documentations has been truncated, see
68
68
  # {Increase::Models::Lockbox} for more details.
69
69
  #
@@ -76,6 +76,8 @@ module Increase
76
76
  #
77
77
  # @param address [Increase::Models::Lockbox::Address] The mailing address for the Lockbox.
78
78
  #
79
+ # @param check_deposit_behavior [Symbol, Increase::Models::Lockbox::CheckDepositBehavior] Indicates if checks mailed to this lockbox will be deposited.
80
+ #
79
81
  # @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Lockbox
80
82
  #
81
83
  # @param description [String, nil] The description you choose for the Lockbox.
@@ -84,8 +86,6 @@ module Increase
84
86
  #
85
87
  # @param recipient_name [String, nil] The recipient name you choose for the Lockbox.
86
88
  #
87
- # @param status [Symbol, Increase::Models::Lockbox::Status] This indicates if mail can be sent to this address.
88
- #
89
89
  # @param type [Symbol, Increase::Models::Lockbox::Type] A constant representing the object's type. For this resource it will always be `
90
90
 
91
91
  # @see Increase::Models::Lockbox#address
@@ -149,17 +149,17 @@ module Increase
149
149
  # @param state [String] The two-letter United States Postal Service (USPS) abbreviation for the state of
150
150
  end
151
151
 
152
- # This indicates if mail can be sent to this address.
152
+ # Indicates if checks mailed to this lockbox will be deposited.
153
153
  #
154
- # @see Increase::Models::Lockbox#status
155
- module Status
154
+ # @see Increase::Models::Lockbox#check_deposit_behavior
155
+ module CheckDepositBehavior
156
156
  extend Increase::Internal::Type::Enum
157
157
 
158
- # This Lockbox is active. Checks mailed to it will be deposited automatically.
159
- ACTIVE = :active
158
+ # Checks mailed to this Lockbox will be deposited.
159
+ ENABLED = :enabled
160
160
 
161
- # This Lockbox is inactive. Checks mailed to it will not be deposited.
162
- INACTIVE = :inactive
161
+ # Checks mailed to this Lockbox will not be deposited.
162
+ DISABLED = :disabled
163
163
 
164
164
  # @!method self.values
165
165
  # @return [Array<Symbol>]
@@ -7,6 +7,12 @@ module Increase
7
7
  extend Increase::Internal::Type::RequestParameters::Converter
8
8
  include Increase::Internal::Type::RequestParameters
9
9
 
10
+ # @!attribute check_deposit_behavior
11
+ # This indicates if checks mailed to this lockbox will be deposited.
12
+ #
13
+ # @return [Symbol, Increase::Models::LockboxUpdateParams::CheckDepositBehavior, nil]
14
+ optional :check_deposit_behavior, enum: -> { Increase::LockboxUpdateParams::CheckDepositBehavior }
15
+
10
16
  # @!attribute description
11
17
  # The description you choose for the Lockbox.
12
18
  #
@@ -19,30 +25,24 @@ module Increase
19
25
  # @return [String, nil]
20
26
  optional :recipient_name, String
21
27
 
22
- # @!attribute status
23
- # This indicates if checks can be sent to the Lockbox.
28
+ # @!method initialize(check_deposit_behavior: nil, description: nil, recipient_name: nil, request_options: {})
29
+ # @param check_deposit_behavior [Symbol, Increase::Models::LockboxUpdateParams::CheckDepositBehavior] This indicates if checks mailed to this lockbox will be deposited.
24
30
  #
25
- # @return [Symbol, Increase::Models::LockboxUpdateParams::Status, nil]
26
- optional :status, enum: -> { Increase::LockboxUpdateParams::Status }
27
-
28
- # @!method initialize(description: nil, recipient_name: nil, status: nil, request_options: {})
29
31
  # @param description [String] The description you choose for the Lockbox.
30
32
  #
31
33
  # @param recipient_name [String] The recipient name you choose for the Lockbox.
32
34
  #
33
- # @param status [Symbol, Increase::Models::LockboxUpdateParams::Status] This indicates if checks can be sent to the Lockbox.
34
- #
35
35
  # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
36
36
 
37
- # This indicates if checks can be sent to the Lockbox.
38
- module Status
37
+ # This indicates if checks mailed to this lockbox will be deposited.
38
+ module CheckDepositBehavior
39
39
  extend Increase::Internal::Type::Enum
40
40
 
41
- # This Lockbox is active. Checks mailed to it will be deposited automatically.
42
- ACTIVE = :active
41
+ # Checks mailed to this Lockbox will be deposited.
42
+ ENABLED = :enabled
43
43
 
44
- # This Lockbox is inactive. Checks mailed to it will not be deposited.
45
- INACTIVE = :inactive
44
+ # Checks mailed to this Lockbox will not be deposited.
45
+ DISABLED = :disabled
46
46
 
47
47
  # @!method self.values
48
48
  # @return [Array<Symbol>]
@@ -139,21 +139,6 @@ module Increase
139
139
  module Currency
140
140
  extend Increase::Internal::Type::Enum
141
141
 
142
- # Canadian Dollar (CAD)
143
- CAD = :CAD
144
-
145
- # Swiss Franc (CHF)
146
- CHF = :CHF
147
-
148
- # Euro (EUR)
149
- EUR = :EUR
150
-
151
- # British Pound (GBP)
152
- GBP = :GBP
153
-
154
- # Japanese Yen (JPY)
155
- JPY = :JPY
156
-
157
142
  # US Dollar (USD)
158
143
  USD = :USD
159
144
 
@@ -407,21 +392,6 @@ module Increase
407
392
  module Currency
408
393
  extend Increase::Internal::Type::Enum
409
394
 
410
- # Canadian Dollar (CAD)
411
- CAD = :CAD
412
-
413
- # Swiss Franc (CHF)
414
- CHF = :CHF
415
-
416
- # Euro (EUR)
417
- EUR = :EUR
418
-
419
- # British Pound (GBP)
420
- GBP = :GBP
421
-
422
- # Japanese Yen (JPY)
423
- JPY = :JPY
424
-
425
395
  # US Dollar (USD)
426
396
  USD = :USD
427
397
 
@@ -1160,21 +1130,6 @@ module Increase
1160
1130
  module Currency
1161
1131
  extend Increase::Internal::Type::Enum
1162
1132
 
1163
- # Canadian Dollar (CAD)
1164
- CAD = :CAD
1165
-
1166
- # Swiss Franc (CHF)
1167
- CHF = :CHF
1168
-
1169
- # Euro (EUR)
1170
- EUR = :EUR
1171
-
1172
- # British Pound (GBP)
1173
- GBP = :GBP
1174
-
1175
- # Japanese Yen (JPY)
1176
- JPY = :JPY
1177
-
1178
1133
  # US Dollar (USD)
1179
1134
  USD = :USD
1180
1135
 
@@ -1799,21 +1754,6 @@ module Increase
1799
1754
  module Currency
1800
1755
  extend Increase::Internal::Type::Enum
1801
1756
 
1802
- # Canadian Dollar (CAD)
1803
- CAD = :CAD
1804
-
1805
- # Swiss Franc (CHF)
1806
- CHF = :CHF
1807
-
1808
- # Euro (EUR)
1809
- EUR = :EUR
1810
-
1811
- # British Pound (GBP)
1812
- GBP = :GBP
1813
-
1814
- # Japanese Yen (JPY)
1815
- JPY = :JPY
1816
-
1817
1757
  # US Dollar (USD)
1818
1758
  USD = :USD
1819
1759
 
@@ -1864,21 +1804,6 @@ module Increase
1864
1804
  module Currency
1865
1805
  extend Increase::Internal::Type::Enum
1866
1806
 
1867
- # Canadian Dollar (CAD)
1868
- CAD = :CAD
1869
-
1870
- # Swiss Franc (CHF)
1871
- CHF = :CHF
1872
-
1873
- # Euro (EUR)
1874
- EUR = :EUR
1875
-
1876
- # British Pound (GBP)
1877
- GBP = :GBP
1878
-
1879
- # Japanese Yen (JPY)
1880
- JPY = :JPY
1881
-
1882
1807
  # US Dollar (USD)
1883
1808
  USD = :USD
1884
1809
 
@@ -1998,21 +1923,6 @@ module Increase
1998
1923
  module Currency
1999
1924
  extend Increase::Internal::Type::Enum
2000
1925
 
2001
- # Canadian Dollar (CAD)
2002
- CAD = :CAD
2003
-
2004
- # Swiss Franc (CHF)
2005
- CHF = :CHF
2006
-
2007
- # Euro (EUR)
2008
- EUR = :EUR
2009
-
2010
- # British Pound (GBP)
2011
- GBP = :GBP
2012
-
2013
- # Japanese Yen (JPY)
2014
- JPY = :JPY
2015
-
2016
1926
  # US Dollar (USD)
2017
1927
  USD = :USD
2018
1928
 
@@ -408,21 +408,6 @@ module Increase
408
408
  module Currency
409
409
  extend Increase::Internal::Type::Enum
410
410
 
411
- # Canadian Dollar (CAD)
412
- CAD = :CAD
413
-
414
- # Swiss Franc (CHF)
415
- CHF = :CHF
416
-
417
- # Euro (EUR)
418
- EUR = :EUR
419
-
420
- # British Pound (GBP)
421
- GBP = :GBP
422
-
423
- # Japanese Yen (JPY)
424
- JPY = :JPY
425
-
426
411
  # US Dollar (USD)
427
412
  USD = :USD
428
413
 
@@ -111,21 +111,6 @@ module Increase
111
111
  module Currency
112
112
  extend Increase::Internal::Type::Enum
113
113
 
114
- # Canadian Dollar (CAD)
115
- CAD = :CAD
116
-
117
- # Swiss Franc (CHF)
118
- CHF = :CHF
119
-
120
- # Euro (EUR)
121
- EUR = :EUR
122
-
123
- # British Pound (GBP)
124
- GBP = :GBP
125
-
126
- # Japanese Yen (JPY)
127
- JPY = :JPY
128
-
129
114
  # US Dollar (USD)
130
115
  USD = :USD
131
116
 
@@ -723,21 +708,6 @@ module Increase
723
708
  module Currency
724
709
  extend Increase::Internal::Type::Enum
725
710
 
726
- # Canadian Dollar (CAD)
727
- CAD = :CAD
728
-
729
- # Swiss Franc (CHF)
730
- CHF = :CHF
731
-
732
- # Euro (EUR)
733
- EUR = :EUR
734
-
735
- # British Pound (GBP)
736
- GBP = :GBP
737
-
738
- # Japanese Yen (JPY)
739
- JPY = :JPY
740
-
741
711
  # US Dollar (USD)
742
712
  USD = :USD
743
713
 
@@ -1958,21 +1928,6 @@ module Increase
1958
1928
  module Currency
1959
1929
  extend Increase::Internal::Type::Enum
1960
1930
 
1961
- # Canadian Dollar (CAD)
1962
- CAD = :CAD
1963
-
1964
- # Swiss Franc (CHF)
1965
- CHF = :CHF
1966
-
1967
- # Euro (EUR)
1968
- EUR = :EUR
1969
-
1970
- # British Pound (GBP)
1971
- GBP = :GBP
1972
-
1973
- # Japanese Yen (JPY)
1974
- JPY = :JPY
1975
-
1976
1931
  # US Dollar (USD)
1977
1932
  USD = :USD
1978
1933
 
@@ -2697,21 +2652,6 @@ module Increase
2697
2652
  module Currency
2698
2653
  extend Increase::Internal::Type::Enum
2699
2654
 
2700
- # Canadian Dollar (CAD)
2701
- CAD = :CAD
2702
-
2703
- # Swiss Franc (CHF)
2704
- CHF = :CHF
2705
-
2706
- # Euro (EUR)
2707
- EUR = :EUR
2708
-
2709
- # British Pound (GBP)
2710
- GBP = :GBP
2711
-
2712
- # Japanese Yen (JPY)
2713
- JPY = :JPY
2714
-
2715
2655
  # US Dollar (USD)
2716
2656
  USD = :USD
2717
2657
 
@@ -2727,21 +2667,6 @@ module Increase
2727
2667
  module Currency
2728
2668
  extend Increase::Internal::Type::Enum
2729
2669
 
2730
- # Canadian Dollar (CAD)
2731
- CAD = :CAD
2732
-
2733
- # Swiss Franc (CHF)
2734
- CHF = :CHF
2735
-
2736
- # Euro (EUR)
2737
- EUR = :EUR
2738
-
2739
- # British Pound (GBP)
2740
- GBP = :GBP
2741
-
2742
- # Japanese Yen (JPY)
2743
- JPY = :JPY
2744
-
2745
2670
  # US Dollar (USD)
2746
2671
  USD = :USD
2747
2672
 
@@ -2793,21 +2718,6 @@ module Increase
2793
2718
  module Currency
2794
2719
  extend Increase::Internal::Type::Enum
2795
2720
 
2796
- # Canadian Dollar (CAD)
2797
- CAD = :CAD
2798
-
2799
- # Swiss Franc (CHF)
2800
- CHF = :CHF
2801
-
2802
- # Euro (EUR)
2803
- EUR = :EUR
2804
-
2805
- # British Pound (GBP)
2806
- GBP = :GBP
2807
-
2808
- # Japanese Yen (JPY)
2809
- JPY = :JPY
2810
-
2811
2721
  # US Dollar (USD)
2812
2722
  USD = :USD
2813
2723
 
@@ -3911,21 +3821,6 @@ module Increase
3911
3821
  module Currency
3912
3822
  extend Increase::Internal::Type::Enum
3913
3823
 
3914
- # Canadian Dollar (CAD)
3915
- CAD = :CAD
3916
-
3917
- # Swiss Franc (CHF)
3918
- CHF = :CHF
3919
-
3920
- # Euro (EUR)
3921
- EUR = :EUR
3922
-
3923
- # British Pound (GBP)
3924
- GBP = :GBP
3925
-
3926
- # Japanese Yen (JPY)
3927
- JPY = :JPY
3928
-
3929
3824
  # US Dollar (USD)
3930
3825
  USD = :USD
3931
3826
 
@@ -4176,21 +4071,6 @@ module Increase
4176
4071
  module Currency
4177
4072
  extend Increase::Internal::Type::Enum
4178
4073
 
4179
- # Canadian Dollar (CAD)
4180
- CAD = :CAD
4181
-
4182
- # Swiss Franc (CHF)
4183
- CHF = :CHF
4184
-
4185
- # Euro (EUR)
4186
- EUR = :EUR
4187
-
4188
- # British Pound (GBP)
4189
- GBP = :GBP
4190
-
4191
- # Japanese Yen (JPY)
4192
- JPY = :JPY
4193
-
4194
4074
  # US Dollar (USD)
4195
4075
  USD = :USD
4196
4076
 
@@ -4206,21 +4086,6 @@ module Increase
4206
4086
  module Currency
4207
4087
  extend Increase::Internal::Type::Enum
4208
4088
 
4209
- # Canadian Dollar (CAD)
4210
- CAD = :CAD
4211
-
4212
- # Swiss Franc (CHF)
4213
- CHF = :CHF
4214
-
4215
- # Euro (EUR)
4216
- EUR = :EUR
4217
-
4218
- # British Pound (GBP)
4219
- GBP = :GBP
4220
-
4221
- # Japanese Yen (JPY)
4222
- JPY = :JPY
4223
-
4224
4089
  # US Dollar (USD)
4225
4090
  USD = :USD
4226
4091
 
@@ -4272,21 +4137,6 @@ module Increase
4272
4137
  module Currency
4273
4138
  extend Increase::Internal::Type::Enum
4274
4139
 
4275
- # Canadian Dollar (CAD)
4276
- CAD = :CAD
4277
-
4278
- # Swiss Franc (CHF)
4279
- CHF = :CHF
4280
-
4281
- # Euro (EUR)
4282
- EUR = :EUR
4283
-
4284
- # British Pound (GBP)
4285
- GBP = :GBP
4286
-
4287
- # Japanese Yen (JPY)
4288
- JPY = :JPY
4289
-
4290
4140
  # US Dollar (USD)
4291
4141
  USD = :USD
4292
4142
 
@@ -5434,21 +5284,6 @@ module Increase
5434
5284
  module Currency
5435
5285
  extend Increase::Internal::Type::Enum
5436
5286
 
5437
- # Canadian Dollar (CAD)
5438
- CAD = :CAD
5439
-
5440
- # Swiss Franc (CHF)
5441
- CHF = :CHF
5442
-
5443
- # Euro (EUR)
5444
- EUR = :EUR
5445
-
5446
- # British Pound (GBP)
5447
- GBP = :GBP
5448
-
5449
- # Japanese Yen (JPY)
5450
- JPY = :JPY
5451
-
5452
5287
  # US Dollar (USD)
5453
5288
  USD = :USD
5454
5289
 
@@ -5658,21 +5493,6 @@ module Increase
5658
5493
  module Currency
5659
5494
  extend Increase::Internal::Type::Enum
5660
5495
 
5661
- # Canadian Dollar (CAD)
5662
- CAD = :CAD
5663
-
5664
- # Swiss Franc (CHF)
5665
- CHF = :CHF
5666
-
5667
- # Euro (EUR)
5668
- EUR = :EUR
5669
-
5670
- # British Pound (GBP)
5671
- GBP = :GBP
5672
-
5673
- # Japanese Yen (JPY)
5674
- JPY = :JPY
5675
-
5676
5496
  # US Dollar (USD)
5677
5497
  USD = :USD
5678
5498
 
@@ -5753,21 +5573,6 @@ module Increase
5753
5573
  module Currency
5754
5574
  extend Increase::Internal::Type::Enum
5755
5575
 
5756
- # Canadian Dollar (CAD)
5757
- CAD = :CAD
5758
-
5759
- # Swiss Franc (CHF)
5760
- CHF = :CHF
5761
-
5762
- # Euro (EUR)
5763
- EUR = :EUR
5764
-
5765
- # British Pound (GBP)
5766
- GBP = :GBP
5767
-
5768
- # Japanese Yen (JPY)
5769
- JPY = :JPY
5770
-
5771
5576
  # US Dollar (USD)
5772
5577
  USD = :USD
5773
5578
 
@@ -6028,21 +5833,6 @@ module Increase
6028
5833
  module Currency
6029
5834
  extend Increase::Internal::Type::Enum
6030
5835
 
6031
- # Canadian Dollar (CAD)
6032
- CAD = :CAD
6033
-
6034
- # Swiss Franc (CHF)
6035
- CHF = :CHF
6036
-
6037
- # Euro (EUR)
6038
- EUR = :EUR
6039
-
6040
- # British Pound (GBP)
6041
- GBP = :GBP
6042
-
6043
- # Japanese Yen (JPY)
6044
- JPY = :JPY
6045
-
6046
5836
  # US Dollar (USD)
6047
5837
  USD = :USD
6048
5838
 
@@ -6432,21 +6222,6 @@ module Increase
6432
6222
  module Currency
6433
6223
  extend Increase::Internal::Type::Enum
6434
6224
 
6435
- # Canadian Dollar (CAD)
6436
- CAD = :CAD
6437
-
6438
- # Swiss Franc (CHF)
6439
- CHF = :CHF
6440
-
6441
- # Euro (EUR)
6442
- EUR = :EUR
6443
-
6444
- # British Pound (GBP)
6445
- GBP = :GBP
6446
-
6447
- # Japanese Yen (JPY)
6448
- JPY = :JPY
6449
-
6450
6225
  # US Dollar (USD)
6451
6226
  USD = :USD
6452
6227
 
@@ -6815,21 +6590,6 @@ module Increase
6815
6590
  module Currency
6816
6591
  extend Increase::Internal::Type::Enum
6817
6592
 
6818
- # Canadian Dollar (CAD)
6819
- CAD = :CAD
6820
-
6821
- # Swiss Franc (CHF)
6822
- CHF = :CHF
6823
-
6824
- # Euro (EUR)
6825
- EUR = :EUR
6826
-
6827
- # British Pound (GBP)
6828
- GBP = :GBP
6829
-
6830
- # Japanese Yen (JPY)
6831
- JPY = :JPY
6832
-
6833
6593
  # US Dollar (USD)
6834
6594
  USD = :USD
6835
6595
 
@@ -6882,21 +6642,6 @@ module Increase
6882
6642
  module Currency
6883
6643
  extend Increase::Internal::Type::Enum
6884
6644
 
6885
- # Canadian Dollar (CAD)
6886
- CAD = :CAD
6887
-
6888
- # Swiss Franc (CHF)
6889
- CHF = :CHF
6890
-
6891
- # Euro (EUR)
6892
- EUR = :EUR
6893
-
6894
- # British Pound (GBP)
6895
- GBP = :GBP
6896
-
6897
- # Japanese Yen (JPY)
6898
- JPY = :JPY
6899
-
6900
6645
  # US Dollar (USD)
6901
6646
  USD = :USD
6902
6647