increase 1.253.0 → 1.254.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/card_payment.rb +10 -10
- data/lib/increase/models/real_time_decision.rb +10 -10
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +12 -12
- data/rbi/increase/models/real_time_decision.rbi +12 -12
- data/sig/increase/models/card_payment.rbs +12 -12
- data/sig/increase/models/real_time_decision.rbs +12 -12
- 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: 1636bd0aa7c9344a6c92012b0ff9165a3c8dc5481d18005bf4d1809c7c83e984
|
|
4
|
+
data.tar.gz: fdf74a2a3a704098357f9ff36697596e85216cc5d76beeb3d4f537916faa813b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: adfa9359b3f0fc998e2cd6bb747c485c886d56ef89a7cca991c664df49d6265385fe6518c5f6ebf3c07fbdaf93a4799a9e5763d5190c523078c219993b2483c4
|
|
7
|
+
data.tar.gz: b516fde382a7a7a1001d68c72305d0c867085079ece74e4778d0ee659e0a83c1f11b402b6dd3de036752b4b06134db0b210da98792a4502dd1b618ae2163c750
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.254.0 (2026-03-13)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.253.0...v1.254.0](https://github.com/Increase/increase-ruby/compare/v1.253.0...v1.254.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([ff88f04](https://github.com/Increase/increase-ruby/commit/ff88f04db6f580d04908ae94d7d12dcfd3e5e320))
|
|
10
|
+
|
|
3
11
|
## 1.253.0 (2026-03-13)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.252.0...v1.253.0](https://github.com/Increase/increase-ruby/compare/v1.252.0...v1.253.0)
|
data/README.md
CHANGED
|
@@ -318,12 +318,12 @@ module Increase
|
|
|
318
318
|
# @return [String]
|
|
319
319
|
required :id, String
|
|
320
320
|
|
|
321
|
-
# @!attribute
|
|
321
|
+
# @!attribute access_control_server_transaction_identifier
|
|
322
322
|
# A unique identifier assigned by the Access Control Server (us) for this
|
|
323
323
|
# transaction.
|
|
324
324
|
#
|
|
325
325
|
# @return [String]
|
|
326
|
-
required :
|
|
326
|
+
required :access_control_server_transaction_identifier, String
|
|
327
327
|
|
|
328
328
|
# @!attribute billing_address_city
|
|
329
329
|
# The city of the cardholder billing address associated with the card used for
|
|
@@ -429,12 +429,12 @@ module Increase
|
|
|
429
429
|
# @return [Increase::Models::CardPayment::Element::CardAuthentication::DeviceChannel]
|
|
430
430
|
required :device_channel, -> { Increase::CardPayment::Element::CardAuthentication::DeviceChannel }
|
|
431
431
|
|
|
432
|
-
# @!attribute
|
|
432
|
+
# @!attribute directory_server_transaction_identifier
|
|
433
433
|
# A unique identifier assigned by the Directory Server (the card network) for this
|
|
434
434
|
# transaction.
|
|
435
435
|
#
|
|
436
436
|
# @return [String]
|
|
437
|
-
required :
|
|
437
|
+
required :directory_server_transaction_identifier, String
|
|
438
438
|
|
|
439
439
|
# @!attribute merchant_acceptor_id
|
|
440
440
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
@@ -563,12 +563,12 @@ module Increase
|
|
|
563
563
|
# @return [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Status]
|
|
564
564
|
required :status, enum: -> { Increase::CardPayment::Element::CardAuthentication::Status }
|
|
565
565
|
|
|
566
|
-
# @!attribute
|
|
566
|
+
# @!attribute three_d_secure_server_transaction_identifier
|
|
567
567
|
# A unique identifier assigned by the 3DS Server initiating the authentication
|
|
568
568
|
# attempt for this transaction.
|
|
569
569
|
#
|
|
570
570
|
# @return [String]
|
|
571
|
-
required :
|
|
571
|
+
required :three_d_secure_server_transaction_identifier, String
|
|
572
572
|
|
|
573
573
|
# @!attribute type
|
|
574
574
|
# A constant representing the object's type. For this resource it will always be
|
|
@@ -577,7 +577,7 @@ module Increase
|
|
|
577
577
|
# @return [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Type]
|
|
578
578
|
required :type, enum: -> { Increase::CardPayment::Element::CardAuthentication::Type }
|
|
579
579
|
|
|
580
|
-
# @!method initialize(id:,
|
|
580
|
+
# @!method initialize(id:, access_control_server_transaction_identifier:, billing_address_city:, billing_address_country:, billing_address_line1:, billing_address_line2:, billing_address_line3:, billing_address_postal_code:, billing_address_state:, card_id:, card_payment_id:, cardholder_email:, cardholder_name:, challenge:, created_at:, deny_reason:, device_channel:, directory_server_transaction_identifier:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, message_category:, prior_authenticated_card_payment_id:, real_time_decision_id:, requestor_authentication_indicator:, requestor_challenge_indicator:, requestor_name:, requestor_url:, shipping_address_city:, shipping_address_country:, shipping_address_line1:, shipping_address_line2:, shipping_address_line3:, shipping_address_postal_code:, shipping_address_state:, status:, three_d_secure_server_transaction_identifier:, type:)
|
|
581
581
|
# Some parameter documentations has been truncated, see
|
|
582
582
|
# {Increase::Models::CardPayment::Element::CardAuthentication} for more details.
|
|
583
583
|
#
|
|
@@ -587,7 +587,7 @@ module Increase
|
|
|
587
587
|
#
|
|
588
588
|
# @param id [String] The Card Authentication identifier.
|
|
589
589
|
#
|
|
590
|
-
# @param
|
|
590
|
+
# @param access_control_server_transaction_identifier [String] A unique identifier assigned by the Access Control Server (us) for this transact
|
|
591
591
|
#
|
|
592
592
|
# @param billing_address_city [String, nil] The city of the cardholder billing address associated with the card used for thi
|
|
593
593
|
#
|
|
@@ -619,7 +619,7 @@ module Increase
|
|
|
619
619
|
#
|
|
620
620
|
# @param device_channel [Increase::Models::CardPayment::Element::CardAuthentication::DeviceChannel] The device channel of the card authentication attempt.
|
|
621
621
|
#
|
|
622
|
-
# @param
|
|
622
|
+
# @param directory_server_transaction_identifier [String] A unique identifier assigned by the Directory Server (the card network) for this
|
|
623
623
|
#
|
|
624
624
|
# @param merchant_acceptor_id [String, nil] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
|
|
625
625
|
#
|
|
@@ -659,7 +659,7 @@ module Increase
|
|
|
659
659
|
#
|
|
660
660
|
# @param status [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Status] The status of the card authentication.
|
|
661
661
|
#
|
|
662
|
-
# @param
|
|
662
|
+
# @param three_d_secure_server_transaction_identifier [String] A unique identifier assigned by the 3DS Server initiating the authentication att
|
|
663
663
|
#
|
|
664
664
|
# @param type [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Type] A constant representing the object's type. For this resource it will always be `
|
|
665
665
|
|
|
@@ -118,12 +118,12 @@ module Increase
|
|
|
118
118
|
|
|
119
119
|
# @see Increase::Models::RealTimeDecision#card_authentication
|
|
120
120
|
class CardAuthentication < Increase::Internal::Type::BaseModel
|
|
121
|
-
# @!attribute
|
|
121
|
+
# @!attribute access_control_server_transaction_identifier
|
|
122
122
|
# A unique identifier assigned by the Access Control Server (us) for this
|
|
123
123
|
# transaction.
|
|
124
124
|
#
|
|
125
125
|
# @return [String]
|
|
126
|
-
required :
|
|
126
|
+
required :access_control_server_transaction_identifier, String
|
|
127
127
|
|
|
128
128
|
# @!attribute account_id
|
|
129
129
|
# The identifier of the Account the card belongs to.
|
|
@@ -210,12 +210,12 @@ module Increase
|
|
|
210
210
|
# @return [Increase::Models::RealTimeDecision::CardAuthentication::DeviceChannel]
|
|
211
211
|
required :device_channel, -> { Increase::RealTimeDecision::CardAuthentication::DeviceChannel }
|
|
212
212
|
|
|
213
|
-
# @!attribute
|
|
213
|
+
# @!attribute directory_server_transaction_identifier
|
|
214
214
|
# A unique identifier assigned by the Directory Server (the card network) for this
|
|
215
215
|
# transaction.
|
|
216
216
|
#
|
|
217
217
|
# @return [String]
|
|
218
|
-
required :
|
|
218
|
+
required :directory_server_transaction_identifier, String
|
|
219
219
|
|
|
220
220
|
# @!attribute merchant_acceptor_id
|
|
221
221
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
@@ -329,12 +329,12 @@ module Increase
|
|
|
329
329
|
# @return [String, nil]
|
|
330
330
|
required :shipping_address_state, String, nil?: true
|
|
331
331
|
|
|
332
|
-
# @!attribute
|
|
332
|
+
# @!attribute three_d_secure_server_transaction_identifier
|
|
333
333
|
# A unique identifier assigned by the 3DS Server initiating the authentication
|
|
334
334
|
# attempt for this transaction.
|
|
335
335
|
#
|
|
336
336
|
# @return [String]
|
|
337
|
-
required :
|
|
337
|
+
required :three_d_secure_server_transaction_identifier, String
|
|
338
338
|
|
|
339
339
|
# @!attribute upcoming_card_payment_id
|
|
340
340
|
# The identifier of the Card Payment this authentication attempt will belong to.
|
|
@@ -343,13 +343,13 @@ module Increase
|
|
|
343
343
|
# @return [String]
|
|
344
344
|
required :upcoming_card_payment_id, String
|
|
345
345
|
|
|
346
|
-
# @!method initialize(
|
|
346
|
+
# @!method initialize(access_control_server_transaction_identifier:, account_id:, billing_address_city:, billing_address_country:, billing_address_line1:, billing_address_line2:, billing_address_line3:, billing_address_postal_code:, billing_address_state:, card_id:, cardholder_email:, cardholder_name:, decision:, device_channel:, directory_server_transaction_identifier:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, message_category:, prior_authenticated_card_payment_id:, requestor_authentication_indicator:, requestor_challenge_indicator:, requestor_name:, requestor_url:, shipping_address_city:, shipping_address_country:, shipping_address_line1:, shipping_address_line2:, shipping_address_line3:, shipping_address_postal_code:, shipping_address_state:, three_d_secure_server_transaction_identifier:, upcoming_card_payment_id:)
|
|
347
347
|
# Some parameter documentations has been truncated, see
|
|
348
348
|
# {Increase::Models::RealTimeDecision::CardAuthentication} for more details.
|
|
349
349
|
#
|
|
350
350
|
# Fields related to a 3DS authentication attempt.
|
|
351
351
|
#
|
|
352
|
-
# @param
|
|
352
|
+
# @param access_control_server_transaction_identifier [String] A unique identifier assigned by the Access Control Server (us) for this transact
|
|
353
353
|
#
|
|
354
354
|
# @param account_id [String] The identifier of the Account the card belongs to.
|
|
355
355
|
#
|
|
@@ -377,7 +377,7 @@ module Increase
|
|
|
377
377
|
#
|
|
378
378
|
# @param device_channel [Increase::Models::RealTimeDecision::CardAuthentication::DeviceChannel] The device channel of the card authentication attempt.
|
|
379
379
|
#
|
|
380
|
-
# @param
|
|
380
|
+
# @param directory_server_transaction_identifier [String] A unique identifier assigned by the Directory Server (the card network) for this
|
|
381
381
|
#
|
|
382
382
|
# @param merchant_acceptor_id [String, nil] The merchant identifier (commonly abbreviated as MID) of the merchant the card i
|
|
383
383
|
#
|
|
@@ -413,7 +413,7 @@ module Increase
|
|
|
413
413
|
#
|
|
414
414
|
# @param shipping_address_state [String, nil] The US state of the shipping address associated with this purchase.
|
|
415
415
|
#
|
|
416
|
-
# @param
|
|
416
|
+
# @param three_d_secure_server_transaction_identifier [String] A unique identifier assigned by the 3DS Server initiating the authentication att
|
|
417
417
|
#
|
|
418
418
|
# @param upcoming_card_payment_id [String] The identifier of the Card Payment this authentication attempt will belong to. A
|
|
419
419
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -629,7 +629,7 @@ module Increase
|
|
|
629
629
|
# A unique identifier assigned by the Access Control Server (us) for this
|
|
630
630
|
# transaction.
|
|
631
631
|
sig { returns(String) }
|
|
632
|
-
attr_accessor :
|
|
632
|
+
attr_accessor :access_control_server_transaction_identifier
|
|
633
633
|
|
|
634
634
|
# The city of the cardholder billing address associated with the card used for
|
|
635
635
|
# this purchase.
|
|
@@ -736,7 +736,7 @@ module Increase
|
|
|
736
736
|
# A unique identifier assigned by the Directory Server (the card network) for this
|
|
737
737
|
# transaction.
|
|
738
738
|
sig { returns(String) }
|
|
739
|
-
attr_accessor :
|
|
739
|
+
attr_accessor :directory_server_transaction_identifier
|
|
740
740
|
|
|
741
741
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
742
742
|
# is transacting with.
|
|
@@ -850,7 +850,7 @@ module Increase
|
|
|
850
850
|
# A unique identifier assigned by the 3DS Server initiating the authentication
|
|
851
851
|
# attempt for this transaction.
|
|
852
852
|
sig { returns(String) }
|
|
853
|
-
attr_accessor :
|
|
853
|
+
attr_accessor :three_d_secure_server_transaction_identifier
|
|
854
854
|
|
|
855
855
|
# A constant representing the object's type. For this resource it will always be
|
|
856
856
|
# `card_authentication`.
|
|
@@ -867,7 +867,7 @@ module Increase
|
|
|
867
867
|
sig do
|
|
868
868
|
params(
|
|
869
869
|
id: String,
|
|
870
|
-
|
|
870
|
+
access_control_server_transaction_identifier: String,
|
|
871
871
|
billing_address_city: T.nilable(String),
|
|
872
872
|
billing_address_country: T.nilable(String),
|
|
873
873
|
billing_address_line1: T.nilable(String),
|
|
@@ -890,7 +890,7 @@ module Increase
|
|
|
890
890
|
),
|
|
891
891
|
device_channel:
|
|
892
892
|
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::OrHash,
|
|
893
|
-
|
|
893
|
+
directory_server_transaction_identifier: String,
|
|
894
894
|
merchant_acceptor_id: T.nilable(String),
|
|
895
895
|
merchant_category_code: T.nilable(String),
|
|
896
896
|
merchant_country: T.nilable(String),
|
|
@@ -918,7 +918,7 @@ module Increase
|
|
|
918
918
|
shipping_address_state: T.nilable(String),
|
|
919
919
|
status:
|
|
920
920
|
Increase::CardPayment::Element::CardAuthentication::Status::OrSymbol,
|
|
921
|
-
|
|
921
|
+
three_d_secure_server_transaction_identifier: String,
|
|
922
922
|
type:
|
|
923
923
|
Increase::CardPayment::Element::CardAuthentication::Type::OrSymbol
|
|
924
924
|
).returns(T.attached_class)
|
|
@@ -928,7 +928,7 @@ module Increase
|
|
|
928
928
|
id:,
|
|
929
929
|
# A unique identifier assigned by the Access Control Server (us) for this
|
|
930
930
|
# transaction.
|
|
931
|
-
|
|
931
|
+
access_control_server_transaction_identifier:,
|
|
932
932
|
# The city of the cardholder billing address associated with the card used for
|
|
933
933
|
# this purchase.
|
|
934
934
|
billing_address_city:,
|
|
@@ -969,7 +969,7 @@ module Increase
|
|
|
969
969
|
device_channel:,
|
|
970
970
|
# A unique identifier assigned by the Directory Server (the card network) for this
|
|
971
971
|
# transaction.
|
|
972
|
-
|
|
972
|
+
directory_server_transaction_identifier:,
|
|
973
973
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
974
974
|
# is transacting with.
|
|
975
975
|
merchant_acceptor_id:,
|
|
@@ -1015,7 +1015,7 @@ module Increase
|
|
|
1015
1015
|
status:,
|
|
1016
1016
|
# A unique identifier assigned by the 3DS Server initiating the authentication
|
|
1017
1017
|
# attempt for this transaction.
|
|
1018
|
-
|
|
1018
|
+
three_d_secure_server_transaction_identifier:,
|
|
1019
1019
|
# A constant representing the object's type. For this resource it will always be
|
|
1020
1020
|
# `card_authentication`.
|
|
1021
1021
|
type:
|
|
@@ -1026,7 +1026,7 @@ module Increase
|
|
|
1026
1026
|
override.returns(
|
|
1027
1027
|
{
|
|
1028
1028
|
id: String,
|
|
1029
|
-
|
|
1029
|
+
access_control_server_transaction_identifier: String,
|
|
1030
1030
|
billing_address_city: T.nilable(String),
|
|
1031
1031
|
billing_address_country: T.nilable(String),
|
|
1032
1032
|
billing_address_line1: T.nilable(String),
|
|
@@ -1049,7 +1049,7 @@ module Increase
|
|
|
1049
1049
|
),
|
|
1050
1050
|
device_channel:
|
|
1051
1051
|
Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
|
|
1052
|
-
|
|
1052
|
+
directory_server_transaction_identifier: String,
|
|
1053
1053
|
merchant_acceptor_id: T.nilable(String),
|
|
1054
1054
|
merchant_category_code: T.nilable(String),
|
|
1055
1055
|
merchant_country: T.nilable(String),
|
|
@@ -1077,7 +1077,7 @@ module Increase
|
|
|
1077
1077
|
shipping_address_state: T.nilable(String),
|
|
1078
1078
|
status:
|
|
1079
1079
|
Increase::CardPayment::Element::CardAuthentication::Status::TaggedSymbol,
|
|
1080
|
-
|
|
1080
|
+
three_d_secure_server_transaction_identifier: String,
|
|
1081
1081
|
type:
|
|
1082
1082
|
Increase::CardPayment::Element::CardAuthentication::Type::TaggedSymbol
|
|
1083
1083
|
}
|
|
@@ -223,7 +223,7 @@ module Increase
|
|
|
223
223
|
# A unique identifier assigned by the Access Control Server (us) for this
|
|
224
224
|
# transaction.
|
|
225
225
|
sig { returns(String) }
|
|
226
|
-
attr_accessor :
|
|
226
|
+
attr_accessor :access_control_server_transaction_identifier
|
|
227
227
|
|
|
228
228
|
# The identifier of the Account the card belongs to.
|
|
229
229
|
sig { returns(String) }
|
|
@@ -303,7 +303,7 @@ module Increase
|
|
|
303
303
|
# A unique identifier assigned by the Directory Server (the card network) for this
|
|
304
304
|
# transaction.
|
|
305
305
|
sig { returns(String) }
|
|
306
|
-
attr_accessor :
|
|
306
|
+
attr_accessor :directory_server_transaction_identifier
|
|
307
307
|
|
|
308
308
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
309
309
|
# is transacting with.
|
|
@@ -404,7 +404,7 @@ module Increase
|
|
|
404
404
|
# A unique identifier assigned by the 3DS Server initiating the authentication
|
|
405
405
|
# attempt for this transaction.
|
|
406
406
|
sig { returns(String) }
|
|
407
|
-
attr_accessor :
|
|
407
|
+
attr_accessor :three_d_secure_server_transaction_identifier
|
|
408
408
|
|
|
409
409
|
# The identifier of the Card Payment this authentication attempt will belong to.
|
|
410
410
|
# Available in the API once the card authentication has completed.
|
|
@@ -414,7 +414,7 @@ module Increase
|
|
|
414
414
|
# Fields related to a 3DS authentication attempt.
|
|
415
415
|
sig do
|
|
416
416
|
params(
|
|
417
|
-
|
|
417
|
+
access_control_server_transaction_identifier: String,
|
|
418
418
|
account_id: String,
|
|
419
419
|
billing_address_city: T.nilable(String),
|
|
420
420
|
billing_address_country: T.nilable(String),
|
|
@@ -432,7 +432,7 @@ module Increase
|
|
|
432
432
|
),
|
|
433
433
|
device_channel:
|
|
434
434
|
Increase::RealTimeDecision::CardAuthentication::DeviceChannel::OrHash,
|
|
435
|
-
|
|
435
|
+
directory_server_transaction_identifier: String,
|
|
436
436
|
merchant_acceptor_id: T.nilable(String),
|
|
437
437
|
merchant_category_code: T.nilable(String),
|
|
438
438
|
merchant_country: T.nilable(String),
|
|
@@ -457,14 +457,14 @@ module Increase
|
|
|
457
457
|
shipping_address_line3: T.nilable(String),
|
|
458
458
|
shipping_address_postal_code: T.nilable(String),
|
|
459
459
|
shipping_address_state: T.nilable(String),
|
|
460
|
-
|
|
460
|
+
three_d_secure_server_transaction_identifier: String,
|
|
461
461
|
upcoming_card_payment_id: String
|
|
462
462
|
).returns(T.attached_class)
|
|
463
463
|
end
|
|
464
464
|
def self.new(
|
|
465
465
|
# A unique identifier assigned by the Access Control Server (us) for this
|
|
466
466
|
# transaction.
|
|
467
|
-
|
|
467
|
+
access_control_server_transaction_identifier:,
|
|
468
468
|
# The identifier of the Account the card belongs to.
|
|
469
469
|
account_id:,
|
|
470
470
|
# The city of the cardholder billing address associated with the card used for
|
|
@@ -500,7 +500,7 @@ module Increase
|
|
|
500
500
|
device_channel:,
|
|
501
501
|
# A unique identifier assigned by the Directory Server (the card network) for this
|
|
502
502
|
# transaction.
|
|
503
|
-
|
|
503
|
+
directory_server_transaction_identifier:,
|
|
504
504
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
505
505
|
# is transacting with.
|
|
506
506
|
merchant_acceptor_id:,
|
|
@@ -541,7 +541,7 @@ module Increase
|
|
|
541
541
|
shipping_address_state:,
|
|
542
542
|
# A unique identifier assigned by the 3DS Server initiating the authentication
|
|
543
543
|
# attempt for this transaction.
|
|
544
|
-
|
|
544
|
+
three_d_secure_server_transaction_identifier:,
|
|
545
545
|
# The identifier of the Card Payment this authentication attempt will belong to.
|
|
546
546
|
# Available in the API once the card authentication has completed.
|
|
547
547
|
upcoming_card_payment_id:
|
|
@@ -551,7 +551,7 @@ module Increase
|
|
|
551
551
|
sig do
|
|
552
552
|
override.returns(
|
|
553
553
|
{
|
|
554
|
-
|
|
554
|
+
access_control_server_transaction_identifier: String,
|
|
555
555
|
account_id: String,
|
|
556
556
|
billing_address_city: T.nilable(String),
|
|
557
557
|
billing_address_country: T.nilable(String),
|
|
@@ -569,7 +569,7 @@ module Increase
|
|
|
569
569
|
),
|
|
570
570
|
device_channel:
|
|
571
571
|
Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
|
|
572
|
-
|
|
572
|
+
directory_server_transaction_identifier: String,
|
|
573
573
|
merchant_acceptor_id: T.nilable(String),
|
|
574
574
|
merchant_category_code: T.nilable(String),
|
|
575
575
|
merchant_country: T.nilable(String),
|
|
@@ -594,7 +594,7 @@ module Increase
|
|
|
594
594
|
shipping_address_line3: T.nilable(String),
|
|
595
595
|
shipping_address_postal_code: T.nilable(String),
|
|
596
596
|
shipping_address_state: T.nilable(String),
|
|
597
|
-
|
|
597
|
+
three_d_secure_server_transaction_identifier: String,
|
|
598
598
|
upcoming_card_payment_id: String
|
|
599
599
|
}
|
|
600
600
|
)
|
|
@@ -210,7 +210,7 @@ module Increase
|
|
|
210
210
|
type card_authentication =
|
|
211
211
|
{
|
|
212
212
|
id: String,
|
|
213
|
-
|
|
213
|
+
access_control_server_transaction_identifier: String,
|
|
214
214
|
billing_address_city: String?,
|
|
215
215
|
billing_address_country: String?,
|
|
216
216
|
:billing_address_line1 => String?,
|
|
@@ -226,7 +226,7 @@ module Increase
|
|
|
226
226
|
created_at: Time,
|
|
227
227
|
deny_reason: Increase::Models::CardPayment::Element::CardAuthentication::deny_reason?,
|
|
228
228
|
device_channel: Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
|
|
229
|
-
|
|
229
|
+
directory_server_transaction_identifier: String,
|
|
230
230
|
merchant_acceptor_id: String?,
|
|
231
231
|
merchant_category_code: String?,
|
|
232
232
|
merchant_country: String?,
|
|
@@ -246,14 +246,14 @@ module Increase
|
|
|
246
246
|
shipping_address_postal_code: String?,
|
|
247
247
|
shipping_address_state: String?,
|
|
248
248
|
status: Increase::Models::CardPayment::Element::CardAuthentication::status,
|
|
249
|
-
|
|
249
|
+
three_d_secure_server_transaction_identifier: String,
|
|
250
250
|
type: Increase::Models::CardPayment::Element::CardAuthentication::type_
|
|
251
251
|
}
|
|
252
252
|
|
|
253
253
|
class CardAuthentication < Increase::Internal::Type::BaseModel
|
|
254
254
|
attr_accessor id: String
|
|
255
255
|
|
|
256
|
-
attr_accessor
|
|
256
|
+
attr_accessor access_control_server_transaction_identifier: String
|
|
257
257
|
|
|
258
258
|
attr_accessor billing_address_city: String?
|
|
259
259
|
|
|
@@ -285,7 +285,7 @@ module Increase
|
|
|
285
285
|
|
|
286
286
|
attr_accessor device_channel: Increase::CardPayment::Element::CardAuthentication::DeviceChannel
|
|
287
287
|
|
|
288
|
-
attr_accessor
|
|
288
|
+
attr_accessor directory_server_transaction_identifier: String
|
|
289
289
|
|
|
290
290
|
attr_accessor merchant_acceptor_id: String?
|
|
291
291
|
|
|
@@ -325,13 +325,13 @@ module Increase
|
|
|
325
325
|
|
|
326
326
|
attr_accessor status: Increase::Models::CardPayment::Element::CardAuthentication::status
|
|
327
327
|
|
|
328
|
-
attr_accessor
|
|
328
|
+
attr_accessor three_d_secure_server_transaction_identifier: String
|
|
329
329
|
|
|
330
330
|
attr_accessor type: Increase::Models::CardPayment::Element::CardAuthentication::type_
|
|
331
331
|
|
|
332
332
|
def initialize: (
|
|
333
333
|
id: String,
|
|
334
|
-
|
|
334
|
+
access_control_server_transaction_identifier: String,
|
|
335
335
|
billing_address_city: String?,
|
|
336
336
|
billing_address_country: String?,
|
|
337
337
|
billing_address_line1: String?,
|
|
@@ -347,7 +347,7 @@ module Increase
|
|
|
347
347
|
created_at: Time,
|
|
348
348
|
deny_reason: Increase::Models::CardPayment::Element::CardAuthentication::deny_reason?,
|
|
349
349
|
device_channel: Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
|
|
350
|
-
|
|
350
|
+
directory_server_transaction_identifier: String,
|
|
351
351
|
merchant_acceptor_id: String?,
|
|
352
352
|
merchant_category_code: String?,
|
|
353
353
|
merchant_country: String?,
|
|
@@ -367,13 +367,13 @@ module Increase
|
|
|
367
367
|
shipping_address_postal_code: String?,
|
|
368
368
|
shipping_address_state: String?,
|
|
369
369
|
status: Increase::Models::CardPayment::Element::CardAuthentication::status,
|
|
370
|
-
|
|
370
|
+
three_d_secure_server_transaction_identifier: String,
|
|
371
371
|
type: Increase::Models::CardPayment::Element::CardAuthentication::type_
|
|
372
372
|
) -> void
|
|
373
373
|
|
|
374
374
|
def to_hash: -> {
|
|
375
375
|
id: String,
|
|
376
|
-
|
|
376
|
+
access_control_server_transaction_identifier: String,
|
|
377
377
|
billing_address_city: String?,
|
|
378
378
|
billing_address_country: String?,
|
|
379
379
|
:billing_address_line1 => String?,
|
|
@@ -389,7 +389,7 @@ module Increase
|
|
|
389
389
|
created_at: Time,
|
|
390
390
|
deny_reason: Increase::Models::CardPayment::Element::CardAuthentication::deny_reason?,
|
|
391
391
|
device_channel: Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
|
|
392
|
-
|
|
392
|
+
directory_server_transaction_identifier: String,
|
|
393
393
|
merchant_acceptor_id: String?,
|
|
394
394
|
merchant_category_code: String?,
|
|
395
395
|
merchant_country: String?,
|
|
@@ -409,7 +409,7 @@ module Increase
|
|
|
409
409
|
shipping_address_postal_code: String?,
|
|
410
410
|
shipping_address_state: String?,
|
|
411
411
|
status: Increase::Models::CardPayment::Element::CardAuthentication::status,
|
|
412
|
-
|
|
412
|
+
three_d_secure_server_transaction_identifier: String,
|
|
413
413
|
type: Increase::Models::CardPayment::Element::CardAuthentication::type_
|
|
414
414
|
}
|
|
415
415
|
|
|
@@ -73,7 +73,7 @@ module Increase
|
|
|
73
73
|
|
|
74
74
|
type card_authentication =
|
|
75
75
|
{
|
|
76
|
-
|
|
76
|
+
access_control_server_transaction_identifier: String,
|
|
77
77
|
account_id: String,
|
|
78
78
|
billing_address_city: String?,
|
|
79
79
|
billing_address_country: String?,
|
|
@@ -87,7 +87,7 @@ module Increase
|
|
|
87
87
|
cardholder_name: String?,
|
|
88
88
|
decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
|
|
89
89
|
device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
|
|
90
|
-
|
|
90
|
+
directory_server_transaction_identifier: String,
|
|
91
91
|
merchant_acceptor_id: String?,
|
|
92
92
|
merchant_category_code: String?,
|
|
93
93
|
merchant_country: String?,
|
|
@@ -105,12 +105,12 @@ module Increase
|
|
|
105
105
|
:shipping_address_line3 => String?,
|
|
106
106
|
shipping_address_postal_code: String?,
|
|
107
107
|
shipping_address_state: String?,
|
|
108
|
-
|
|
108
|
+
three_d_secure_server_transaction_identifier: String,
|
|
109
109
|
upcoming_card_payment_id: String
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
class CardAuthentication < Increase::Internal::Type::BaseModel
|
|
113
|
-
attr_accessor
|
|
113
|
+
attr_accessor access_control_server_transaction_identifier: String
|
|
114
114
|
|
|
115
115
|
attr_accessor account_id: String
|
|
116
116
|
|
|
@@ -138,7 +138,7 @@ module Increase
|
|
|
138
138
|
|
|
139
139
|
attr_accessor device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel
|
|
140
140
|
|
|
141
|
-
attr_accessor
|
|
141
|
+
attr_accessor directory_server_transaction_identifier: String
|
|
142
142
|
|
|
143
143
|
attr_accessor merchant_acceptor_id: String?
|
|
144
144
|
|
|
@@ -174,12 +174,12 @@ module Increase
|
|
|
174
174
|
|
|
175
175
|
attr_accessor shipping_address_state: String?
|
|
176
176
|
|
|
177
|
-
attr_accessor
|
|
177
|
+
attr_accessor three_d_secure_server_transaction_identifier: String
|
|
178
178
|
|
|
179
179
|
attr_accessor upcoming_card_payment_id: String
|
|
180
180
|
|
|
181
181
|
def initialize: (
|
|
182
|
-
|
|
182
|
+
access_control_server_transaction_identifier: String,
|
|
183
183
|
account_id: String,
|
|
184
184
|
billing_address_city: String?,
|
|
185
185
|
billing_address_country: String?,
|
|
@@ -193,7 +193,7 @@ module Increase
|
|
|
193
193
|
cardholder_name: String?,
|
|
194
194
|
decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
|
|
195
195
|
device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
|
|
196
|
-
|
|
196
|
+
directory_server_transaction_identifier: String,
|
|
197
197
|
merchant_acceptor_id: String?,
|
|
198
198
|
merchant_category_code: String?,
|
|
199
199
|
merchant_country: String?,
|
|
@@ -211,12 +211,12 @@ module Increase
|
|
|
211
211
|
shipping_address_line3: String?,
|
|
212
212
|
shipping_address_postal_code: String?,
|
|
213
213
|
shipping_address_state: String?,
|
|
214
|
-
|
|
214
|
+
three_d_secure_server_transaction_identifier: String,
|
|
215
215
|
upcoming_card_payment_id: String
|
|
216
216
|
) -> void
|
|
217
217
|
|
|
218
218
|
def to_hash: -> {
|
|
219
|
-
|
|
219
|
+
access_control_server_transaction_identifier: String,
|
|
220
220
|
account_id: String,
|
|
221
221
|
billing_address_city: String?,
|
|
222
222
|
billing_address_country: String?,
|
|
@@ -230,7 +230,7 @@ module Increase
|
|
|
230
230
|
cardholder_name: String?,
|
|
231
231
|
decision: Increase::Models::RealTimeDecision::CardAuthentication::decision?,
|
|
232
232
|
device_channel: Increase::RealTimeDecision::CardAuthentication::DeviceChannel,
|
|
233
|
-
|
|
233
|
+
directory_server_transaction_identifier: String,
|
|
234
234
|
merchant_acceptor_id: String?,
|
|
235
235
|
merchant_category_code: String?,
|
|
236
236
|
merchant_country: String?,
|
|
@@ -248,7 +248,7 @@ module Increase
|
|
|
248
248
|
:shipping_address_line3 => String?,
|
|
249
249
|
shipping_address_postal_code: String?,
|
|
250
250
|
shipping_address_state: String?,
|
|
251
|
-
|
|
251
|
+
three_d_secure_server_transaction_identifier: String,
|
|
252
252
|
upcoming_card_payment_id: String
|
|
253
253
|
}
|
|
254
254
|
|