increase 1.52.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/ach_transfer.rb +1 -9
- data/lib/increase/models/check_deposit.rb +1 -9
- data/lib/increase/models/pending_transaction.rb +1 -9
- 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/ach_transfer.rbi +0 -8
- data/rbi/increase/models/check_deposit.rbi +0 -8
- data/rbi/increase/models/pending_transaction.rbi +0 -8
- data/rbi/increase/models/transaction.rbi +20 -78
- data/rbi/increase/models/wire_transfer.rbi +20 -78
- data/sig/increase/models/ach_transfer.rbs +0 -5
- data/sig/increase/models/check_deposit.rbs +0 -5
- data/sig/increase/models/pending_transaction.rbs +0 -5
- data/sig/increase/models/transaction.rbs +13 -43
- data/sig/increase/models/wire_transfer.rbs +13 -43
- metadata +2 -2
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,21 @@
|
|
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
|
+
|
11
|
+
## 1.53.0 (2025-08-26)
|
12
|
+
|
13
|
+
Full Changelog: [v1.52.0...v1.53.0](https://github.com/Increase/increase-ruby/compare/v1.52.0...v1.53.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([0978f47](https://github.com/Increase/increase-ruby/commit/0978f470ead5ad55589045b5f9317e7aff10cb65))
|
18
|
+
|
3
19
|
## 1.52.0 (2025-08-26)
|
4
20
|
|
5
21
|
Full Changelog: [v1.51.0...v1.52.0](https://github.com/Increase/increase-ruby/compare/v1.51.0...v1.52.0)
|
data/README.md
CHANGED
@@ -694,12 +694,6 @@ module Increase
|
|
694
694
|
|
695
695
|
# @see Increase::Models::ACHTransfer#inbound_funds_hold
|
696
696
|
class InboundFundsHold < Increase::Internal::Type::BaseModel
|
697
|
-
# @!attribute id
|
698
|
-
# The Inbound Funds Hold identifier.
|
699
|
-
#
|
700
|
-
# @return [String]
|
701
|
-
required :id, String
|
702
|
-
|
703
697
|
# @!attribute amount
|
704
698
|
# The held amount in the minor unit of the account's currency. For dollars, for
|
705
699
|
# example, this is cents.
|
@@ -759,15 +753,13 @@ module Increase
|
|
759
753
|
# @return [Symbol, Increase::Models::ACHTransfer::InboundFundsHold::Type]
|
760
754
|
required :type, enum: -> { Increase::ACHTransfer::InboundFundsHold::Type }
|
761
755
|
|
762
|
-
# @!method initialize(
|
756
|
+
# @!method initialize(amount:, automatically_releases_at:, created_at:, currency:, held_transaction_id:, pending_transaction_id:, released_at:, status:, type:)
|
763
757
|
# Some parameter documentations has been truncated, see
|
764
758
|
# {Increase::Models::ACHTransfer::InboundFundsHold} for more details.
|
765
759
|
#
|
766
760
|
# Increase will sometimes hold the funds for ACH debit transfers. If funds are
|
767
761
|
# held, this sub-object will contain details of the hold.
|
768
762
|
#
|
769
|
-
# @param id [String] The Inbound Funds Hold identifier.
|
770
|
-
#
|
771
763
|
# @param amount [Integer] The held amount in the minor unit of the account's currency. For dollars, for ex
|
772
764
|
#
|
773
765
|
# @param automatically_releases_at [Time] When the hold will be released automatically. Certain conditions may cause it to
|
@@ -617,12 +617,6 @@ module Increase
|
|
617
617
|
|
618
618
|
# @see Increase::Models::CheckDeposit#inbound_funds_hold
|
619
619
|
class InboundFundsHold < Increase::Internal::Type::BaseModel
|
620
|
-
# @!attribute id
|
621
|
-
# The Inbound Funds Hold identifier.
|
622
|
-
#
|
623
|
-
# @return [String]
|
624
|
-
required :id, String
|
625
|
-
|
626
620
|
# @!attribute amount
|
627
621
|
# The held amount in the minor unit of the account's currency. For dollars, for
|
628
622
|
# example, this is cents.
|
@@ -682,15 +676,13 @@ module Increase
|
|
682
676
|
# @return [Symbol, Increase::Models::CheckDeposit::InboundFundsHold::Type]
|
683
677
|
required :type, enum: -> { Increase::CheckDeposit::InboundFundsHold::Type }
|
684
678
|
|
685
|
-
# @!method initialize(
|
679
|
+
# @!method initialize(amount:, automatically_releases_at:, created_at:, currency:, held_transaction_id:, pending_transaction_id:, released_at:, status:, type:)
|
686
680
|
# Some parameter documentations has been truncated, see
|
687
681
|
# {Increase::Models::CheckDeposit::InboundFundsHold} for more details.
|
688
682
|
#
|
689
683
|
# Increase will sometimes hold the funds for Check Deposits. If funds are held,
|
690
684
|
# this sub-object will contain details of the hold.
|
691
685
|
#
|
692
|
-
# @param id [String] The Inbound Funds Hold identifier.
|
693
|
-
#
|
694
686
|
# @param amount [Integer] The held amount in the minor unit of the account's currency. For dollars, for ex
|
695
687
|
#
|
696
688
|
# @param automatically_releases_at [Time] When the hold will be released automatically. Certain conditions may cause it to
|
@@ -1801,12 +1801,6 @@ module Increase
|
|
1801
1801
|
|
1802
1802
|
# @see Increase::Models::PendingTransaction::Source#inbound_funds_hold
|
1803
1803
|
class InboundFundsHold < Increase::Internal::Type::BaseModel
|
1804
|
-
# @!attribute id
|
1805
|
-
# The Inbound Funds Hold identifier.
|
1806
|
-
#
|
1807
|
-
# @return [String]
|
1808
|
-
required :id, String
|
1809
|
-
|
1810
1804
|
# @!attribute amount
|
1811
1805
|
# The held amount in the minor unit of the account's currency. For dollars, for
|
1812
1806
|
# example, this is cents.
|
@@ -1866,7 +1860,7 @@ module Increase
|
|
1866
1860
|
# @return [Symbol, Increase::Models::PendingTransaction::Source::InboundFundsHold::Type]
|
1867
1861
|
required :type, enum: -> { Increase::PendingTransaction::Source::InboundFundsHold::Type }
|
1868
1862
|
|
1869
|
-
# @!method initialize(
|
1863
|
+
# @!method initialize(amount:, automatically_releases_at:, created_at:, currency:, held_transaction_id:, pending_transaction_id:, released_at:, status:, type:)
|
1870
1864
|
# Some parameter documentations has been truncated, see
|
1871
1865
|
# {Increase::Models::PendingTransaction::Source::InboundFundsHold} for more
|
1872
1866
|
# details.
|
@@ -1876,8 +1870,6 @@ module Increase
|
|
1876
1870
|
# certain transaction types to account for return windows where funds might still
|
1877
1871
|
# be clawed back by the sending institution.
|
1878
1872
|
#
|
1879
|
-
# @param id [String] The Inbound Funds Hold identifier.
|
1880
|
-
#
|
1881
1873
|
# @param amount [Integer] The held amount in the minor unit of the account's currency. For dollars, for ex
|
1882
1874
|
#
|
1883
1875
|
# @param automatically_releases_at [Time] When the hold will be released automatically. Certain conditions may cause it to
|
@@ -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
@@ -1179,10 +1179,6 @@ module Increase
|
|
1179
1179
|
)
|
1180
1180
|
end
|
1181
1181
|
|
1182
|
-
# The Inbound Funds Hold identifier.
|
1183
|
-
sig { returns(String) }
|
1184
|
-
attr_accessor :id
|
1185
|
-
|
1186
1182
|
# The held amount in the minor unit of the account's currency. For dollars, for
|
1187
1183
|
# example, this is cents.
|
1188
1184
|
sig { returns(Integer) }
|
@@ -1236,7 +1232,6 @@ module Increase
|
|
1236
1232
|
# held, this sub-object will contain details of the hold.
|
1237
1233
|
sig do
|
1238
1234
|
params(
|
1239
|
-
id: String,
|
1240
1235
|
amount: Integer,
|
1241
1236
|
automatically_releases_at: Time,
|
1242
1237
|
created_at: Time,
|
@@ -1250,8 +1245,6 @@ module Increase
|
|
1250
1245
|
).returns(T.attached_class)
|
1251
1246
|
end
|
1252
1247
|
def self.new(
|
1253
|
-
# The Inbound Funds Hold identifier.
|
1254
|
-
id:,
|
1255
1248
|
# The held amount in the minor unit of the account's currency. For dollars, for
|
1256
1249
|
# example, this is cents.
|
1257
1250
|
amount:,
|
@@ -1281,7 +1274,6 @@ module Increase
|
|
1281
1274
|
sig do
|
1282
1275
|
override.returns(
|
1283
1276
|
{
|
1284
|
-
id: String,
|
1285
1277
|
amount: Integer,
|
1286
1278
|
automatically_releases_at: Time,
|
1287
1279
|
created_at: Time,
|
@@ -1088,10 +1088,6 @@ module Increase
|
|
1088
1088
|
)
|
1089
1089
|
end
|
1090
1090
|
|
1091
|
-
# The Inbound Funds Hold identifier.
|
1092
|
-
sig { returns(String) }
|
1093
|
-
attr_accessor :id
|
1094
|
-
|
1095
1091
|
# The held amount in the minor unit of the account's currency. For dollars, for
|
1096
1092
|
# example, this is cents.
|
1097
1093
|
sig { returns(Integer) }
|
@@ -1147,7 +1143,6 @@ module Increase
|
|
1147
1143
|
# this sub-object will contain details of the hold.
|
1148
1144
|
sig do
|
1149
1145
|
params(
|
1150
|
-
id: String,
|
1151
1146
|
amount: Integer,
|
1152
1147
|
automatically_releases_at: Time,
|
1153
1148
|
created_at: Time,
|
@@ -1161,8 +1156,6 @@ module Increase
|
|
1161
1156
|
).returns(T.attached_class)
|
1162
1157
|
end
|
1163
1158
|
def self.new(
|
1164
|
-
# The Inbound Funds Hold identifier.
|
1165
|
-
id:,
|
1166
1159
|
# The held amount in the minor unit of the account's currency. For dollars, for
|
1167
1160
|
# example, this is cents.
|
1168
1161
|
amount:,
|
@@ -1192,7 +1185,6 @@ module Increase
|
|
1192
1185
|
sig do
|
1193
1186
|
override.returns(
|
1194
1187
|
{
|
1195
|
-
id: String,
|
1196
1188
|
amount: Integer,
|
1197
1189
|
automatically_releases_at: Time,
|
1198
1190
|
created_at: Time,
|
@@ -3409,10 +3409,6 @@ module Increase
|
|
3409
3409
|
)
|
3410
3410
|
end
|
3411
3411
|
|
3412
|
-
# The Inbound Funds Hold identifier.
|
3413
|
-
sig { returns(String) }
|
3414
|
-
attr_accessor :id
|
3415
|
-
|
3416
3412
|
# The held amount in the minor unit of the account's currency. For dollars, for
|
3417
3413
|
# example, this is cents.
|
3418
3414
|
sig { returns(Integer) }
|
@@ -3472,7 +3468,6 @@ module Increase
|
|
3472
3468
|
# be clawed back by the sending institution.
|
3473
3469
|
sig do
|
3474
3470
|
params(
|
3475
|
-
id: String,
|
3476
3471
|
amount: Integer,
|
3477
3472
|
automatically_releases_at: Time,
|
3478
3473
|
created_at: Time,
|
@@ -3488,8 +3483,6 @@ module Increase
|
|
3488
3483
|
).returns(T.attached_class)
|
3489
3484
|
end
|
3490
3485
|
def self.new(
|
3491
|
-
# The Inbound Funds Hold identifier.
|
3492
|
-
id:,
|
3493
3486
|
# The held amount in the minor unit of the account's currency. For dollars, for
|
3494
3487
|
# example, this is cents.
|
3495
3488
|
amount:,
|
@@ -3519,7 +3512,6 @@ module Increase
|
|
3519
3512
|
sig do
|
3520
3513
|
override.returns(
|
3521
3514
|
{
|
3522
|
-
id: String,
|
3523
3515
|
amount: Integer,
|
3524
3516
|
automatically_releases_at: Time,
|
3525
3517
|
created_at: Time,
|
@@ -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
|
}
|
@@ -467,7 +467,6 @@ module Increase
|
|
467
467
|
|
468
468
|
type inbound_funds_hold =
|
469
469
|
{
|
470
|
-
id: String,
|
471
470
|
amount: Integer,
|
472
471
|
automatically_releases_at: Time,
|
473
472
|
created_at: Time,
|
@@ -480,8 +479,6 @@ module Increase
|
|
480
479
|
}
|
481
480
|
|
482
481
|
class InboundFundsHold < Increase::Internal::Type::BaseModel
|
483
|
-
attr_accessor id: String
|
484
|
-
|
485
482
|
attr_accessor amount: Integer
|
486
483
|
|
487
484
|
attr_accessor automatically_releases_at: Time
|
@@ -501,7 +498,6 @@ module Increase
|
|
501
498
|
attr_accessor type: Increase::Models::ACHTransfer::InboundFundsHold::type_
|
502
499
|
|
503
500
|
def initialize: (
|
504
|
-
id: String,
|
505
501
|
amount: Integer,
|
506
502
|
automatically_releases_at: Time,
|
507
503
|
created_at: Time,
|
@@ -514,7 +510,6 @@ module Increase
|
|
514
510
|
) -> void
|
515
511
|
|
516
512
|
def to_hash: -> {
|
517
|
-
id: String,
|
518
513
|
amount: Integer,
|
519
514
|
automatically_releases_at: Time,
|
520
515
|
created_at: Time,
|
@@ -499,7 +499,6 @@ module Increase
|
|
499
499
|
|
500
500
|
type inbound_funds_hold =
|
501
501
|
{
|
502
|
-
id: String,
|
503
502
|
amount: Integer,
|
504
503
|
automatically_releases_at: Time,
|
505
504
|
created_at: Time,
|
@@ -512,8 +511,6 @@ module Increase
|
|
512
511
|
}
|
513
512
|
|
514
513
|
class InboundFundsHold < Increase::Internal::Type::BaseModel
|
515
|
-
attr_accessor id: String
|
516
|
-
|
517
514
|
attr_accessor amount: Integer
|
518
515
|
|
519
516
|
attr_accessor automatically_releases_at: Time
|
@@ -533,7 +530,6 @@ module Increase
|
|
533
530
|
attr_accessor type: Increase::Models::CheckDeposit::InboundFundsHold::type_
|
534
531
|
|
535
532
|
def initialize: (
|
536
|
-
id: String,
|
537
533
|
amount: Integer,
|
538
534
|
automatically_releases_at: Time,
|
539
535
|
created_at: Time,
|
@@ -546,7 +542,6 @@ module Increase
|
|
546
542
|
) -> void
|
547
543
|
|
548
544
|
def to_hash: -> {
|
549
|
-
id: String,
|
550
545
|
amount: Integer,
|
551
546
|
automatically_releases_at: Time,
|
552
547
|
created_at: Time,
|
@@ -1234,7 +1234,6 @@ module Increase
|
|
1234
1234
|
|
1235
1235
|
type inbound_funds_hold =
|
1236
1236
|
{
|
1237
|
-
id: String,
|
1238
1237
|
amount: Integer,
|
1239
1238
|
automatically_releases_at: Time,
|
1240
1239
|
created_at: Time,
|
@@ -1247,8 +1246,6 @@ module Increase
|
|
1247
1246
|
}
|
1248
1247
|
|
1249
1248
|
class InboundFundsHold < Increase::Internal::Type::BaseModel
|
1250
|
-
attr_accessor id: String
|
1251
|
-
|
1252
1249
|
attr_accessor amount: Integer
|
1253
1250
|
|
1254
1251
|
attr_accessor automatically_releases_at: Time
|
@@ -1268,7 +1265,6 @@ module Increase
|
|
1268
1265
|
attr_accessor type: Increase::Models::PendingTransaction::Source::InboundFundsHold::type_
|
1269
1266
|
|
1270
1267
|
def initialize: (
|
1271
|
-
id: String,
|
1272
1268
|
amount: Integer,
|
1273
1269
|
automatically_releases_at: Time,
|
1274
1270
|
created_at: Time,
|
@@ -1281,7 +1277,6 @@ module Increase
|
|
1281
1277
|
) -> void
|
1282
1278
|
|
1283
1279
|
def to_hash: -> {
|
1284
|
-
id: String,
|
1285
1280
|
amount: Integer,
|
1286
1281
|
automatically_releases_at: Time,
|
1287
1282
|
created_at: Time,
|
@@ -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
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: increase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.54.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|