increase 1.44.0 → 1.46.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.
@@ -630,28 +630,6 @@ module Increase
630
630
  end
631
631
  attr_writer :inbound_real_time_payments_transfer_confirmation
632
632
 
633
- # An Inbound Real-Time Payments Transfer Decline object. This field will be
634
- # present in the JSON response if and only if `category` is equal to
635
- # `inbound_real_time_payments_transfer_decline`.
636
- sig do
637
- returns(
638
- T.nilable(
639
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline
640
- )
641
- )
642
- end
643
- attr_reader :inbound_real_time_payments_transfer_decline
644
-
645
- sig do
646
- params(
647
- inbound_real_time_payments_transfer_decline:
648
- T.nilable(
649
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::OrHash
650
- )
651
- ).void
652
- end
653
- attr_writer :inbound_real_time_payments_transfer_decline
654
-
655
633
  # An Inbound Wire Reversal object. This field will be present in the JSON response
656
634
  # if and only if `category` is equal to `inbound_wire_reversal`. An Inbound Wire
657
635
  # Reversal represents a reversal of a wire transfer that was initiated via
@@ -930,10 +908,6 @@ module Increase
930
908
  T.nilable(
931
909
  Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation::OrHash
932
910
  ),
933
- inbound_real_time_payments_transfer_decline:
934
- T.nilable(
935
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::OrHash
936
- ),
937
911
  inbound_wire_reversal:
938
912
  T.nilable(
939
913
  Increase::Transaction::Source::InboundWireReversal::OrHash
@@ -1085,10 +1059,6 @@ module Increase
1085
1059
  # Payments Transfer Confirmation is created when a Real-Time Payments transfer is
1086
1060
  # initiated at another bank and received by Increase.
1087
1061
  inbound_real_time_payments_transfer_confirmation:,
1088
- # An Inbound Real-Time Payments Transfer Decline object. This field will be
1089
- # present in the JSON response if and only if `category` is equal to
1090
- # `inbound_real_time_payments_transfer_decline`.
1091
- inbound_real_time_payments_transfer_decline:,
1092
1062
  # An Inbound Wire Reversal object. This field will be present in the JSON response
1093
1063
  # if and only if `category` is equal to `inbound_wire_reversal`. An Inbound Wire
1094
1064
  # Reversal represents a reversal of a wire transfer that was initiated via
@@ -1201,10 +1171,6 @@ module Increase
1201
1171
  T.nilable(
1202
1172
  Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation
1203
1173
  ),
1204
- inbound_real_time_payments_transfer_decline:
1205
- T.nilable(
1206
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline
1207
- ),
1208
1174
  inbound_wire_reversal:
1209
1175
  T.nilable(Increase::Transaction::Source::InboundWireReversal),
1210
1176
  inbound_wire_transfer:
@@ -7841,13 +7807,6 @@ module Increase
7841
7807
  Increase::Transaction::Source::Category::TaggedSymbol
7842
7808
  )
7843
7809
 
7844
- # Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
7845
- INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE =
7846
- T.let(
7847
- :inbound_real_time_payments_transfer_decline,
7848
- Increase::Transaction::Source::Category::TaggedSymbol
7849
- )
7850
-
7851
7810
  # Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
7852
7811
  INBOUND_WIRE_REVERSAL =
