increase 1.44.0 → 1.45.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 +68 -82
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/transaction.rbi +89 -101
- data/sig/increase/models/transaction.rbs +58 -68
- 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: 431395a873284959b6ee1cec56827151e085e2b449210cbcd723f1ebbf66f179
|
4
|
+
data.tar.gz: fcd70add2911e34f155c3ae03650b5319a30c8e46c3d0735a4c81fa7acd838e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cdd9893bc8e7146d3bca680e7f2dd32a67f67049ecb936026886d8aacb722a9ec502e7b6e95bafa72a08a446e5d8f44107d7a774a985e5bce03032d665893027
|
7
|
+
data.tar.gz: 80dc84c9f1e51ecb046e1e578be197c2c29db3c161a74ca91e78fe01a7823c9df4ccfd56b94366d9458a7ff4c780cbcc6186840e67e2c952a5da63bbf9a73661
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.45.0 (2025-08-21)
|
4
|
+
|
5
|
+
Full Changelog: [v1.44.0...v1.45.0](https://github.com/Increase/increase-ruby/compare/v1.44.0...v1.45.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([080fb56](https://github.com/Increase/increase-ruby/commit/080fb56c431f8d633420675e0a22759401d22b85))
|
10
|
+
|
3
11
|
## 1.44.0 (2025-08-21)
|
4
12
|
|
5
13
|
Full Changelog: [v1.43.0...v1.44.0](https://github.com/Increase/increase-ruby/compare/v1.43.0...v1.44.0)
|
data/README.md
CHANGED
@@ -5421,118 +5421,108 @@ module Increase
|
|
5421
5421
|
# @return [Integer]
|
5422
5422
|
required :amount, Integer
|
5423
5423
|
|
5424
|
-
# @!attribute
|
5424
|
+
# @!attribute creditor_address_line1
|
5425
5425
|
# A free-form address field set by the sender.
|
5426
5426
|
#
|
5427
5427
|
# @return [String, nil]
|
5428
|
-
required :
|
5428
|
+
required :creditor_address_line1, String, nil?: true
|
5429
5429
|
|
5430
|
-
# @!attribute
|
5430
|
+
# @!attribute creditor_address_line2
|
5431
5431
|
# A free-form address field set by the sender.
|
5432
5432
|
#
|
5433
5433
|
# @return [String, nil]
|
5434
|
-
required :
|
5434
|
+
required :creditor_address_line2, String, nil?: true
|
5435
5435
|
|
5436
|
-
# @!attribute
|
5436
|
+
# @!attribute creditor_address_line3
|
5437
5437
|
# A free-form address field set by the sender.
|
5438
5438
|
#
|
5439
5439
|
# @return [String, nil]
|
5440
|
-
required :
|
5440
|
+
required :creditor_address_line3, String, nil?: true
|
5441
5441
|
|
5442
|
-
# @!attribute
|
5442
|
+
# @!attribute creditor_name
|
5443
5443
|
# A name set by the sender.
|
5444
5444
|
#
|
5445
5445
|
# @return [String, nil]
|
5446
|
-
required :
|
5446
|
+
required :creditor_name, String, nil?: true
|
5447
5447
|
|
5448
|
-
# @!attribute
|
5449
|
-
# A free-form
|
5448
|
+
# @!attribute debtor_address_line1
|
5449
|
+
# A free-form address field set by the sender.
|
5450
5450
|
#
|
5451
5451
|
# @return [String, nil]
|
5452
|
-
required :
|
5453
|
-
|
5454
|
-
# @!attribute description
|
5455
|
-
# An Increase-constructed description of the transfer.
|
5456
|
-
#
|
5457
|
-
# @return [String]
|
5458
|
-
required :description, String
|
5452
|
+
required :debtor_address_line1, String, nil?: true
|
5459
5453
|
|
5460
|
-
# @!attribute
|
5461
|
-
# A
|
5462
|
-
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
5463
|
-
# service and is helpful when debugging wires with the originating bank.
|
5454
|
+
# @!attribute debtor_address_line2
|
5455
|
+
# A free-form address field set by the sender.
|
5464
5456
|
#
|
5465
5457
|
# @return [String, nil]
|
5466
|
-
required :
|
5458
|
+
required :debtor_address_line2, String, nil?: true
|
5467
5459
|
|
5468
|
-
# @!attribute
|
5469
|
-
#
|
5460
|
+
# @!attribute debtor_address_line3
|
5461
|
+
# A free-form address field set by the sender.
|
5470
5462
|
#
|
5471
5463
|
# @return [String, nil]
|
5472
|
-
required :
|
5464
|
+
required :debtor_address_line3, String, nil?: true
|
5473
5465
|
|
5474
|
-
# @!attribute
|
5475
|
-
#
|
5466
|
+
# @!attribute debtor_name
|
5467
|
+
# A name set by the sender.
|
5476
5468
|
#
|
5477
5469
|
# @return [String, nil]
|
5478
|
-
required :
|
5470
|
+
required :debtor_name, String, nil?: true
|
5479
5471
|
|
5480
|
-
# @!attribute
|
5481
|
-
#
|
5472
|
+
# @!attribute description
|
5473
|
+
# An Increase-constructed description of the transfer.
|
5482
5474
|
#
|
5483
|
-
# @return [String
|
5484
|
-
required :
|
5475
|
+
# @return [String]
|
5476
|
+
required :description, String
|
5485
5477
|
|
5486
|
-
# @!attribute
|
5487
|
-
#
|
5478
|
+
# @!attribute end_to_end_identification
|
5479
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
5488
5480
|
#
|
5489
5481
|
# @return [String, nil]
|
5490
|
-
required :
|
5482
|
+
required :end_to_end_identification, String, nil?: true
|
5491
5483
|
|
5492
|
-
# @!attribute
|
5493
|
-
#
|
5494
|
-
# the
|
5484
|
+
# @!attribute input_message_accountability_data
|
5485
|
+
# A unique identifier available to the originating and receiving banks, commonly
|
5486
|
+
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
5487
|
+
# service and is helpful when debugging wires with the originating bank.
|
5495
5488
|
#
|
5496
5489
|
# @return [String, nil]
|
5497
|
-
required :
|
5490
|
+
required :input_message_accountability_data, String, nil?: true
|
5498
5491
|
|
5499
|
-
# @!attribute
|
5500
|
-
#
|
5492
|
+
# @!attribute instructing_agent_routing_number
|
5493
|
+
# The American Banking Association (ABA) routing number of the bank that sent the
|
5494
|
+
# wire.
|
5501
5495
|
#
|
5502
5496
|
# @return [String, nil]
|
5503
|
-
required :
|
5497
|
+
required :instructing_agent_routing_number, String, nil?: true
|
5504
5498
|
|
5505
|
-
# @!attribute
|
5506
|
-
#
|
5499
|
+
# @!attribute instruction_identification
|
5500
|
+
# The sending bank's identifier for the wire transfer.
|
5507
5501
|
#
|
5508
5502
|
# @return [String, nil]
|
5509
|
-
required :
|
5503
|
+
required :instruction_identification, String, nil?: true
|
5510
5504
|
|
5511
|
-
# @!attribute
|
5512
|
-
#
|
5505
|
+
# @!attribute transfer_id
|
5506
|
+
# The ID of the Inbound Wire Transfer object that resulted in this Transaction.
|
5513
5507
|
#
|
5514
|
-
# @return [String
|
5515
|
-
required :
|
5508
|
+
# @return [String]
|
5509
|
+
required :transfer_id, String
|
5516
5510
|
|
5517
|
-
# @!attribute
|
5518
|
-
#
|
5511
|
+
# @!attribute unique_end_to_end_transaction_reference
|
5512
|
+
# The Unique End-to-end Transaction Reference
|
5513
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
5514
|
+
# of the transfer.
|
5519
5515
|
#
|
5520
5516
|
# @return [String, nil]
|
5521
|
-
required :
|
5517
|
+
required :unique_end_to_end_transaction_reference, String, nil?: true
|
5522
5518
|
|
5523
|
-
# @!attribute
|
5524
|
-
# A free-form message set by the
|
5519
|
+
# @!attribute unstructured_remittance_information
|
5520
|
+
# A free-form message set by the sender.
|
5525
5521
|
#
|
5526
5522
|
# @return [String, nil]
|
5527
|
-
required :
|
5523
|
+
required :unstructured_remittance_information, String, nil?: true
|
5528
5524
|
|
5529
|
-
# @!
|
5530
|
-
# The ID of the Inbound Wire Transfer object that resulted in this Transaction.
|
5531
|
-
#
|
5532
|
-
# @return [String]
|
5533
|
-
required :transfer_id, String
|
5534
|
-
|
5535
|
-
# @!method initialize(amount:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, beneficiary_reference:, description:, input_message_accountability_data:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, originator_routing_number:, originator_to_beneficiary_information:, originator_to_beneficiary_information_line1:, originator_to_beneficiary_information_line2:, originator_to_beneficiary_information_line3:, originator_to_beneficiary_information_line4:, transfer_id:)
|
5525
|
+
# @!method initialize(amount:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, description:, end_to_end_identification:, input_message_accountability_data:, instructing_agent_routing_number:, instruction_identification:, transfer_id:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:)
|
5536
5526
|
# Some parameter documentations has been truncated, see
|
5537
5527
|
# {Increase::Models::Transaction::Source::InboundWireTransfer} for more details.
|
5538
5528
|
#
|
@@ -5543,41 +5533,37 @@ module Increase
|
|
5543
5533
|
#
|
5544
5534
|
# @param amount [Integer] The amount in USD cents.
|
5545
5535
|
#
|
5546
|
-
# @param
|
5536
|
+
# @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
|
5547
5537
|
#
|
5548
|
-
# @param
|
5538
|
+
# @param creditor_address_line2 [String, nil] A free-form address field set by the sender.
|
5549
5539
|
#
|
5550
|
-
# @param
|
5540
|
+
# @param creditor_address_line3 [String, nil] A free-form address field set by the sender.
|
5551
5541
|
#
|
5552
|
-
# @param
|
5542
|
+
# @param creditor_name [String, nil] A name set by the sender.
|
5553
5543
|
#
|
5554
|
-
# @param
|
5544
|
+
# @param debtor_address_line1 [String, nil] A free-form address field set by the sender.
|
5555
5545
|
#
|
5556
|
-
# @param
|
5557
|
-
#
|
5558
|
-
# @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
|
5546
|
+
# @param debtor_address_line2 [String, nil] A free-form address field set by the sender.
|
5559
5547
|
#
|
5560
|
-
# @param
|
5548
|
+
# @param debtor_address_line3 [String, nil] A free-form address field set by the sender.
|
5561
5549
|
#
|
5562
|
-
# @param
|
5550
|
+
# @param debtor_name [String, nil] A name set by the sender.
|
5563
5551
|
#
|
5564
|
-
# @param
|
5565
|
-
#
|
5566
|
-
# @param originator_name [String, nil] The originator of the wire, set by the sending bank.
|
5552
|
+
# @param description [String] An Increase-constructed description of the transfer.
|
5567
5553
|
#
|
5568
|
-
# @param
|
5554
|
+
# @param end_to_end_identification [String, nil] A free-form reference string set by the sender, to help identify the transfer.
|
5569
5555
|
#
|
5570
|
-
# @param
|
5556
|
+
# @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
|
5571
5557
|
#
|
5572
|
-
# @param
|
5558
|
+
# @param instructing_agent_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank that sent the
|
5573
5559
|
#
|
5574
|
-
# @param
|
5560
|
+
# @param instruction_identification [String, nil] The sending bank's identifier for the wire transfer.
|
5575
5561
|
#
|
5576
|
-
# @param
|
5562
|
+
# @param transfer_id [String] The ID of the Inbound Wire Transfer object that resulted in this Transaction.
|
5577
5563
|
#
|
5578
|
-
# @param
|
5564
|
+
# @param unique_end_to_end_transaction_reference [String, nil] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
|
5579
5565
|
#
|
5580
|
-
# @param
|
5566
|
+
# @param unstructured_remittance_information [String, nil] A free-form message set by the sender.
|
5581
5567
|
end
|
5582
5568
|
|
5583
5569
|
# @see Increase::Models::Transaction::Source#inbound_wire_transfer_reversal
|
data/lib/increase/version.rb
CHANGED
@@ -9939,78 +9939,72 @@ module Increase
|
|
9939
9939
|
|
9940
9940
|
# A free-form address field set by the sender.
|
9941
9941
|
sig { returns(T.nilable(String)) }
|
9942
|
-
attr_accessor :
|
9942
|
+
attr_accessor :creditor_address_line1
|
9943
9943
|
|
9944
9944
|
# A free-form address field set by the sender.
|
9945
9945
|
sig { returns(T.nilable(String)) }
|
9946
|
-
attr_accessor :
|
9946
|
+
attr_accessor :creditor_address_line2
|
9947
9947
|
|
9948
9948
|
# A free-form address field set by the sender.
|
9949
9949
|
sig { returns(T.nilable(String)) }
|
9950
|
-
attr_accessor :
|
9950
|
+
attr_accessor :creditor_address_line3
|
9951
9951
|
|
9952
9952
|
# A name set by the sender.
|
9953
9953
|
sig { returns(T.nilable(String)) }
|
9954
|
-
attr_accessor :
|
9954
|
+
attr_accessor :creditor_name
|
9955
9955
|
|
9956
|
-
# A free-form
|
9956
|
+
# A free-form address field set by the sender.
|
9957
9957
|
sig { returns(T.nilable(String)) }
|
9958
|
-
attr_accessor :
|
9959
|
-
|
9960
|
-
# An Increase-constructed description of the transfer.
|
9961
|
-
sig { returns(String) }
|
9962
|
-
attr_accessor :description
|
9958
|
+
attr_accessor :debtor_address_line1
|
9963
9959
|
|
9964
|
-
# A
|
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.
|
9960
|
+
# A free-form address field set by the sender.
|
9967
9961
|
sig { returns(T.nilable(String)) }
|
9968
|
-
attr_accessor :
|
9962
|
+
attr_accessor :debtor_address_line2
|
9969
9963
|
|
9970
|
-
#
|
9964
|
+
# A free-form address field set by the sender.
|
9971
9965
|
sig { returns(T.nilable(String)) }
|
9972
|
-
attr_accessor :
|
9966
|
+
attr_accessor :debtor_address_line3
|
9973
9967
|
|
9974
|
-
#
|
9968
|
+
# A name set by the sender.
|
9975
9969
|
sig { returns(T.nilable(String)) }
|
9976
|
-
attr_accessor :
|
9970
|
+
attr_accessor :debtor_name
|
9977
9971
|
|
9978
|
-
#
|
9979
|
-
sig { returns(
|
9980
|
-
attr_accessor :
|
9972
|
+
# An Increase-constructed description of the transfer.
|
9973
|
+
sig { returns(String) }
|
9974
|
+
attr_accessor :description
|
9981
9975
|
|
9982
|
-
#
|
9976
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
9983
9977
|
sig { returns(T.nilable(String)) }
|
9984
|
-
attr_accessor :
|
9978
|
+
attr_accessor :end_to_end_identification
|
9985
9979
|
|
9986
|
-
#
|
9987
|
-
# the
|
9980
|
+
# A unique identifier available to the originating and receiving banks, commonly
|
9981
|
+
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
9982
|
+
# service and is helpful when debugging wires with the originating bank.
|
9988
9983
|
sig { returns(T.nilable(String)) }
|
9989
|
-
attr_accessor :
|
9984
|
+
attr_accessor :input_message_accountability_data
|
9990
9985
|
|
9991
|
-
#
|
9986
|
+
# The American Banking Association (ABA) routing number of the bank that sent the
|
9987
|
+
# wire.
|
9992
9988
|
sig { returns(T.nilable(String)) }
|
9993
|
-
attr_accessor :
|
9989
|
+
attr_accessor :instructing_agent_routing_number
|
9994
9990
|
|
9995
|
-
#
|
9991
|
+
# The sending bank's identifier for the wire transfer.
|
9996
9992
|
sig { returns(T.nilable(String)) }
|
9997
|
-
attr_accessor :
|
9993
|
+
attr_accessor :instruction_identification
|
9998
9994
|
|
9999
|
-
#
|
10000
|
-
sig { returns(
|
10001
|
-
attr_accessor :
|
9995
|
+
# The ID of the Inbound Wire Transfer object that resulted in this Transaction.
|
9996
|
+
sig { returns(String) }
|
9997
|
+
attr_accessor :transfer_id
|
10002
9998
|
|
10003
|
-
#
|
9999
|
+
# The Unique End-to-end Transaction Reference
|
10000
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
10001
|
+
# of the transfer.
|
10004
10002
|
sig { returns(T.nilable(String)) }
|
10005
|
-
attr_accessor :
|
10003
|
+
attr_accessor :unique_end_to_end_transaction_reference
|
10006
10004
|
|
10007
|
-
# A free-form message set by the
|
10005
|
+
# A free-form message set by the sender.
|
10008
10006
|
sig { returns(T.nilable(String)) }
|
10009
|
-
attr_accessor :
|
10010
|
-
|
10011
|
-
# The ID of the Inbound Wire Transfer object that resulted in this Transaction.
|
10012
|
-
sig { returns(String) }
|
10013
|
-
attr_accessor :transfer_id
|
10007
|
+
attr_accessor :unstructured_remittance_information
|
10014
10008
|
|
10015
10009
|
# An Inbound Wire Transfer Intention object. This field will be present in the
|
10016
10010
|
# JSON response if and only if `category` is equal to `inbound_wire_transfer`. An
|
@@ -10019,68 +10013,64 @@ module Increase
|
|
10019
10013
|
sig do
|
10020
10014
|
params(
|
10021
10015
|
amount: Integer,
|
10022
|
-
|
10023
|
-
|
10024
|
-
|
10025
|
-
|
10026
|
-
|
10016
|
+
creditor_address_line1: T.nilable(String),
|
10017
|
+
creditor_address_line2: T.nilable(String),
|
10018
|
+
creditor_address_line3: T.nilable(String),
|
10019
|
+
creditor_name: T.nilable(String),
|
10020
|
+
debtor_address_line1: T.nilable(String),
|
10021
|
+
debtor_address_line2: T.nilable(String),
|
10022
|
+
debtor_address_line3: T.nilable(String),
|
10023
|
+
debtor_name: T.nilable(String),
|
10027
10024
|
description: String,
|
10025
|
+
end_to_end_identification: T.nilable(String),
|
10028
10026
|
input_message_accountability_data: T.nilable(String),
|
10029
|
-
|
10030
|
-
|
10031
|
-
|
10032
|
-
|
10033
|
-
|
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
|
10027
|
+
instructing_agent_routing_number: T.nilable(String),
|
10028
|
+
instruction_identification: T.nilable(String),
|
10029
|
+
transfer_id: String,
|
10030
|
+
unique_end_to_end_transaction_reference: T.nilable(String),
|
10031
|
+
unstructured_remittance_information: T.nilable(String)
|
10040
10032
|
).returns(T.attached_class)
|
10041
10033
|
end
|
10042
10034
|
def self.new(
|
10043
10035
|
# The amount in USD cents.
|
10044
10036
|
amount:,
|
10045
10037
|
# A free-form address field set by the sender.
|
10046
|
-
|
10038
|
+
creditor_address_line1:,
|
10047
10039
|
# A free-form address field set by the sender.
|
10048
|
-
|
10040
|
+
creditor_address_line2:,
|
10049
10041
|
# A free-form address field set by the sender.
|
10050
|
-
|
10042
|
+
creditor_address_line3:,
|
10051
10043
|
# A name set by the sender.
|
10052
|
-
|
10053
|
-
# A free-form
|
10054
|
-
|
10044
|
+
creditor_name:,
|
10045
|
+
# A free-form address field set by the sender.
|
10046
|
+
debtor_address_line1:,
|
10047
|
+
# A free-form address field set by the sender.
|
10048
|
+
debtor_address_line2:,
|
10049
|
+
# A free-form address field set by the sender.
|
10050
|
+
debtor_address_line3:,
|
10051
|
+
# A name set by the sender.
|
10052
|
+
debtor_name:,
|
10055
10053
|
# An Increase-constructed description of the transfer.
|
10056
10054
|
description:,
|
10055
|
+
# A free-form reference string set by the sender, to help identify the transfer.
|
10056
|
+
end_to_end_identification:,
|
10057
10057
|
# A unique identifier available to the originating and receiving banks, commonly
|
10058
10058
|
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
|
10059
10059
|
# service and is helpful when debugging wires with the originating bank.
|
10060
10060
|
input_message_accountability_data:,
|
10061
|
-
# The
|
10062
|
-
|
10063
|
-
|
10064
|
-
|
10065
|
-
|
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:,
|
10061
|
+
# The American Banking Association (ABA) routing number of the bank that sent the
|
10062
|
+
# wire.
|
10063
|
+
instructing_agent_routing_number:,
|
10064
|
+
# The sending bank's identifier for the wire transfer.
|
10065
|
+
instruction_identification:,
|
10082
10066
|
# The ID of the Inbound Wire Transfer object that resulted in this Transaction.
|
10083
|
-
transfer_id
|
10067
|
+
transfer_id:,
|
10068
|
+
# The Unique End-to-end Transaction Reference
|
10069
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
10070
|
+
# of the transfer.
|
10071
|
+
unique_end_to_end_transaction_reference:,
|
10072
|
+
# A free-form message set by the sender.
|
10073
|
+
unstructured_remittance_information:
|
10084
10074
|
)
|
10085
10075
|
end
|
10086
10076
|
|
@@ -10088,24 +10078,22 @@ module Increase
|
|
10088
10078
|
override.returns(
|
10089
10079
|
{
|
10090
10080
|
amount: Integer,
|
10091
|
-
|
10092
|
-
|
10093
|
-
|
10094
|
-
|
10095
|
-
|
10081
|
+
creditor_address_line1: T.nilable(String),
|
10082
|
+
creditor_address_line2: T.nilable(String),
|
10083
|
+
creditor_address_line3: T.nilable(String),
|
10084
|
+
creditor_name: T.nilable(String),
|
10085
|
+
debtor_address_line1: T.nilable(String),
|
10086
|
+
debtor_address_line2: T.nilable(String),
|
10087
|
+
debtor_address_line3: T.nilable(String),
|
10088
|
+
debtor_name: T.nilable(String),
|
10096
10089
|
description: String,
|
10090
|
+
end_to_end_identification: T.nilable(String),
|
10097
10091
|
input_message_accountability_data: T.nilable(String),
|
10098
|
-
|
10099
|
-
|
10100
|
-
|
10101
|
-
|
10102
|
-
|
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
|
10092
|
+
instructing_agent_routing_number: T.nilable(String),
|
10093
|
+
instruction_identification: T.nilable(String),
|
10094
|
+
transfer_id: String,
|
10095
|
+
unique_end_to_end_transaction_reference: T.nilable(String),
|
10096
|
+
unstructured_remittance_information: T.nilable(String)
|
10109
10097
|
}
|
10110
10098
|
)
|
10111
10099
|
end
|
@@ -4116,107 +4116,97 @@ module Increase
|
|
4116
4116
|
type inbound_wire_transfer =
|
4117
4117
|
{
|
4118
4118
|
amount: Integer,
|
4119
|
-
:
|
4120
|
-
:
|
4121
|
-
:
|
4122
|
-
|
4123
|
-
|
4119
|
+
:creditor_address_line1 => String?,
|
4120
|
+
:creditor_address_line2 => String?,
|
4121
|
+
:creditor_address_line3 => String?,
|
4122
|
+
creditor_name: String?,
|
4123
|
+
:debtor_address_line1 => String?,
|
4124
|
+
:debtor_address_line2 => String?,
|
4125
|
+
:debtor_address_line3 => String?,
|
4126
|
+
debtor_name: String?,
|
4124
4127
|
description: String,
|
4128
|
+
end_to_end_identification: String?,
|
4125
4129
|
input_message_accountability_data: String?,
|
4126
|
-
:
|
4127
|
-
:
|
4128
|
-
:
|
4129
|
-
|
4130
|
-
|
4131
|
-
originator_to_beneficiary_information: String?,
|
4132
|
-
:originator_to_beneficiary_information_line1 => String?,
|
4133
|
-
:originator_to_beneficiary_information_line2 => String?,
|
4134
|
-
:originator_to_beneficiary_information_line3 => String?,
|
4135
|
-
:originator_to_beneficiary_information_line4 => String?,
|
4136
|
-
transfer_id: String
|
4130
|
+
instructing_agent_routing_number: String?,
|
4131
|
+
instruction_identification: String?,
|
4132
|
+
transfer_id: String,
|
4133
|
+
unique_end_to_end_transaction_reference: String?,
|
4134
|
+
unstructured_remittance_information: String?
|
4137
4135
|
}
|
4138
4136
|
|
4139
4137
|
class InboundWireTransfer < Increase::Internal::Type::BaseModel
|
4140
4138
|
attr_accessor amount: Integer
|
4141
4139
|
|
4142
|
-
attr_accessor
|
4143
|
-
|
4144
|
-
attr_accessor beneficiary_address_line2: String?
|
4145
|
-
|
4146
|
-
attr_accessor beneficiary_address_line3: String?
|
4140
|
+
attr_accessor creditor_address_line1: String?
|
4147
4141
|
|
4148
|
-
attr_accessor
|
4142
|
+
attr_accessor creditor_address_line2: String?
|
4149
4143
|
|
4150
|
-
attr_accessor
|
4144
|
+
attr_accessor creditor_address_line3: String?
|
4151
4145
|
|
4152
|
-
attr_accessor
|
4146
|
+
attr_accessor creditor_name: String?
|
4153
4147
|
|
4154
|
-
attr_accessor
|
4148
|
+
attr_accessor debtor_address_line1: String?
|
4155
4149
|
|
4156
|
-
attr_accessor
|
4150
|
+
attr_accessor debtor_address_line2: String?
|
4157
4151
|
|
4158
|
-
attr_accessor
|
4152
|
+
attr_accessor debtor_address_line3: String?
|
4159
4153
|
|
4160
|
-
attr_accessor
|
4154
|
+
attr_accessor debtor_name: String?
|
4161
4155
|
|
4162
|
-
attr_accessor
|
4156
|
+
attr_accessor description: String
|
4163
4157
|
|
4164
|
-
attr_accessor
|
4158
|
+
attr_accessor end_to_end_identification: String?
|
4165
4159
|
|
4166
|
-
attr_accessor
|
4160
|
+
attr_accessor input_message_accountability_data: String?
|
4167
4161
|
|
4168
|
-
attr_accessor
|
4162
|
+
attr_accessor instructing_agent_routing_number: String?
|
4169
4163
|
|
4170
|
-
attr_accessor
|
4164
|
+
attr_accessor instruction_identification: String?
|
4171
4165
|
|
4172
|
-
attr_accessor
|
4166
|
+
attr_accessor transfer_id: String
|
4173
4167
|
|
4174
|
-
attr_accessor
|
4168
|
+
attr_accessor unique_end_to_end_transaction_reference: String?
|
4175
4169
|
|
4176
|
-
attr_accessor
|
4170
|
+
attr_accessor unstructured_remittance_information: String?
|
4177
4171
|
|
4178
4172
|
def initialize: (
|
4179
4173
|
amount: Integer,
|
4180
|
-
|
4181
|
-
|
4182
|
-
|
4183
|
-
|
4184
|
-
|
4174
|
+
creditor_address_line1: String?,
|
4175
|
+
creditor_address_line2: String?,
|
4176
|
+
creditor_address_line3: String?,
|
4177
|
+
creditor_name: String?,
|
4178
|
+
debtor_address_line1: String?,
|
4179
|
+
debtor_address_line2: String?,
|
4180
|
+
debtor_address_line3: String?,
|
4181
|
+
debtor_name: String?,
|
4185
4182
|
description: String,
|
4183
|
+
end_to_end_identification: String?,
|
4186
4184
|
input_message_accountability_data: String?,
|
4187
|
-
|
4188
|
-
|
4189
|
-
|
4190
|
-
|
4191
|
-
|
4192
|
-
originator_to_beneficiary_information: String?,
|
4193
|
-
originator_to_beneficiary_information_line1: String?,
|
4194
|
-
originator_to_beneficiary_information_line2: String?,
|
4195
|
-
originator_to_beneficiary_information_line3: String?,
|
4196
|
-
originator_to_beneficiary_information_line4: String?,
|
4197
|
-
transfer_id: String
|
4185
|
+
instructing_agent_routing_number: String?,
|
4186
|
+
instruction_identification: String?,
|
4187
|
+
transfer_id: String,
|
4188
|
+
unique_end_to_end_transaction_reference: String?,
|
4189
|
+
unstructured_remittance_information: String?
|
4198
4190
|
) -> void
|
4199
4191
|
|
4200
4192
|
def to_hash: -> {
|
4201
4193
|
amount: Integer,
|
4202
|
-
:
|
4203
|
-
:
|
4204
|
-
:
|
4205
|
-
|
4206
|
-
|
4194
|
+
:creditor_address_line1 => String?,
|
4195
|
+
:creditor_address_line2 => String?,
|
4196
|
+
:creditor_address_line3 => String?,
|
4197
|
+
creditor_name: String?,
|
4198
|
+
:debtor_address_line1 => String?,
|
4199
|
+
:debtor_address_line2 => String?,
|
4200
|
+
:debtor_address_line3 => String?,
|
4201
|
+
debtor_name: String?,
|
4207
4202
|
description: String,
|
4203
|
+
end_to_end_identification: String?,
|
4208
4204
|
input_message_accountability_data: String?,
|
4209
|
-
:
|
4210
|
-
:
|
4211
|
-
:
|
4212
|
-
|
4213
|
-
|
4214
|
-
originator_to_beneficiary_information: String?,
|
4215
|
-
:originator_to_beneficiary_information_line1 => String?,
|
4216
|
-
:originator_to_beneficiary_information_line2 => String?,
|
4217
|
-
:originator_to_beneficiary_information_line3 => String?,
|
4218
|
-
:originator_to_beneficiary_information_line4 => String?,
|
4219
|
-
transfer_id: String
|
4205
|
+
instructing_agent_routing_number: String?,
|
4206
|
+
instruction_identification: String?,
|
4207
|
+
transfer_id: String,
|
4208
|
+
unique_end_to_end_transaction_reference: String?,
|
4209
|
+
unstructured_remittance_information: String?
|
4220
4210
|
}
|
4221
4211
|
end
|
4222
4212
|
|