increase 1.53.0 → 1.54.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/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/transaction.rb +17 -68
- data/lib/increase/models/wire_transfer.rb +17 -68
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/transaction.rbi +20 -78
- data/rbi/increase/models/wire_transfer.rbi +20 -78
- data/sig/increase/models/transaction.rbs +13 -43
- data/sig/increase/models/wire_transfer.rbs +13 -43
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16e12500f60509516788aceee8ecd7803ef0c20e89a325b0dd5d8f5639ed4e80
|
4
|
+
data.tar.gz: dcef6bfd1def45d8fa9c162b8c34e27ddf1c514cfb207998afe3594dc7386b01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b138418762b8469caf071fccdbbdf76eaceeacda127cc994271fd5ceeebf5c5ca66b39e13b1c7e164edeb59fda8aac47a21e4df8962f1fcc3a2cf5df2848b007
|
7
|
+
data.tar.gz: 1ada45c1d290911ec0457921d99e21f95d5ece59b25b76b3ebc20b97567db6d66ae596f220ea6a7ca69116fc10bf245422d780af0f782a699112062de9d19275
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.54.0 (2025-08-27)
|
4
|
+
|
5
|
+
Full Changelog: [v1.53.0...v1.54.0](https://github.com/Increase/increase-ruby/compare/v1.53.0...v1.54.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([026528a](https://github.com/Increase/increase-ruby/commit/026528a9a30444a21d264201273ce190fc30f3e9))
|
10
|
+
|
3
11
|
## 1.53.0 (2025-08-26)
|
4
12
|
|
5
13
|
Full Changelog: [v1.52.0...v1.53.0](https://github.com/Increase/increase-ruby/compare/v1.52.0...v1.53.0)
|
data/README.md
CHANGED
@@ -5117,18 +5117,18 @@ module Increase
|
|
5117
5117
|
# @return [Time]
|
5118
5118
|
required :created_at, Time
|
5119
5119
|
|
5120
|
+
# @!attribute debtor_routing_number
|
5121
|
+
# The debtor's routing number.
|
5122
|
+
#
|
5123
|
+
# @return [String, nil]
|
5124
|
+
required :debtor_routing_number, String, nil?: true
|
5125
|
+
|
5120
5126
|
# @!attribute description
|
5121
5127
|
# The description on the reversal message from Fedwire, set by the reversing bank.
|
5122
5128
|
#
|
5123
5129
|
# @return [String]
|
5124
5130
|
required :description, String
|
5125
5131
|
|
5126
|
-
# @!attribute financial_institution_to_financial_institution_information
|
5127
|
-
# Additional financial institution information included in the wire reversal.
|
5128
|
-
#
|
5129
|
-
# @return [String, nil]
|
5130
|
-
required :financial_institution_to_financial_institution_information, String, nil?: true
|
5131
|
-
|
5132
5132
|
# @!attribute input_cycle_date
|
5133
5133
|
# The Fedwire cycle date for the wire reversal. The "Fedwire day" begins at 9:00
|
5134
5134
|
# PM Eastern Time on the evening before the `cycle date`.
|
@@ -5154,56 +5154,17 @@ module Increase
|
|
5154
5154
|
# @return [String]
|
5155
5155
|
required :input_source, String
|
5156
5156
|
|
5157
|
-
# @!attribute
|
5158
|
-
# The
|
5159
|
-
# the transfer.
|
5160
|
-
#
|
5161
|
-
# @return [String, nil]
|
5162
|
-
required :originator_routing_number, String, nil?: true
|
5163
|
-
|
5164
|
-
# @!attribute originator_to_beneficiary_information
|
5165
|
-
# Additional information included in the wire reversal by the reversal originator.
|
5166
|
-
#
|
5167
|
-
# @return [String, nil]
|
5168
|
-
required :originator_to_beneficiary_information, String, nil?: true
|
5169
|
-
|
5170
|
-
# @!attribute previous_message_input_cycle_date
|
5171
|
-
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
5172
|
-
# message.
|
5173
|
-
#
|
5174
|
-
# @return [Date, nil]
|
5175
|
-
required :previous_message_input_cycle_date, Date, nil?: true
|
5176
|
-
|
5177
|
-
# @!attribute previous_message_input_message_accountability_data
|
5178
|
-
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
5179
|
-
#
|
5180
|
-
# @return [String, nil]
|
5181
|
-
required :previous_message_input_message_accountability_data, String, nil?: true
|
5182
|
-
|
5183
|
-
# @!attribute previous_message_input_sequence_number
|
5184
|
-
# The Fedwire sequence number for the wire transfer that was reversed.
|
5185
|
-
#
|
5186
|
-
# @return [String]
|
5187
|
-
required :previous_message_input_sequence_number, String
|
5188
|
-
|
5189
|
-
# @!attribute previous_message_input_source
|
5190
|
-
# The Fedwire input source identifier for the wire transfer that was reversed.
|
5191
|
-
#
|
5192
|
-
# @return [String, nil]
|
5193
|
-
required :previous_message_input_source, String, nil?: true
|
5194
|
-
|
5195
|
-
# @!attribute receiver_financial_institution_information
|
5196
|
-
# Information included in the wire reversal for the receiving financial
|
5197
|
-
# institution.
|
5157
|
+
# @!attribute instruction_identification
|
5158
|
+
# The sending bank's identifier for the reversal.
|
5198
5159
|
#
|
5199
5160
|
# @return [String, nil]
|
5200
|
-
required :
|
5161
|
+
required :instruction_identification, String, nil?: true
|
5201
5162
|
|
5202
|
-
# @!attribute
|
5203
|
-
#
|
5163
|
+
# @!attribute return_reason_additional_information
|
5164
|
+
# Additional information about the reason for the reversal.
|
5204
5165
|
#
|
5205
5166
|
# @return [String, nil]
|
5206
|
-
required :
|
5167
|
+
required :return_reason_additional_information, String, nil?: true
|
5207
5168
|
|
5208
5169
|
# @!attribute transaction_id
|
5209
5170
|
# The ID for the Transaction associated with the transfer reversal.
|
@@ -5217,7 +5178,7 @@ module Increase
|
|
5217
5178
|
# @return [String]
|
5218
5179
|
required :wire_transfer_id, String
|
5219
5180
|
|
5220
|
-
# @!method initialize(amount:, created_at:,
|
5181
|
+
# @!method initialize(amount:, created_at:, debtor_routing_number:, description:, input_cycle_date:, input_message_accountability_data:, input_sequence_number:, input_source:, instruction_identification:, return_reason_additional_information:, transaction_id:, wire_transfer_id:)
|
5221
5182
|
# Some parameter documentations has been truncated, see
|
5222
5183
|
# {Increase::Models::Transaction::Source::InboundWireReversal} for more details.
|
5223
5184
|
#
|
@@ -5231,9 +5192,9 @@ module Increase
|
|
5231
5192
|
#
|
5232
5193
|
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
5233
5194
|
#
|
5234
|
-
# @param
|
5195
|
+
# @param debtor_routing_number [String, nil] The debtor's routing number.
|
5235
5196
|
#
|
5236
|
-
# @param
|
5197
|
+
# @param description [String] The description on the reversal message from Fedwire, set by the reversing bank.
|
5237
5198
|
#
|
5238
5199
|
# @param input_cycle_date [Date] The Fedwire cycle date for the wire reversal. The "Fedwire day" begins at 9:00 P
|
5239
5200
|
#
|
@@ -5243,21 +5204,9 @@ module Increase
|
|
5243
5204
|
#
|
5244
5205
|
# @param input_source [String] The Fedwire input source identifier.
|
5245
5206
|
#
|
5246
|
-
# @param
|
5247
|
-
#
|
5248
|
-
# @param originator_to_beneficiary_information [String, nil] Additional information included in the wire reversal by the reversal originator.
|
5249
|
-
#
|
5250
|
-
# @param previous_message_input_cycle_date [Date, nil] The Fedwire cycle date for the wire transfer that is being reversed by this mess
|
5251
|
-
#
|
5252
|
-
# @param previous_message_input_message_accountability_data [String, nil] The Fedwire transaction identifier for the wire transfer that was reversed.
|
5253
|
-
#
|
5254
|
-
# @param previous_message_input_sequence_number [String] The Fedwire sequence number for the wire transfer that was reversed.
|
5255
|
-
#
|
5256
|
-
# @param previous_message_input_source [String, nil] The Fedwire input source identifier for the wire transfer that was reversed.
|
5257
|
-
#
|
5258
|
-
# @param receiver_financial_institution_information [String, nil] Information included in the wire reversal for the receiving financial institutio
|
5207
|
+
# @param instruction_identification [String, nil] The sending bank's identifier for the reversal.
|
5259
5208
|
#
|
5260
|
-
# @param
|
5209
|
+
# @param return_reason_additional_information [String, nil] Additional information about the reason for the reversal.
|
5261
5210
|
#
|
5262
5211
|
# @param transaction_id [String] The ID for the Transaction associated with the transfer reversal.
|
5263
5212
|
#
|
@@ -474,18 +474,18 @@ module Increase
|
|
474
474
|
# @return [Time]
|
475
475
|
required :created_at, Time
|
476
476
|
|
477
|
+
# @!attribute debtor_routing_number
|
478
|
+
# The debtor's routing number.
|
479
|
+
#
|
480
|
+
# @return [String, nil]
|
481
|
+
required :debtor_routing_number, String, nil?: true
|
482
|
+
|
477
483
|
# @!attribute description
|
478
484
|
# The description on the reversal message from Fedwire, set by the reversing bank.
|
479
485
|
#
|
480
486
|
# @return [String]
|
481
487
|
required :description, String
|
482
488
|
|
483
|
-
# @!attribute financial_institution_to_financial_institution_information
|
484
|
-
# Additional financial institution information included in the wire reversal.
|
485
|
-
#
|
486
|
-
# @return [String, nil]
|
487
|
-
required :financial_institution_to_financial_institution_information, String, nil?: true
|
488
|
-
|
489
489
|
# @!attribute input_cycle_date
|
490
490
|
# The Fedwire cycle date for the wire reversal. The "Fedwire day" begins at 9:00
|
491
491
|
# PM Eastern Time on the evening before the `cycle date`.
|
@@ -511,56 +511,17 @@ module Increase
|
|
511
511
|
# @return [String]
|
512
512
|
required :input_source, String
|
513
513
|
|
514
|
-
# @!attribute
|
515
|
-
# The
|
516
|
-
# the transfer.
|
517
|
-
#
|
518
|
-
# @return [String, nil]
|
519
|
-
required :originator_routing_number, String, nil?: true
|
520
|
-
|
521
|
-
# @!attribute originator_to_beneficiary_information
|
522
|
-
# Additional information included in the wire reversal by the reversal originator.
|
514
|
+
# @!attribute instruction_identification
|
515
|
+
# The sending bank's identifier for the reversal.
|
523
516
|
#
|
524
517
|
# @return [String, nil]
|
525
|
-
required :
|
526
|
-
|
527
|
-
# @!attribute previous_message_input_cycle_date
|
528
|
-
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
529
|
-
# message.
|
530
|
-
#
|
531
|
-
# @return [Date, nil]
|
532
|
-
required :previous_message_input_cycle_date, Date, nil?: true
|
518
|
+
required :instruction_identification, String, nil?: true
|
533
519
|
|
534
|
-
# @!attribute
|
535
|
-
#
|
520
|
+
# @!attribute return_reason_additional_information
|
521
|
+
# Additional information about the reason for the reversal.
|
536
522
|
#
|
537
523
|
# @return [String, nil]
|
538
|
-
required :
|
539
|
-
|
540
|
-
# @!attribute previous_message_input_sequence_number
|
541
|
-
# The Fedwire sequence number for the wire transfer that was reversed.
|
542
|
-
#
|
543
|
-
# @return [String]
|
544
|
-
required :previous_message_input_sequence_number, String
|
545
|
-
|
546
|
-
# @!attribute previous_message_input_source
|
547
|
-
# The Fedwire input source identifier for the wire transfer that was reversed.
|
548
|
-
#
|
549
|
-
# @return [String, nil]
|
550
|
-
required :previous_message_input_source, String, nil?: true
|
551
|
-
|
552
|
-
# @!attribute receiver_financial_institution_information
|
553
|
-
# Information included in the wire reversal for the receiving financial
|
554
|
-
# institution.
|
555
|
-
#
|
556
|
-
# @return [String, nil]
|
557
|
-
required :receiver_financial_institution_information, String, nil?: true
|
558
|
-
|
559
|
-
# @!attribute sender_reference
|
560
|
-
# The sending bank's reference number for the wire reversal.
|
561
|
-
#
|
562
|
-
# @return [String, nil]
|
563
|
-
required :sender_reference, String, nil?: true
|
524
|
+
required :return_reason_additional_information, String, nil?: true
|
564
525
|
|
565
526
|
# @!attribute transaction_id
|
566
527
|
# The ID for the Transaction associated with the transfer reversal.
|
@@ -574,7 +535,7 @@ module Increase
|
|
574
535
|
# @return [String]
|
575
536
|
required :wire_transfer_id, String
|
576
537
|
|
577
|
-
# @!method initialize(amount:, created_at:,
|
538
|
+
# @!method initialize(amount:, created_at:, debtor_routing_number:, description:, input_cycle_date:, input_message_accountability_data:, input_sequence_number:, input_source:, instruction_identification:, return_reason_additional_information:, transaction_id:, wire_transfer_id:)
|
578
539
|
# Some parameter documentations has been truncated, see
|
579
540
|
# {Increase::Models::WireTransfer::Reversal} for more details.
|
580
541
|
#
|
@@ -584,9 +545,9 @@ module Increase
|
|
584
545
|
#
|
585
546
|
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
586
547
|
#
|
587
|
-
# @param
|
548
|
+
# @param debtor_routing_number [String, nil] The debtor's routing number.
|
588
549
|
#
|
589
|
-
# @param
|
550
|
+
# @param description [String] The description on the reversal message from Fedwire, set by the reversing bank.
|
590
551
|
#
|
591
552
|
# @param input_cycle_date [Date] The Fedwire cycle date for the wire reversal. The "Fedwire day" begins at 9:00 P
|
592
553
|
#
|
@@ -596,21 +557,9 @@ module Increase
|
|
596
557
|
#
|
597
558
|
# @param input_source [String] The Fedwire input source identifier.
|
598
559
|
#
|
599
|
-
# @param
|
600
|
-
#
|
601
|
-
# @param originator_to_beneficiary_information [String, nil] Additional information included in the wire reversal by the reversal originator.
|
602
|
-
#
|
603
|
-
# @param previous_message_input_cycle_date [Date, nil] The Fedwire cycle date for the wire transfer that is being reversed by this mess
|
604
|
-
#
|
605
|
-
# @param previous_message_input_message_accountability_data [String, nil] The Fedwire transaction identifier for the wire transfer that was reversed.
|
606
|
-
#
|
607
|
-
# @param previous_message_input_sequence_number [String] The Fedwire sequence number for the wire transfer that was reversed.
|
608
|
-
#
|
609
|
-
# @param previous_message_input_source [String, nil] The Fedwire input source identifier for the wire transfer that was reversed.
|
610
|
-
#
|
611
|
-
# @param receiver_financial_institution_information [String, nil] Information included in the wire reversal for the receiving financial institutio
|
560
|
+
# @param instruction_identification [String, nil] The sending bank's identifier for the reversal.
|
612
561
|
#
|
613
|
-
# @param
|
562
|
+
# @param return_reason_additional_information [String, nil] Additional information about the reason for the reversal.
|
614
563
|
#
|
615
564
|
# @param transaction_id [String] The ID for the Transaction associated with the transfer reversal.
|
616
565
|
#
|
data/lib/increase/version.rb
CHANGED
@@ -9496,14 +9496,14 @@ module Increase
|
|
9496
9496
|
sig { returns(Time) }
|
9497
9497
|
attr_accessor :created_at
|
9498
9498
|
|
9499
|
+
# The debtor's routing number.
|
9500
|
+
sig { returns(T.nilable(String)) }
|
9501
|
+
attr_accessor :debtor_routing_number
|
9502
|
+
|
9499
9503
|
# The description on the reversal message from Fedwire, set by the reversing bank.
|
9500
9504
|
sig { returns(String) }
|
9501
9505
|
attr_accessor :description
|
9502
9506
|
|
9503
|
-
# Additional financial institution information included in the wire reversal.
|
9504
|
-
sig { returns(T.nilable(String)) }
|
9505
|
-
attr_accessor :financial_institution_to_financial_institution_information
|
9506
|
-
|
9507
9507
|
# The Fedwire cycle date for the wire reversal. The "Fedwire day" begins at 9:00
|
9508
9508
|
# PM Eastern Time on the evening before the `cycle date`.
|
9509
9509
|
sig { returns(Date) }
|
@@ -9521,40 +9521,13 @@ module Increase
|
|
9521
9521
|
sig { returns(String) }
|
9522
9522
|
attr_accessor :input_source
|
9523
9523
|
|
9524
|
-
# The
|
9525
|
-
# the transfer.
|
9524
|
+
# The sending bank's identifier for the reversal.
|
9526
9525
|
sig { returns(T.nilable(String)) }
|
9527
|
-
attr_accessor :
|
9528
|
-
|
9529
|
-
# Additional information included in the wire reversal by the reversal originator.
|
9530
|
-
sig { returns(T.nilable(String)) }
|
9531
|
-
attr_accessor :originator_to_beneficiary_information
|
9532
|
-
|
9533
|
-
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
9534
|
-
# message.
|
9535
|
-
sig { returns(T.nilable(Date)) }
|
9536
|
-
attr_accessor :previous_message_input_cycle_date
|
9537
|
-
|
9538
|
-
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
9539
|
-
sig { returns(T.nilable(String)) }
|
9540
|
-
attr_accessor :previous_message_input_message_accountability_data
|
9541
|
-
|
9542
|
-
# The Fedwire sequence number for the wire transfer that was reversed.
|
9543
|
-
sig { returns(String) }
|
9544
|
-
attr_accessor :previous_message_input_sequence_number
|
9545
|
-
|
9546
|
-
# The Fedwire input source identifier for the wire transfer that was reversed.
|
9547
|
-
sig { returns(T.nilable(String)) }
|
9548
|
-
attr_accessor :previous_message_input_source
|
9549
|
-
|
9550
|
-
# Information included in the wire reversal for the receiving financial
|
9551
|
-
# institution.
|
9552
|
-
sig { returns(T.nilable(String)) }
|
9553
|
-
attr_accessor :receiver_financial_institution_information
|
9526
|
+
attr_accessor :instruction_identification
|
9554
9527
|
|
9555
|
-
#
|
9528
|
+
# Additional information about the reason for the reversal.
|
9556
9529
|
sig { returns(T.nilable(String)) }
|
9557
|
-
attr_accessor :
|
9530
|
+
attr_accessor :return_reason_additional_information
|
9558
9531
|
|
9559
9532
|
# The ID for the Transaction associated with the transfer reversal.
|
9560
9533
|
sig { returns(String) }
|
@@ -9573,22 +9546,14 @@ module Increase
|
|
9573
9546
|
params(
|
9574
9547
|
amount: Integer,
|
9575
9548
|
created_at: Time,
|
9549
|
+
debtor_routing_number: T.nilable(String),
|
9576
9550
|
description: String,
|
9577
|
-
financial_institution_to_financial_institution_information:
|
9578
|
-
T.nilable(String),
|
9579
9551
|
input_cycle_date: Date,
|
9580
9552
|
input_message_accountability_data: String,
|
9581
9553
|
input_sequence_number: String,
|
9582
9554
|
input_source: String,
|
9583
|
-
|
9584
|
-
|
9585
|
-
previous_message_input_cycle_date: T.nilable(Date),
|
9586
|
-
previous_message_input_message_accountability_data:
|
9587
|
-
T.nilable(String),
|
9588
|
-
previous_message_input_sequence_number: String,
|
9589
|
-
previous_message_input_source: T.nilable(String),
|
9590
|
-
receiver_financial_institution_information: T.nilable(String),
|
9591
|
-
sender_reference: T.nilable(String),
|
9555
|
+
instruction_identification: T.nilable(String),
|
9556
|
+
return_reason_additional_information: T.nilable(String),
|
9592
9557
|
transaction_id: String,
|
9593
9558
|
wire_transfer_id: String
|
9594
9559
|
).returns(T.attached_class)
|
@@ -9599,10 +9564,10 @@ module Increase
|
|
9599
9564
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
9600
9565
|
# the reversal was created.
|
9601
9566
|
created_at:,
|
9567
|
+
# The debtor's routing number.
|
9568
|
+
debtor_routing_number:,
|
9602
9569
|
# The description on the reversal message from Fedwire, set by the reversing bank.
|
9603
9570
|
description:,
|
9604
|
-
# Additional financial institution information included in the wire reversal.
|
9605
|
-
financial_institution_to_financial_institution_information:,
|
9606
9571
|
# The Fedwire cycle date for the wire reversal. The "Fedwire day" begins at 9:00
|
9607
9572
|
# PM Eastern Time on the evening before the `cycle date`.
|
9608
9573
|
input_cycle_date:,
|
@@ -9612,25 +9577,10 @@ module Increase
|
|
9612
9577
|
input_sequence_number:,
|
9613
9578
|
# The Fedwire input source identifier.
|
9614
9579
|
input_source:,
|
9615
|
-
# The
|
9616
|
-
|
9617
|
-
|
9618
|
-
|
9619
|
-
originator_to_beneficiary_information:,
|
9620
|
-
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
9621
|
-
# message.
|
9622
|
-
previous_message_input_cycle_date:,
|
9623
|
-
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
9624
|
-
previous_message_input_message_accountability_data:,
|
9625
|
-
# The Fedwire sequence number for the wire transfer that was reversed.
|
9626
|
-
previous_message_input_sequence_number:,
|
9627
|
-
# The Fedwire input source identifier for the wire transfer that was reversed.
|
9628
|
-
previous_message_input_source:,
|
9629
|
-
# Information included in the wire reversal for the receiving financial
|
9630
|
-
# institution.
|
9631
|
-
receiver_financial_institution_information:,
|
9632
|
-
# The sending bank's reference number for the wire reversal.
|
9633
|
-
sender_reference:,
|
9580
|
+
# The sending bank's identifier for the reversal.
|
9581
|
+
instruction_identification:,
|
9582
|
+
# Additional information about the reason for the reversal.
|
9583
|
+
return_reason_additional_information:,
|
9634
9584
|
# The ID for the Transaction associated with the transfer reversal.
|
9635
9585
|
transaction_id:,
|
9636
9586
|
# The ID for the Wire Transfer that is being reversed.
|
@@ -9643,22 +9593,14 @@ module Increase
|
|
9643
9593
|
{
|
9644
9594
|
amount: Integer,
|
9645
9595
|
created_at: Time,
|
9596
|
+
debtor_routing_number: T.nilable(String),
|
9646
9597
|
description: String,
|
9647
|
-
financial_institution_to_financial_institution_information:
|
9648
|
-
T.nilable(String),
|
9649
9598
|
input_cycle_date: Date,
|
9650
9599
|
input_message_accountability_data: String,
|
9651
9600
|
input_sequence_number: String,
|
9652
9601
|
input_source: String,
|
9653
|
-
|
9654
|
-
|
9655
|
-
previous_message_input_cycle_date: T.nilable(Date),
|
9656
|
-
previous_message_input_message_accountability_data:
|
9657
|
-
T.nilable(String),
|
9658
|
-
previous_message_input_sequence_number: String,
|
9659
|
-
previous_message_input_source: T.nilable(String),
|
9660
|
-
receiver_financial_institution_information: T.nilable(String),
|
9661
|
-
sender_reference: T.nilable(String),
|
9602
|
+
instruction_identification: T.nilable(String),
|
9603
|
+
return_reason_additional_information: T.nilable(String),
|
9662
9604
|
transaction_id: String,
|
9663
9605
|
wire_transfer_id: String
|
9664
9606
|
}
|
@@ -702,14 +702,14 @@ module Increase
|
|
702
702
|
sig { returns(Time) }
|
703
703
|
attr_accessor :created_at
|
704
704
|
|
705
|
+
# The debtor's routing number.
|
706
|
+
sig { returns(T.nilable(String)) }
|
707
|
+
attr_accessor :debtor_routing_number
|
708
|
+
|
705
709
|
# The description on the reversal message from Fedwire, set by the reversing bank.
|
706
710
|
sig { returns(String) }
|
707
711
|
attr_accessor :description
|
708
712
|
|
709
|
-
# Additional financial institution information included in the wire reversal.
|
710
|
-
sig { returns(T.nilable(String)) }
|
711
|
-
attr_accessor :financial_institution_to_financial_institution_information
|
712
|
-
|
713
713
|
# The Fedwire cycle date for the wire reversal. The "Fedwire day" begins at 9:00
|
714
714
|
# PM Eastern Time on the evening before the `cycle date`.
|
715
715
|
sig { returns(Date) }
|
@@ -727,40 +727,13 @@ module Increase
|
|
727
727
|
sig { returns(String) }
|
728
728
|
attr_accessor :input_source
|
729
729
|
|
730
|
-
# The
|
731
|
-
# the transfer.
|
732
|
-
sig { returns(T.nilable(String)) }
|
733
|
-
attr_accessor :originator_routing_number
|
734
|
-
|
735
|
-
# Additional information included in the wire reversal by the reversal originator.
|
736
|
-
sig { returns(T.nilable(String)) }
|
737
|
-
attr_accessor :originator_to_beneficiary_information
|
738
|
-
|
739
|
-
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
740
|
-
# message.
|
741
|
-
sig { returns(T.nilable(Date)) }
|
742
|
-
attr_accessor :previous_message_input_cycle_date
|
743
|
-
|
744
|
-
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
745
|
-
sig { returns(T.nilable(String)) }
|
746
|
-
attr_accessor :previous_message_input_message_accountability_data
|
747
|
-
|
748
|
-
# The Fedwire sequence number for the wire transfer that was reversed.
|
749
|
-
sig { returns(String) }
|
750
|
-
attr_accessor :previous_message_input_sequence_number
|
751
|
-
|
752
|
-
# The Fedwire input source identifier for the wire transfer that was reversed.
|
753
|
-
sig { returns(T.nilable(String)) }
|
754
|
-
attr_accessor :previous_message_input_source
|
755
|
-
|
756
|
-
# Information included in the wire reversal for the receiving financial
|
757
|
-
# institution.
|
730
|
+
# The sending bank's identifier for the reversal.
|
758
731
|
sig { returns(T.nilable(String)) }
|
759
|
-
attr_accessor :
|
732
|
+
attr_accessor :instruction_identification
|
760
733
|
|
761
|
-
#
|
734
|
+
# Additional information about the reason for the reversal.
|
762
735
|
sig { returns(T.nilable(String)) }
|
763
|
-
attr_accessor :
|
736
|
+
attr_accessor :return_reason_additional_information
|
764
737
|
|
765
738
|
# The ID for the Transaction associated with the transfer reversal.
|
766
739
|
sig { returns(String) }
|
@@ -775,22 +748,14 @@ module Increase
|
|
775
748
|
params(
|
776
749
|
amount: Integer,
|
777
750
|
created_at: Time,
|
751
|
+
debtor_routing_number: T.nilable(String),
|
778
752
|
description: String,
|
779
|
-
financial_institution_to_financial_institution_information:
|
780
|
-
T.nilable(String),
|
781
753
|
input_cycle_date: Date,
|
782
754
|
input_message_accountability_data: String,
|
783
755
|
input_sequence_number: String,
|
784
756
|
input_source: String,
|
785
|
-
|
786
|
-
|
787
|
-
previous_message_input_cycle_date: T.nilable(Date),
|
788
|
-
previous_message_input_message_accountability_data:
|
789
|
-
T.nilable(String),
|
790
|
-
previous_message_input_sequence_number: String,
|
791
|
-
previous_message_input_source: T.nilable(String),
|
792
|
-
receiver_financial_institution_information: T.nilable(String),
|
793
|
-
sender_reference: T.nilable(String),
|
757
|
+
instruction_identification: T.nilable(String),
|
758
|
+
return_reason_additional_information: T.nilable(String),
|
794
759
|
transaction_id: String,
|
795
760
|
wire_transfer_id: String
|
796
761
|
).returns(T.attached_class)
|
@@ -801,10 +766,10 @@ module Increase
|
|
801
766
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
802
767
|
# the reversal was created.
|
803
768
|
created_at:,
|
769
|
+
# The debtor's routing number.
|
770
|
+
debtor_routing_number:,
|
804
771
|
# The description on the reversal message from Fedwire, set by the reversing bank.
|
805
772
|
description:,
|
806
|
-
# Additional financial institution information included in the wire reversal.
|
807
|
-
financial_institution_to_financial_institution_information:,
|
808
773
|
# The Fedwire cycle date for the wire reversal. The "Fedwire day" begins at 9:00
|
809
774
|
# PM Eastern Time on the evening before the `cycle date`.
|
810
775
|
input_cycle_date:,
|
@@ -814,25 +779,10 @@ module Increase
|
|
814
779
|
input_sequence_number:,
|
815
780
|
# The Fedwire input source identifier.
|
816
781
|
input_source:,
|
817
|
-
# The
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
originator_to_beneficiary_information:,
|
822
|
-
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
823
|
-
# message.
|
824
|
-
previous_message_input_cycle_date:,
|
825
|
-
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
826
|
-
previous_message_input_message_accountability_data:,
|
827
|
-
# The Fedwire sequence number for the wire transfer that was reversed.
|
828
|
-
previous_message_input_sequence_number:,
|
829
|
-
# The Fedwire input source identifier for the wire transfer that was reversed.
|
830
|
-
previous_message_input_source:,
|
831
|
-
# Information included in the wire reversal for the receiving financial
|
832
|
-
# institution.
|
833
|
-
receiver_financial_institution_information:,
|
834
|
-
# The sending bank's reference number for the wire reversal.
|
835
|
-
sender_reference:,
|
782
|
+
# The sending bank's identifier for the reversal.
|
783
|
+
instruction_identification:,
|
784
|
+
# Additional information about the reason for the reversal.
|
785
|
+
return_reason_additional_information:,
|
836
786
|
# The ID for the Transaction associated with the transfer reversal.
|
837
787
|
transaction_id:,
|
838
788
|
# The ID for the Wire Transfer that is being reversed.
|
@@ -845,22 +795,14 @@ module Increase
|
|
845
795
|
{
|
846
796
|
amount: Integer,
|
847
797
|
created_at: Time,
|
798
|
+
debtor_routing_number: T.nilable(String),
|
848
799
|
description: String,
|
849
|
-
financial_institution_to_financial_institution_information:
|
850
|
-
T.nilable(String),
|
851
800
|
input_cycle_date: Date,
|
852
801
|
input_message_accountability_data: String,
|
853
802
|
input_sequence_number: String,
|
854
803
|
input_source: String,
|
855
|
-
|
856
|
-
|
857
|
-
previous_message_input_cycle_date: T.nilable(Date),
|
858
|
-
previous_message_input_message_accountability_data:
|
859
|
-
T.nilable(String),
|
860
|
-
previous_message_input_sequence_number: String,
|
861
|
-
previous_message_input_source: T.nilable(String),
|
862
|
-
receiver_financial_institution_information: T.nilable(String),
|
863
|
-
sender_reference: T.nilable(String),
|
804
|
+
instruction_identification: T.nilable(String),
|
805
|
+
return_reason_additional_information: T.nilable(String),
|
864
806
|
transaction_id: String,
|
865
807
|
wire_transfer_id: String
|
866
808
|
}
|
@@ -3902,20 +3902,14 @@ module Increase
|
|
3902
3902
|
{
|
3903
3903
|
amount: Integer,
|
3904
3904
|
created_at: Time,
|
3905
|
+
debtor_routing_number: String?,
|
3905
3906
|
description: String,
|
3906
|
-
financial_institution_to_financial_institution_information: String?,
|
3907
3907
|
input_cycle_date: Date,
|
3908
3908
|
input_message_accountability_data: String,
|
3909
3909
|
input_sequence_number: String,
|
3910
3910
|
input_source: String,
|
3911
|
-
|
3912
|
-
|
3913
|
-
previous_message_input_cycle_date: Date?,
|
3914
|
-
previous_message_input_message_accountability_data: String?,
|
3915
|
-
previous_message_input_sequence_number: String,
|
3916
|
-
previous_message_input_source: String?,
|
3917
|
-
receiver_financial_institution_information: String?,
|
3918
|
-
sender_reference: String?,
|
3911
|
+
instruction_identification: String?,
|
3912
|
+
return_reason_additional_information: String?,
|
3919
3913
|
transaction_id: String,
|
3920
3914
|
wire_transfer_id: String
|
3921
3915
|
}
|
@@ -3925,9 +3919,9 @@ module Increase
|
|
3925
3919
|
|
3926
3920
|
attr_accessor created_at: Time
|
3927
3921
|
|
3928
|
-
attr_accessor
|
3922
|
+
attr_accessor debtor_routing_number: String?
|
3929
3923
|
|
3930
|
-
attr_accessor
|
3924
|
+
attr_accessor description: String
|
3931
3925
|
|
3932
3926
|
attr_accessor input_cycle_date: Date
|
3933
3927
|
|
@@ -3937,21 +3931,9 @@ module Increase
|
|
3937
3931
|
|
3938
3932
|
attr_accessor input_source: String
|
3939
3933
|
|
3940
|
-
attr_accessor
|
3941
|
-
|
3942
|
-
attr_accessor originator_to_beneficiary_information: String?
|
3943
|
-
|
3944
|
-
attr_accessor previous_message_input_cycle_date: Date?
|
3945
|
-
|
3946
|
-
attr_accessor previous_message_input_message_accountability_data: String?
|
3947
|
-
|
3948
|
-
attr_accessor previous_message_input_sequence_number: String
|
3949
|
-
|
3950
|
-
attr_accessor previous_message_input_source: String?
|
3951
|
-
|
3952
|
-
attr_accessor receiver_financial_institution_information: String?
|
3934
|
+
attr_accessor instruction_identification: String?
|
3953
3935
|
|
3954
|
-
attr_accessor
|
3936
|
+
attr_accessor return_reason_additional_information: String?
|
3955
3937
|
|
3956
3938
|
attr_accessor transaction_id: String
|
3957
3939
|
|
@@ -3960,20 +3942,14 @@ module Increase
|
|
3960
3942
|
def initialize: (
|
3961
3943
|
amount: Integer,
|
3962
3944
|
created_at: Time,
|
3945
|
+
debtor_routing_number: String?,
|
3963
3946
|
description: String,
|
3964
|
-
financial_institution_to_financial_institution_information: String?,
|
3965
3947
|
input_cycle_date: Date,
|
3966
3948
|
input_message_accountability_data: String,
|
3967
3949
|
input_sequence_number: String,
|
3968
3950
|
input_source: String,
|
3969
|
-
|
3970
|
-
|
3971
|
-
previous_message_input_cycle_date: Date?,
|
3972
|
-
previous_message_input_message_accountability_data: String?,
|
3973
|
-
previous_message_input_sequence_number: String,
|
3974
|
-
previous_message_input_source: String?,
|
3975
|
-
receiver_financial_institution_information: String?,
|
3976
|
-
sender_reference: String?,
|
3951
|
+
instruction_identification: String?,
|
3952
|
+
return_reason_additional_information: String?,
|
3977
3953
|
transaction_id: String,
|
3978
3954
|
wire_transfer_id: String
|
3979
3955
|
) -> void
|
@@ -3981,20 +3957,14 @@ module Increase
|
|
3981
3957
|
def to_hash: -> {
|
3982
3958
|
amount: Integer,
|
3983
3959
|
created_at: Time,
|
3960
|
+
debtor_routing_number: String?,
|
3984
3961
|
description: String,
|
3985
|
-
financial_institution_to_financial_institution_information: String?,
|
3986
3962
|
input_cycle_date: Date,
|
3987
3963
|
input_message_accountability_data: String,
|
3988
3964
|
input_sequence_number: String,
|
3989
3965
|
input_source: String,
|
3990
|
-
|
3991
|
-
|
3992
|
-
previous_message_input_cycle_date: Date?,
|
3993
|
-
previous_message_input_message_accountability_data: String?,
|
3994
|
-
previous_message_input_sequence_number: String,
|
3995
|
-
previous_message_input_source: String?,
|
3996
|
-
receiver_financial_institution_information: String?,
|
3997
|
-
sender_reference: String?,
|
3966
|
+
instruction_identification: String?,
|
3967
|
+
return_reason_additional_information: String?,
|
3998
3968
|
transaction_id: String,
|
3999
3969
|
wire_transfer_id: String
|
4000
3970
|
}
|
@@ -304,20 +304,14 @@ module Increase
|
|
304
304
|
{
|
305
305
|
amount: Integer,
|
306
306
|
created_at: Time,
|
307
|
+
debtor_routing_number: String?,
|
307
308
|
description: String,
|
308
|
-
financial_institution_to_financial_institution_information: String?,
|
309
309
|
input_cycle_date: Date,
|
310
310
|
input_message_accountability_data: String,
|
311
311
|
input_sequence_number: String,
|
312
312
|
input_source: String,
|
313
|
-
|
314
|
-
|
315
|
-
previous_message_input_cycle_date: Date?,
|
316
|
-
previous_message_input_message_accountability_data: String?,
|
317
|
-
previous_message_input_sequence_number: String,
|
318
|
-
previous_message_input_source: String?,
|
319
|
-
receiver_financial_institution_information: String?,
|
320
|
-
sender_reference: String?,
|
313
|
+
instruction_identification: String?,
|
314
|
+
return_reason_additional_information: String?,
|
321
315
|
transaction_id: String,
|
322
316
|
wire_transfer_id: String
|
323
317
|
}
|
@@ -327,9 +321,9 @@ module Increase
|
|
327
321
|
|
328
322
|
attr_accessor created_at: Time
|
329
323
|
|
330
|
-
attr_accessor
|
324
|
+
attr_accessor debtor_routing_number: String?
|
331
325
|
|
332
|
-
attr_accessor
|
326
|
+
attr_accessor description: String
|
333
327
|
|
334
328
|
attr_accessor input_cycle_date: Date
|
335
329
|
|
@@ -339,21 +333,9 @@ module Increase
|
|
339
333
|
|
340
334
|
attr_accessor input_source: String
|
341
335
|
|
342
|
-
attr_accessor
|
343
|
-
|
344
|
-
attr_accessor originator_to_beneficiary_information: String?
|
345
|
-
|
346
|
-
attr_accessor previous_message_input_cycle_date: Date?
|
347
|
-
|
348
|
-
attr_accessor previous_message_input_message_accountability_data: String?
|
349
|
-
|
350
|
-
attr_accessor previous_message_input_sequence_number: String
|
351
|
-
|
352
|
-
attr_accessor previous_message_input_source: String?
|
353
|
-
|
354
|
-
attr_accessor receiver_financial_institution_information: String?
|
336
|
+
attr_accessor instruction_identification: String?
|
355
337
|
|
356
|
-
attr_accessor
|
338
|
+
attr_accessor return_reason_additional_information: String?
|
357
339
|
|
358
340
|
attr_accessor transaction_id: String
|
359
341
|
|
@@ -362,20 +344,14 @@ module Increase
|
|
362
344
|
def initialize: (
|
363
345
|
amount: Integer,
|
364
346
|
created_at: Time,
|
347
|
+
debtor_routing_number: String?,
|
365
348
|
description: String,
|
366
|
-
financial_institution_to_financial_institution_information: String?,
|
367
349
|
input_cycle_date: Date,
|
368
350
|
input_message_accountability_data: String,
|
369
351
|
input_sequence_number: String,
|
370
352
|
input_source: String,
|
371
|
-
|
372
|
-
|
373
|
-
previous_message_input_cycle_date: Date?,
|
374
|
-
previous_message_input_message_accountability_data: String?,
|
375
|
-
previous_message_input_sequence_number: String,
|
376
|
-
previous_message_input_source: String?,
|
377
|
-
receiver_financial_institution_information: String?,
|
378
|
-
sender_reference: String?,
|
353
|
+
instruction_identification: String?,
|
354
|
+
return_reason_additional_information: String?,
|
379
355
|
transaction_id: String,
|
380
356
|
wire_transfer_id: String
|
381
357
|
) -> void
|
@@ -383,20 +359,14 @@ module Increase
|
|
383
359
|
def to_hash: -> {
|
384
360
|
amount: Integer,
|
385
361
|
created_at: Time,
|
362
|
+
debtor_routing_number: String?,
|
386
363
|
description: String,
|
387
|
-
financial_institution_to_financial_institution_information: String?,
|
388
364
|
input_cycle_date: Date,
|
389
365
|
input_message_accountability_data: String,
|
390
366
|
input_sequence_number: String,
|
391
367
|
input_source: String,
|
392
|
-
|
393
|
-
|
394
|
-
previous_message_input_cycle_date: Date?,
|
395
|
-
previous_message_input_message_accountability_data: String?,
|
396
|
-
previous_message_input_sequence_number: String,
|
397
|
-
previous_message_input_source: String?,
|
398
|
-
receiver_financial_institution_information: String?,
|
399
|
-
sender_reference: String?,
|
368
|
+
instruction_identification: String?,
|
369
|
+
return_reason_additional_information: String?,
|
400
370
|
transaction_id: String,
|
401
371
|
wire_transfer_id: String
|
402
372
|
}
|