7853
7812
  T.let(
@@ -9474,268 +9433,6 @@ module Increase
9474
9433
  end
9475
9434
  end
9476
9435
 
9477
- class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
9478
- OrHash =
9479
- T.type_alias do
9480
- T.any(
9481
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline,
9482
- Increase::Internal::AnyHash
9483
- )
9484
- end
9485
-
9486
- # The declined amount in the minor unit of the destination account currency. For
9487
- # dollars, for example, this is cents.
9488
- sig { returns(Integer) }
9489
- attr_accessor :amount
9490
-
9491
- # The name the sender of the transfer specified as the recipient of the transfer.
9492
- sig { returns(String) }
9493
- attr_accessor :creditor_name
9494
-
9495
- # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
9496
- # transfer's currency. This will always be "USD" for a Real-Time Payments
9497
- # transfer.
9498
- sig do
9499
- returns(
9500
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
9501
- )
9502
- end
9503
- attr_accessor :currency
9504
-
9505
- # The account number of the account that sent the transfer.
9506
- sig { returns(String) }
9507
- attr_accessor :debtor_account_number
9508
-
9509
- # The name provided by the sender of the transfer.
9510
- sig { returns(String) }
9511
- attr_accessor :debtor_name
9512
-
9513
- # The routing number of the account that sent the transfer.
9514
- sig { returns(String) }
9515
- attr_accessor :debtor_routing_number
9516
-
9517
- # Why the transfer was declined.
9518
- sig do
9519
- returns(
9520
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
9521
- )
9522
- end
9523
- attr_accessor :reason
9524
-
9525
- # Additional information included with the transfer.
9526
- sig { returns(T.nilable(String)) }
9527
- attr_accessor :remittance_information
9528
-
9529
- # The Real-Time Payments network identification of the declined transfer.
9530
- sig { returns(String) }
9531
- attr_accessor :transaction_identification
9532
-
9533
- # The identifier of the Real-Time Payments Transfer that led to this Transaction.
9534
- sig { returns(String) }
9535
- attr_accessor :transfer_id
9536
-
9537
- # An Inbound Real-Time Payments Transfer Decline object. This field will be
9538
- # present in the JSON response if and only if `category` is equal to
9539
- # `inbound_real_time_payments_transfer_decline`.
9540
- sig do
9541
- params(
9542
- amount: Integer,
9543
- creditor_name: String,
9544
- currency:
9545
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::OrSymbol,
9546
- debtor_account_number: String,
9547
- debtor_name: String,
9548
- debtor_routing_number: String,
9549
- reason:
9550
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::OrSymbol,
9551
- remittance_information: T.nilable(String),
9552
- transaction_identification: String,
9553
- transfer_id: String
9554
- ).returns(T.attached_class)
9555
- end
9556
- def self.new(
9557
- # The declined amount in the minor unit of the destination account currency. For
9558
- # dollars, for example, this is cents.
9559
- amount:,
9560
- # The name the sender of the transfer specified as the recipient of the transfer.
9561
- creditor_name:,
9562
- # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
9563
- # transfer's currency. This will always be "USD" for a Real-Time Payments
9564
- # transfer.
9565
- currency:,
9566
- # The account number of the account that sent the transfer.
9567
- debtor_account_number:,
9568
- # The name provided by the sender of the transfer.
9569
- debtor_name:,
9570
- # The routing number of the account that sent the transfer.
9571
- debtor_routing_number:,
9572
- # Why the transfer was declined.
9573
- reason:,
9574
- # Additional information included with the transfer.
9575
- remittance_information:,
9576
- # The Real-Time Payments network identification of the declined transfer.
9577
- transaction_identification:,
9578
- # The identifier of the Real-Time Payments Transfer that led to this Transaction.
9579
- transfer_id:
9580
- )
9581
- end
9582
-
9583
- sig do
9584
- override.returns(
9585
- {
9586
- amount: Integer,
9587
- creditor_name: String,
9588
- currency:
9589
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol,
9590
- debtor_account_number: String,
9591
- debtor_name: String,
9592
- debtor_routing_number: String,
9593
- reason:
9594
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol,
9595
- remittance_information: T.nilable(String),
9596
- transaction_identification: String,
9597
- transfer_id: String
9598
- }
9599
- )
9600
- end
9601
- def to_hash
9602
- end
9603
-
9604
- # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the declined
9605
- # transfer's currency. This will always be "USD" for a Real-Time Payments
9606
- # transfer.
9607
- module Currency
9608
- extend Increase::Internal::Type::Enum
9609
-
9610
- TaggedSymbol =
9611
- T.type_alias do
9612
- T.all(
9613
- Symbol,
9614
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency
9615
- )
9616
- end
9617
- OrSymbol = T.type_alias { T.any(Symbol, String) }
9618
-
9619
- # Canadian Dollar (CAD)
9620
- CAD =
9621
- T.let(
9622
- :CAD,
9623
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
9624
- )
9625
-
9626
- # Swiss Franc (CHF)
9627
- CHF =
9628
- T.let(
9629
- :CHF,
9630
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
9631
- )
9632
-
9633
- # Euro (EUR)
9634
- EUR =
9635
- T.let(
9636
- :EUR,
9637
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
9638
- )
9639
-
9640
- # British Pound (GBP)
9641
- GBP =
9642
- T.let(
9643
- :GBP,
9644
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
9645
- )
9646
-
9647
- # Japanese Yen (JPY)
9648
- JPY =
9649
- T.let(
9650
- :JPY,
9651
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
9652
- )
9653
-
9654
- # US Dollar (USD)
9655
- USD =
9656
- T.let(
9657
- :USD,
9658
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
9659
- )
9660
-
9661
- sig do
9662
- override.returns(
9663
- T::Array[
9664
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Currency::TaggedSymbol
9665
- ]
9666
- )
9667
- end
9668
- def self.values
9669
- end
9670
- end
9671
-
9672
- # Why the transfer was declined.
9673
- module Reason
9674
- extend Increase::Internal::Type::Enum
9675
-
9676
- TaggedSymbol =
9677
- T.type_alias do
9678
- T.all(
9679
- Symbol,
9680
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason
9681
- )
9682
- end
9683
- OrSymbol = T.type_alias { T.any(Symbol, String) }
9684
-
9685
- # The account number is canceled.
9686
- ACCOUNT_NUMBER_CANCELED =
9687
- T.let(
9688
- :account_number_canceled,
9689
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
9690
- )
9691
-
9692
- # The account number is disabled.
9693
- ACCOUNT_NUMBER_DISABLED =
9694
- T.let(
9695
- :account_number_disabled,
9696
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
9697
- )
9698
-
9699
- # Your account is restricted.
9700
- ACCOUNT_RESTRICTED =
9701
- T.let(
9702
- :account_restricted,
9703
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
9704
- )
9705
-
9706
- # Your account is inactive.
9707
- GROUP_LOCKED =
9708
- T.let(
9709
- :group_locked,
9710
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
9711
- )
9712
-
9713
- # The account's entity is not active.
9714
- ENTITY_NOT_ACTIVE =
9715
- T.let(
9716
- :entity_not_active,
9717
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
9718
- )
9719
-
9720
- # Your account is not enabled to receive Real-Time Payments transfers.
9721
- REAL_TIME_PAYMENTS_NOT_ENABLED =
9722
- T.let(
9723
- :real_time_payments_not_enabled,
9724
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
9725
- )
9726
-
9727
- sig do
9728
- override.returns(
9729
- T::Array[
9730
- Increase::Transaction::Source::InboundRealTimePaymentsTransferDecline::Reason::TaggedSymbol
9731
- ]
9732
- )
9733
- end
9734
- def self.values
9735
- end
9736
- end
9737
- end
9738
-
9739
9436
  class InboundWireReversal < Increase::Internal::Type::BaseModel
9740
9437
  OrHash =
9741
9438
  T.type_alias do
@@ -9939,78 +9636,72 @@ module Increase
9939
9636
 
9940
9637
  # A free-form address field set by the sender.
9941
9638
  sig { returns(T.nilable(String)) }
9942
- attr_accessor :beneficiary_address_line1
9639
+ attr_accessor :creditor_address_line1
9943
9640
 
9944
9641
  # A free-form address field set by the sender.
9945
9642
  sig { returns(T.nilable(String)) }
9946
- attr_accessor :beneficiary_address_line2
9643
+ attr_accessor :creditor_address_line2
9947
9644
 
9948
9645
  # A free-form address field set by the sender.
9949
9646
  sig { returns(T.nilable(String)) }
9950
- attr_accessor :beneficiary_address_line3
9647
+ attr_accessor :creditor_address_line3
9951
9648
 
9952
9649
  # A name set by the sender.
9953
9650
  sig { returns(T.nilable(String)) }
9954
- attr_accessor :beneficiary_name
9651
+ attr_accessor :creditor_name
9955
9652
 
9956
- # A free-form reference string set by the sender, to help identify the transfer.
9653
+ # A free-form address field set by the sender.
9957
9654
  sig { returns(T.nilable(String)) }
9958
- attr_accessor :beneficiary_reference
9655
+ attr_accessor :debtor_address_line1
9959
9656
 
9960
- # An Increase-constructed description of the transfer.
9961
- sig { returns(String) }
9962
- attr_accessor :description
9963
-
9964
- # A unique identifier available to the originating and receiving banks, commonly
9965
- # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
9966
- # service and is helpful when debugging wires with the originating bank.
9657
+ # A free-form address field set by the sender.
9967
9658
  sig { returns(T.nilable(String)) }
9968
- attr_accessor :input_message_accountability_data
9659
+ attr_accessor :debtor_address_line2
9969
9660
 
9970
- # The address of the wire originator, set by the sending bank.
9661
+ # A free-form address field set by the sender.
9971
9662
  sig { returns(T.nilable(String)) }
9972
- attr_accessor :originator_address_line1
9663
+ attr_accessor :debtor_address_line3
9973
9664
 
9974
- # The address of the wire originator, set by the sending bank.
9665
+ # A name set by the sender.
9975
9666
  sig { returns(T.nilable(String)) }
9976
- attr_accessor :originator_address_line2
9667
+ attr_accessor :debtor_name
9977
9668
 
9978
- # The address of the wire originator, set by the sending bank.
9979
- sig { returns(T.nilable(String)) }
9980
- attr_accessor :originator_address_line3
9669
+ # An Increase-constructed description of the transfer.
9670
+ sig { returns(String) }
9671
+ attr_accessor :description
9981
9672
 
9982
- # The originator of the wire, set by the sending bank.
9673
+ # A free-form reference string set by the sender, to help identify the transfer.
9983
9674
  sig { returns(T.nilable(String)) }
9984
- attr_accessor :originator_name
9675
+ attr_accessor :end_to_end_identification
9985
9676
 
9986
- # The American Banking Association (ABA) routing number of the bank originating
9987
- # the transfer.
9677
+ # A unique identifier available to the originating and receiving banks, commonly
9678
+ # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
9679
+ # service and is helpful when debugging wires with the originating bank.
9988
9680
  sig { returns(T.nilable(String)) }
9989
- attr_accessor :originator_routing_number
9681
+ attr_accessor :input_message_accountability_data
9990
9682
 
9991
- # An Increase-created concatenation of the Originator-to-Beneficiary lines.
9683
+ # The American Banking Association (ABA) routing number of the bank that sent the
9684
+ # wire.
9992
9685
  sig { returns(T.nilable(String)) }
9993
- attr_accessor :originator_to_beneficiary_information
9686
+ attr_accessor :instructing_agent_routing_number
9994
9687
 
9995
- # A free-form message set by the wire originator.
9688
+ # The sending bank's identifier for the wire transfer.
9996
9689
  sig { returns(T.nilable(String)) }
9997
- attr_accessor :originator_to_beneficiary_information_line1
9690
+ attr_accessor :instruction_identification
9998
9691
 
9999
- # A free-form message set by the wire originator.
10000
- sig { returns(T.nilable(String)) }
10001
- attr_accessor :originator_to_beneficiary_information_line2
9692
+ # The ID of the Inbound Wire Transfer object that resulted in this Transaction.
9693
+ sig { returns(String) }
9694
+ attr_accessor :transfer_id
10002
9695
 
10003
- # A free-form message set by the wire originator.
9696
+ # The Unique End-to-end Transaction Reference
9697
+ # ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
9698
+ # of the transfer.
10004
9699
  sig { returns(T.nilable(String)) }
10005
- attr_accessor :originator_to_beneficiary_information_line3
9700
+ attr_accessor :unique_end_to_end_transaction_reference
10006
9701
 
10007
- # A free-form message set by the wire originator.
9702
+ # A free-form message set by the sender.
10008
9703
  sig { returns(T.nilable(String)) }
10009
- attr_accessor :originator_to_beneficiary_information_line4
10010
-
10011
- # The ID of the Inbound Wire Transfer object that resulted in this Transaction.
10012
- sig { returns(String) }
10013
- attr_accessor :transfer_id
9704
+ attr_accessor :unstructured_remittance_information
10014
9705
 
10015
9706
  # An Inbound Wire Transfer Intention object. This field will be present in the
10016
9707
  # JSON response if and only if `category` is equal to `inbound_wire_transfer`. An
@@ -10019,68 +9710,64 @@ module Increase
10019
9710
  sig do
10020
9711
  params(
10021
9712
  amount: Integer,
10022
- beneficiary_address_line1: T.nilable(String),
10023
- beneficiary_address_line2: T.nilable(String),
10024
- beneficiary_address_line3: T.nilable(String),
10025
- beneficiary_name: T.nilable(String),
10026
- beneficiary_reference: T.nilable(String),
9713
+ creditor_address_line1: T.nilable(String),
9714
+ creditor_address_line2: T.nilable(String),
9715
+ creditor_address_line3: T.nilable(String),
9716
+ creditor_name: T.nilable(String),
9717
+ debtor_address_line1: T.nilable(String),
9718
+ debtor_address_line2: T.nilable(String),
9719
+ debtor_address_line3: T.nilable(String),
9720
+ debtor_name: T.nilable(String),
10027
9721
  description: String,
9722
+ end_to_end_identification: T.nilable(String),
10028
9723
  input_message_accountability_data: T.nilable(String),
10029
- originator_address_line1: T.nilable(String),
10030
- originator_address_line2: T.nilable(String),
10031
- originator_address_line3: T.nilable(String),
10032
- originator_name: T.nilable(String),
10033
- originator_routing_number: T.nilable(String),
10034
- originator_to_beneficiary_information: T.nilable(String),
10035
- originator_to_beneficiary_information_line1: T.nilable(String),
10036
- originator_to_beneficiary_information_line2: T.nilable(String),
10037
- originator_to_beneficiary_information_line3: T.nilable(String),
10038
- originator_to_beneficiary_information_line4: T.nilable(String),
10039
- transfer_id: String
9724
+ instructing_agent_routing_number: T.nilable(String),
9725
+ instruction_identification: T.nilable(String),
9726
+ transfer_id: String,
9727
+ unique_end_to_end_transaction_reference: T.nilable(String),
9728
+ unstructured_remittance_information: T.nilable(String)
10040
9729
  ).returns(T.attached_class)
10041
9730
  end
10042
9731
  def self.new(
10043
9732
  # The amount in USD cents.
10044
9733
  amount:,
10045
9734
  # A free-form address field set by the sender.
10046
- beneficiary_address_line1:,
9735
+ creditor_address_line1:,
10047
9736
  # A free-form address field set by the sender.
10048
- beneficiary_address_line2:,
9737
+ creditor_address_line2:,
10049
9738
  # A free-form address field set by the sender.
10050
- beneficiary_address_line3:,
9739
+ creditor_address_line3:,
10051
9740
  # A name set by the sender.
10052
- beneficiary_name:,
10053
- # A free-form reference string set by the sender, to help identify the transfer.
10054
- beneficiary_reference:,
9741
+ creditor_name:,
9742
+ # A free-form address field set by the sender.
9743
+ debtor_address_line1:,
9744
+ # A free-form address field set by the sender.
9745
+ debtor_address_line2:,
9746
+ # A free-form address field set by the sender.
9747
+ debtor_address_line3:,
9748
+ # A name set by the sender.
9749
+ debtor_name:,
10055
9750
  # An Increase-constructed description of the transfer.
10056
9751
  description:,
9752
+ # A free-form reference string set by the sender, to help identify the transfer.
9753
+ end_to_end_identification:,
10057
9754
  # A unique identifier available to the originating and receiving banks, commonly
10058
9755
  # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
10059
9756
  # service and is helpful when debugging wires with the originating bank.
10060
9757
  input_message_accountability_data:,
10061
- # The address of the wire originator, set by the sending bank.
10062
- originator_address_line1:,
10063
- # The address of the wire originator, set by the sending bank.
10064
- originator_address_line2:,
10065
- # The address of the wire originator, set by the sending bank.
10066
- originator_address_line3:,
10067
- # The originator of the wire, set by the sending bank.
10068
- originator_name:,
10069
- # The American Banking Association (ABA) routing number of the bank originating
10070
- # the transfer.
10071
- originator_routing_number:,
10072
- # An Increase-created concatenation of the Originator-to-Beneficiary lines.
10073
- originator_to_beneficiary_information:,
10074
- # A free-form message set by the wire originator.
10075
- originator_to_beneficiary_information_line1:,
10076
- # A free-form message set by the wire originator.
10077
- originator_to_beneficiary_information_line2:,
10078
- # A free-form message set by the wire originator.
10079
- originator_to_beneficiary_information_line3:,
10080
- # A free-form message set by the wire originator.
10081
- originator_to_beneficiary_information_line4:,
9758
+ # The American Banking Association (ABA) routing number of the bank that sent the
9759
+ # wire.
9760
+ instructing_agent_routing_number:,
9761
+ # The sending bank's identifier for the wire transfer.
9762
+ instruction_identification:,
10082
9763
  # The ID of the Inbound Wire Transfer object that resulted in this Transaction.
10083
- transfer_id:
9764
+ transfer_id:,
9765
+ # The Unique End-to-end Transaction Reference
9766
+ # ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
9767
+ # of the transfer.
9768
+ unique_end_to_end_transaction_reference:,
9769
+ # A free-form message set by the sender.
9770
+ unstructured_remittance_information:
10084
9771
  )
10085
9772
  end
10086
9773
 
@@ -10088,24 +9775,22 @@ module Increase
10088
9775
  override.returns(
10089
9776
  {
10090
9777
  amount: Integer,
10091
- beneficiary_address_line1: T.nilable(String),
10092
- beneficiary_address_line2: T.nilable(String),
10093
- beneficiary_address_line3: T.nilable(String),
10094
- beneficiary_name: T.nilable(String),
10095
- beneficiary_reference: T.nilable(String),
9778
+ creditor_address_line1: T.nilable(String),
9779
+ creditor_address_line2: T.nilable(String),
9780
+ creditor_address_line3: T.nilable(String),
9781
+ creditor_name: T.nilable(String),
9782
+ debtor_address_line1: T.nilable(String),
9783
+ debtor_address_line2: T.nilable(String),
9784
+ debtor_address_line3: T.nilable(String),
9785
+ debtor_name: T.nilable(String),
10096
9786
  description: String,
9787
+ end_to_end_identification: T.nilable(String),
10097
9788
  input_message_accountability_data: T.nilable(String),
10098
- originator_address_line1: T.nilable(String),
10099
- originator_address_line2: T.nilable(String),
10100
- originator_address_line3: T.nilable(String),
10101
- originator_name: T.nilable(String),
10102
- originator_routing_number: T.nilable(String),
10103
- originator_to_beneficiary_information: T.nilable(String),
10104
- originator_to_beneficiary_information_line1: T.nilable(String),
10105
- originator_to_beneficiary_information_line2: T.nilable(String),
10106
- originator_to_beneficiary_information_line3: T.nilable(String),
10107
- originator_to_beneficiary_information_line4: T.nilable(String),
10108
- transfer_id: String
9789
+ instructing_agent_routing_number: T.nilable(String),
9790
+ instruction_identification: T.nilable(String),
9791
+ transfer_id: String,
9792
+ unique_end_to_end_transaction_reference: T.nilable(String),
9793
+ unstructured_remittance_information: T.nilable(String)
10109
9794
  }
10110
9795
  )
10111
9796
  end
@@ -306,13 +306,6 @@ module Increase
306
306
  Increase::TransactionListParams::Category::In::TaggedSymbol
307
307
  )
308
308
 
309
- # Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
310
- INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE =
311
- T.let(
312
- :inbound_real_time_payments_transfer_decline,
313
- Increase::TransactionListParams::Category::In::TaggedSymbol
314
- )
315
-
316
309
  # Inbound Wire Reversal: details will be under the `inbound_wire_reversal` object.
317
310
  INBOUND_WIRE_REVERSAL =
318
311
  T.let(