increase 1.231.0 → 1.233.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/card_payment.rb +238 -8
- data/lib/increase/models/declined_transaction.rb +8 -2
- data/lib/increase/models/pending_transaction.rb +4 -1
- data/lib/increase/models/real_time_decision.rb +8 -2
- data/lib/increase/models/simulations/card_authorization_create_params.rb +8 -2
- data/lib/increase/models/simulations/card_balance_inquiry_create_params.rb +8 -2
- data/lib/increase/models/transaction.rb +4 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +445 -9
- data/rbi/increase/models/declined_transaction.rbi +16 -2
- data/rbi/increase/models/pending_transaction.rbi +8 -1
- data/rbi/increase/models/real_time_decision.rbi +16 -2
- data/rbi/increase/models/simulations/card_authorization_create_params.rbi +16 -2
- data/rbi/increase/models/simulations/card_balance_inquiry_create_params.rbi +16 -2
- data/rbi/increase/models/transaction.rbi +8 -1
- data/sig/increase/models/card_payment.rbs +222 -9
- data/sig/increase/models/declined_transaction.rbs +10 -2
- data/sig/increase/models/pending_transaction.rbs +5 -1
- data/sig/increase/models/real_time_decision.rbs +10 -2
- data/sig/increase/models/simulations/card_authorization_create_params.rbs +10 -2
- data/sig/increase/models/simulations/card_balance_inquiry_create_params.rbs +10 -2
- data/sig/increase/models/transaction.rbs +5 -1
- metadata +1 -1
|
@@ -626,6 +626,11 @@ module Increase
|
|
|
626
626
|
sig { returns(String) }
|
|
627
627
|
attr_accessor :id
|
|
628
628
|
|
|
629
|
+
# A unique identifier assigned by the Access Control Server (us) for this
|
|
630
|
+
# transaction.
|
|
631
|
+
sig { returns(String) }
|
|
632
|
+
attr_accessor :access_control_server_transaction_id
|
|
633
|
+
|
|
629
634
|
# The city of the cardholder billing address associated with the card used for
|
|
630
635
|
# this purchase.
|
|
631
636
|
sig { returns(T.nilable(String)) }
|
|
@@ -738,6 +743,11 @@ module Increase
|
|
|
738
743
|
end
|
|
739
744
|
attr_writer :device_channel
|
|
740
745
|
|
|
746
|
+
# A unique identifier assigned by the Directory Server (the card network) for this
|
|
747
|
+
# transaction.
|
|
748
|
+
sig { returns(String) }
|
|
749
|
+
attr_accessor :directory_server_transaction_id
|
|
750
|
+
|
|
741
751
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
742
752
|
# is transacting with.
|
|
743
753
|
sig { returns(String) }
|
|
@@ -804,6 +814,34 @@ module Increase
|
|
|
804
814
|
sig { returns(String) }
|
|
805
815
|
attr_accessor :requestor_url
|
|
806
816
|
|
|
817
|
+
# The city of the shipping address associated with this purchase.
|
|
818
|
+
sig { returns(T.nilable(String)) }
|
|
819
|
+
attr_accessor :shipping_address_city
|
|
820
|
+
|
|
821
|
+
# The country of the shipping address associated with this purchase.
|
|
822
|
+
sig { returns(T.nilable(String)) }
|
|
823
|
+
attr_accessor :shipping_address_country
|
|
824
|
+
|
|
825
|
+
# The first line of the shipping address associated with this purchase.
|
|
826
|
+
sig { returns(T.nilable(String)) }
|
|
827
|
+
attr_accessor :shipping_address_line1
|
|
828
|
+
|
|
829
|
+
# The second line of the shipping address associated with this purchase.
|
|
830
|
+
sig { returns(T.nilable(String)) }
|
|
831
|
+
attr_accessor :shipping_address_line2
|
|
832
|
+
|
|
833
|
+
# The third line of the shipping address associated with this purchase.
|
|
834
|
+
sig { returns(T.nilable(String)) }
|
|
835
|
+
attr_accessor :shipping_address_line3
|
|
836
|
+
|
|
837
|
+
# The postal code of the shipping address associated with this purchase.
|
|
838
|
+
sig { returns(T.nilable(String)) }
|
|
839
|
+
attr_accessor :shipping_address_postal_code
|
|
840
|
+
|
|
841
|
+
# The US state of the shipping address associated with this purchase.
|
|
842
|
+
sig { returns(T.nilable(String)) }
|
|
843
|
+
attr_accessor :shipping_address_state
|
|
844
|
+
|
|
807
845
|
# The status of the card authentication.
|
|
808
846
|
sig do
|
|
809
847
|
returns(
|
|
@@ -812,6 +850,21 @@ module Increase
|
|
|
812
850
|
end
|
|
813
851
|
attr_accessor :status
|
|
814
852
|
|
|
853
|
+
# A unique identifier assigned by the 3DS Server initiating the authentication
|
|
854
|
+
# attempt for this transaction.
|
|
855
|
+
sig { returns(String) }
|
|
856
|
+
attr_accessor :three_d_secure_server_transaction_id
|
|
857
|
+
|
|
858
|
+
# The type of transaction being authenticated.
|
|
859
|
+
sig do
|
|
860
|
+
returns(
|
|
861
|
+
T.nilable(
|
|
862
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType::TaggedSymbol
|
|
863
|
+
)
|
|
864
|
+
)
|
|
865
|
+
end
|
|
866
|
+
attr_accessor :transaction_type
|
|
867
|
+
|
|
815
868
|
# A constant representing the object's type. For this resource it will always be
|
|
816
869
|
# `card_authentication`.
|
|
817
870
|
sig do
|
|
@@ -827,6 +880,7 @@ module Increase
|
|
|
827
880
|
sig do
|
|
828
881
|
params(
|
|
829
882
|
id: String,
|
|
883
|
+
access_control_server_transaction_id: String,
|
|
830
884
|
billing_address_city: T.nilable(String),
|
|
831
885
|
billing_address_country: T.nilable(String),
|
|
832
886
|
billing_address_line1: T.nilable(String),
|
|
@@ -853,6 +907,7 @@ module Increase
|
|
|
853
907
|
),
|
|
854
908
|
device_channel:
|
|
855
909
|
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::OrHash,
|
|
910
|
+
directory_server_transaction_id: String,
|
|
856
911
|
merchant_acceptor_id: String,
|
|
857
912
|
merchant_category_code: String,
|
|
858
913
|
merchant_country: String,
|
|
@@ -871,8 +926,20 @@ module Increase
|
|
|
871
926
|
),
|
|
872
927
|
requestor_name: String,
|
|
873
928
|
requestor_url: String,
|
|
929
|
+
shipping_address_city: T.nilable(String),
|
|
930
|
+
shipping_address_country: T.nilable(String),
|
|
931
|
+
shipping_address_line1: T.nilable(String),
|
|
932
|
+
shipping_address_line2: T.nilable(String),
|
|
933
|
+
shipping_address_line3: T.nilable(String),
|
|
934
|
+
shipping_address_postal_code: T.nilable(String),
|
|
935
|
+
shipping_address_state: T.nilable(String),
|
|
874
936
|
status:
|
|
875
937
|
Increase::CardPayment::Element::CardAuthentication::Status::OrSymbol,
|
|
938
|
+
three_d_secure_server_transaction_id: String,
|
|
939
|
+
transaction_type:
|
|
940
|
+
T.nilable(
|
|
941
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType::OrSymbol
|
|
942
|
+
),
|
|
876
943
|
type:
|
|
877
944
|
Increase::CardPayment::Element::CardAuthentication::Type::OrSymbol
|
|
878
945
|
).returns(T.attached_class)
|
|
@@ -880,6 +947,9 @@ module Increase
|
|
|
880
947
|
def self.new(
|
|
881
948
|
# The Card Authentication identifier.
|
|
882
949
|
id:,
|
|
950
|
+
# A unique identifier assigned by the Access Control Server (us) for this
|
|
951
|
+
# transaction.
|
|
952
|
+
access_control_server_transaction_id:,
|
|
883
953
|
# The city of the cardholder billing address associated with the card used for
|
|
884
954
|
# this purchase.
|
|
885
955
|
billing_address_city:,
|
|
@@ -920,6 +990,9 @@ module Increase
|
|
|
920
990
|
deny_reason:,
|
|
921
991
|
# The device channel of the card authentication attempt.
|
|
922
992
|
device_channel:,
|
|
993
|
+
# A unique identifier assigned by the Directory Server (the card network) for this
|
|
994
|
+
# transaction.
|
|
995
|
+
directory_server_transaction_id:,
|
|
923
996
|
# The merchant identifier (commonly abbreviated as MID) of the merchant the card
|
|
924
997
|
# is transacting with.
|
|
925
998
|
merchant_acceptor_id:,
|
|
@@ -950,8 +1023,27 @@ module Increase
|
|
|
950
1023
|
requestor_name:,
|
|
951
1024
|
# The URL of the 3DS requestor.
|
|
952
1025
|
requestor_url:,
|
|
1026
|
+
# The city of the shipping address associated with this purchase.
|
|
1027
|
+
shipping_address_city:,
|
|
1028
|
+
# The country of the shipping address associated with this purchase.
|
|
1029
|
+
shipping_address_country:,
|
|
1030
|
+
# The first line of the shipping address associated with this purchase.
|
|
1031
|
+
shipping_address_line1:,
|
|
1032
|
+
# The second line of the shipping address associated with this purchase.
|
|
1033
|
+
shipping_address_line2:,
|
|
1034
|
+
# The third line of the shipping address associated with this purchase.
|
|
1035
|
+
shipping_address_line3:,
|
|
1036
|
+
# The postal code of the shipping address associated with this purchase.
|
|
1037
|
+
shipping_address_postal_code:,
|
|
1038
|
+
# The US state of the shipping address associated with this purchase.
|
|
1039
|
+
shipping_address_state:,
|
|
953
1040
|
# The status of the card authentication.
|
|
954
1041
|
status:,
|
|
1042
|
+
# A unique identifier assigned by the 3DS Server initiating the authentication
|
|
1043
|
+
# attempt for this transaction.
|
|
1044
|
+
three_d_secure_server_transaction_id:,
|
|
1045
|
+
# The type of transaction being authenticated.
|
|
1046
|
+
transaction_type:,
|
|
955
1047
|
# A constant representing the object's type. For this resource it will always be
|
|
956
1048
|
# `card_authentication`.
|
|
957
1049
|
type:
|
|
@@ -962,6 +1054,7 @@ module Increase
|
|
|
962
1054
|
override.returns(
|
|
963
1055
|
{
|
|
964
1056
|
id: String,
|
|
1057
|
+
access_control_server_transaction_id: String,
|
|
965
1058
|
billing_address_city: T.nilable(String),
|
|
966
1059
|
billing_address_country: T.nilable(String),
|
|
967
1060
|
billing_address_line1: T.nilable(String),
|
|
@@ -988,6 +1081,7 @@ module Increase
|
|
|
988
1081
|
),
|
|
989
1082
|
device_channel:
|
|
990
1083
|
Increase::CardPayment::Element::CardAuthentication::DeviceChannel,
|
|
1084
|
+
directory_server_transaction_id: String,
|
|
991
1085
|
merchant_acceptor_id: String,
|
|
992
1086
|
merchant_category_code: String,
|
|
993
1087
|
merchant_country: String,
|
|
@@ -1006,8 +1100,20 @@ module Increase
|
|
|
1006
1100
|
),
|
|
1007
1101
|
requestor_name: String,
|
|
1008
1102
|
requestor_url: String,
|
|
1103
|
+
shipping_address_city: T.nilable(String),
|
|
1104
|
+
shipping_address_country: T.nilable(String),
|
|
1105
|
+
shipping_address_line1: T.nilable(String),
|
|
1106
|
+
shipping_address_line2: T.nilable(String),
|
|
1107
|
+
shipping_address_line3: T.nilable(String),
|
|
1108
|
+
shipping_address_postal_code: T.nilable(String),
|
|
1109
|
+
shipping_address_state: T.nilable(String),
|
|
1009
1110
|
status:
|
|
1010
1111
|
Increase::CardPayment::Element::CardAuthentication::Status::TaggedSymbol,
|
|
1112
|
+
three_d_secure_server_transaction_id: String,
|
|
1113
|
+
transaction_type:
|
|
1114
|
+
T.nilable(
|
|
1115
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType::TaggedSymbol
|
|
1116
|
+
),
|
|
1011
1117
|
type:
|
|
1012
1118
|
Increase::CardPayment::Element::CardAuthentication::Type::TaggedSymbol
|
|
1013
1119
|
}
|
|
@@ -1381,6 +1487,26 @@ module Increase
|
|
|
1381
1487
|
end
|
|
1382
1488
|
attr_accessor :category
|
|
1383
1489
|
|
|
1490
|
+
# Fields specific to merchant initiated transactions.
|
|
1491
|
+
sig do
|
|
1492
|
+
returns(
|
|
1493
|
+
T.nilable(
|
|
1494
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated
|
|
1495
|
+
)
|
|
1496
|
+
)
|
|
1497
|
+
end
|
|
1498
|
+
attr_reader :merchant_initiated
|
|
1499
|
+
|
|
1500
|
+
sig do
|
|
1501
|
+
params(
|
|
1502
|
+
merchant_initiated:
|
|
1503
|
+
T.nilable(
|
|
1504
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::OrHash
|
|
1505
|
+
)
|
|
1506
|
+
).void
|
|
1507
|
+
end
|
|
1508
|
+
attr_writer :merchant_initiated
|
|
1509
|
+
|
|
1384
1510
|
# The device channel of the card authentication attempt.
|
|
1385
1511
|
sig do
|
|
1386
1512
|
params(
|
|
@@ -1389,14 +1515,20 @@ module Increase
|
|
|
1389
1515
|
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::Browser::OrHash
|
|
1390
1516
|
),
|
|
1391
1517
|
category:
|
|
1392
|
-
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::Category::OrSymbol
|
|
1518
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::Category::OrSymbol,
|
|
1519
|
+
merchant_initiated:
|
|
1520
|
+
T.nilable(
|
|
1521
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::OrHash
|
|
1522
|
+
)
|
|
1393
1523
|
).returns(T.attached_class)
|
|
1394
1524
|
end
|
|
1395
1525
|
def self.new(
|
|
1396
1526
|
# Fields specific to the browser device channel.
|
|
1397
1527
|
browser:,
|
|
1398
1528
|
# The category of the device channel.
|
|
1399
|
-
category
|
|
1529
|
+
category:,
|
|
1530
|
+
# Fields specific to merchant initiated transactions.
|
|
1531
|
+
merchant_initiated:
|
|
1400
1532
|
)
|
|
1401
1533
|
end
|
|
1402
1534
|
|
|
@@ -1408,7 +1540,11 @@ module Increase
|
|
|
1408
1540
|
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::Browser
|
|
1409
1541
|
),
|
|
1410
1542
|
category:
|
|
1411
|
-
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::Category::TaggedSymbol
|
|
1543
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::Category::TaggedSymbol,
|
|
1544
|
+
merchant_initiated:
|
|
1545
|
+
T.nilable(
|
|
1546
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated
|
|
1547
|
+
)
|
|
1412
1548
|
}
|
|
1413
1549
|
)
|
|
1414
1550
|
end
|
|
@@ -1577,6 +1713,205 @@ module Increase
|
|
|
1577
1713
|
def self.values
|
|
1578
1714
|
end
|
|
1579
1715
|
end
|
|
1716
|
+
|
|
1717
|
+
class MerchantInitiated < Increase::Internal::Type::BaseModel
|
|
1718
|
+
OrHash =
|
|
1719
|
+
T.type_alias do
|
|
1720
|
+
T.any(
|
|
1721
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated,
|
|
1722
|
+
Increase::Internal::AnyHash
|
|
1723
|
+
)
|
|
1724
|
+
end
|
|
1725
|
+
|
|
1726
|
+
# The merchant initiated indicator for the transaction.
|
|
1727
|
+
sig do
|
|
1728
|
+
returns(
|
|
1729
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1730
|
+
)
|
|
1731
|
+
end
|
|
1732
|
+
attr_accessor :indicator
|
|
1733
|
+
|
|
1734
|
+
# Fields specific to merchant initiated transactions.
|
|
1735
|
+
sig do
|
|
1736
|
+
params(
|
|
1737
|
+
indicator:
|
|
1738
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::OrSymbol
|
|
1739
|
+
).returns(T.attached_class)
|
|
1740
|
+
end
|
|
1741
|
+
def self.new(
|
|
1742
|
+
# The merchant initiated indicator for the transaction.
|
|
1743
|
+
indicator:
|
|
1744
|
+
)
|
|
1745
|
+
end
|
|
1746
|
+
|
|
1747
|
+
sig do
|
|
1748
|
+
override.returns(
|
|
1749
|
+
{
|
|
1750
|
+
indicator:
|
|
1751
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1752
|
+
}
|
|
1753
|
+
)
|
|
1754
|
+
end
|
|
1755
|
+
def to_hash
|
|
1756
|
+
end
|
|
1757
|
+
|
|
1758
|
+
# The merchant initiated indicator for the transaction.
|
|
1759
|
+
module Indicator
|
|
1760
|
+
extend Increase::Internal::Type::Enum
|
|
1761
|
+
|
|
1762
|
+
TaggedSymbol =
|
|
1763
|
+
T.type_alias do
|
|
1764
|
+
T.all(
|
|
1765
|
+
Symbol,
|
|
1766
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator
|
|
1767
|
+
)
|
|
1768
|
+
end
|
|
1769
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
1770
|
+
|
|
1771
|
+
# Recurring transaction.
|
|
1772
|
+
RECURRING_TRANSACTION =
|
|
1773
|
+
T.let(
|
|
1774
|
+
:recurring_transaction,
|
|
1775
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1776
|
+
)
|
|
1777
|
+
|
|
1778
|
+
# Installment transaction.
|
|
1779
|
+
INSTALLMENT_TRANSACTION =
|
|
1780
|
+
T.let(
|
|
1781
|
+
:installment_transaction,
|
|
1782
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1783
|
+
)
|
|
1784
|
+
|
|
1785
|
+
# Add card.
|
|
1786
|
+
ADD_CARD =
|
|
1787
|
+
T.let(
|
|
1788
|
+
:add_card,
|
|
1789
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1790
|
+
)
|
|
1791
|
+
|
|
1792
|
+
# Maintain card information.
|
|
1793
|
+
MAINTAIN_CARD_INFORMATION =
|
|
1794
|
+
T.let(
|
|
1795
|
+
:maintain_card_information,
|
|
1796
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1797
|
+
)
|
|
1798
|
+
|
|
1799
|
+
# Account verification.
|
|
1800
|
+
ACCOUNT_VERIFICATION =
|
|
1801
|
+
T.let(
|
|
1802
|
+
:account_verification,
|
|
1803
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1804
|
+
)
|
|
1805
|
+
|
|
1806
|
+
# Split or delayed shipment.
|
|
1807
|
+
SPLIT_DELAYED_SHIPMENT =
|
|
1808
|
+
T.let(
|
|
1809
|
+
:split_delayed_shipment,
|
|
1810
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1811
|
+
)
|
|
1812
|
+
|
|
1813
|
+
# Top up.
|
|
1814
|
+
TOP_UP =
|
|
1815
|
+
T.let(
|
|
1816
|
+
:top_up,
|
|
1817
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1818
|
+
)
|
|
1819
|
+
|
|
1820
|
+
# Mail order.
|
|
1821
|
+
MAIL_ORDER =
|
|
1822
|
+
T.let(
|
|
1823
|
+
:mail_order,
|
|
1824
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1825
|
+
)
|
|
1826
|
+
|
|
1827
|
+
# Telephone order.
|
|
1828
|
+
TELEPHONE_ORDER =
|
|
1829
|
+
T.let(
|
|
1830
|
+
:telephone_order,
|
|
1831
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1832
|
+
)
|
|
1833
|
+
|
|
1834
|
+
# Whitelist status check.
|
|
1835
|
+
WHITELIST_STATUS_CHECK =
|
|
1836
|
+
T.let(
|
|
1837
|
+
:whitelist_status_check,
|
|
1838
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1839
|
+
)
|
|
1840
|
+
|
|
1841
|
+
# Other payment.
|
|
1842
|
+
OTHER_PAYMENT =
|
|
1843
|
+
T.let(
|
|
1844
|
+
:other_payment,
|
|
1845
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1846
|
+
)
|
|
1847
|
+
|
|
1848
|
+
# Billing agreement.
|
|
1849
|
+
BILLING_AGREEMENT =
|
|
1850
|
+
T.let(
|
|
1851
|
+
:billing_agreement,
|
|
1852
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1853
|
+
)
|
|
1854
|
+
|
|
1855
|
+
# Device binding status check.
|
|
1856
|
+
DEVICE_BINDING_STATUS_CHECK =
|
|
1857
|
+
T.let(
|
|
1858
|
+
:device_binding_status_check,
|
|
1859
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1860
|
+
)
|
|
1861
|
+
|
|
1862
|
+
# Card security code status check.
|
|
1863
|
+
CARD_SECURITY_CODE_STATUS_CHECK =
|
|
1864
|
+
T.let(
|
|
1865
|
+
:card_security_code_status_check,
|
|
1866
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1867
|
+
)
|
|
1868
|
+
|
|
1869
|
+
# Delayed shipment.
|
|
1870
|
+
DELAYED_SHIPMENT =
|
|
1871
|
+
T.let(
|
|
1872
|
+
:delayed_shipment,
|
|
1873
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1874
|
+
)
|
|
1875
|
+
|
|
1876
|
+
# Split payment.
|
|
1877
|
+
SPLIT_PAYMENT =
|
|
1878
|
+
T.let(
|
|
1879
|
+
:split_payment,
|
|
1880
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1881
|
+
)
|
|
1882
|
+
|
|
1883
|
+
# FIDO credential deletion.
|
|
1884
|
+
FIDO_CREDENTIAL_DELETION =
|
|
1885
|
+
T.let(
|
|
1886
|
+
:fido_credential_deletion,
|
|
1887
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1888
|
+
)
|
|
1889
|
+
|
|
1890
|
+
# FIDO credential registration.
|
|
1891
|
+
FIDO_CREDENTIAL_REGISTRATION =
|
|
1892
|
+
T.let(
|
|
1893
|
+
:fido_credential_registration,
|
|
1894
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1895
|
+
)
|
|
1896
|
+
|
|
1897
|
+
# Decoupled authentication fallback.
|
|
1898
|
+
DECOUPLED_AUTHENTICATION_FALLBACK =
|
|
1899
|
+
T.let(
|
|
1900
|
+
:decoupled_authentication_fallback,
|
|
1901
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1902
|
+
)
|
|
1903
|
+
|
|
1904
|
+
sig do
|
|
1905
|
+
override.returns(
|
|
1906
|
+
T::Array[
|
|
1907
|
+
Increase::CardPayment::Element::CardAuthentication::DeviceChannel::MerchantInitiated::Indicator::TaggedSymbol
|
|
1908
|
+
]
|
|
1909
|
+
)
|
|
1910
|
+
end
|
|
1911
|
+
def self.values
|
|
1912
|
+
end
|
|
1913
|
+
end
|
|
1914
|
+
end
|
|
1580
1915
|
end
|
|
1581
1916
|
|
|
1582
1917
|
# The 3DS requestor authentication indicator describes why the authentication
|
|
@@ -1827,6 +2162,65 @@ module Increase
|
|
|
1827
2162
|
end
|
|
1828
2163
|
end
|
|
1829
2164
|
|
|
2165
|
+
# The type of transaction being authenticated.
|
|
2166
|
+
module TransactionType
|
|
2167
|
+
extend Increase::Internal::Type::Enum
|
|
2168
|
+
|
|
2169
|
+
TaggedSymbol =
|
|
2170
|
+
T.type_alias do
|
|
2171
|
+
T.all(
|
|
2172
|
+
Symbol,
|
|
2173
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType
|
|
2174
|
+
)
|
|
2175
|
+
end
|
|
2176
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
2177
|
+
|
|
2178
|
+
# Purchase of goods or services.
|
|
2179
|
+
GOODS_SERVICE_PURCHASE =
|
|
2180
|
+
T.let(
|
|
2181
|
+
:goods_service_purchase,
|
|
2182
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType::TaggedSymbol
|
|
2183
|
+
)
|
|
2184
|
+
|
|
2185
|
+
# Check acceptance.
|
|
2186
|
+
CHECK_ACCEPTANCE =
|
|
2187
|
+
T.let(
|
|
2188
|
+
:check_acceptance,
|
|
2189
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType::TaggedSymbol
|
|
2190
|
+
)
|
|
2191
|
+
|
|
2192
|
+
# Account funding.
|
|
2193
|
+
ACCOUNT_FUNDING =
|
|
2194
|
+
T.let(
|
|
2195
|
+
:account_funding,
|
|
2196
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType::TaggedSymbol
|
|
2197
|
+
)
|
|
2198
|
+
|
|
2199
|
+
# Quasi-cash transaction.
|
|
2200
|
+
QUASI_CASH_TRANSACTION =
|
|
2201
|
+
T.let(
|
|
2202
|
+
:quasi_cash_transaction,
|
|
2203
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType::TaggedSymbol
|
|
2204
|
+
)
|
|
2205
|
+
|
|
2206
|
+
# Prepaid activation and load.
|
|
2207
|
+
PREPAID_ACTIVATION_AND_LOAD =
|
|
2208
|
+
T.let(
|
|
2209
|
+
:prepaid_activation_and_load,
|
|
2210
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType::TaggedSymbol
|
|
2211
|
+
)
|
|
2212
|
+
|
|
2213
|
+
sig do
|
|
2214
|
+
override.returns(
|
|
2215
|
+
T::Array[
|
|
2216
|
+
Increase::CardPayment::Element::CardAuthentication::TransactionType::TaggedSymbol
|
|
2217
|
+
]
|
|
2218
|
+
)
|
|
2219
|
+
end
|
|
2220
|
+
def self.values
|
|
2221
|
+
end
|
|
2222
|
+
end
|
|
2223
|
+
|
|
1830
2224
|
# A constant representing the object's type. For this resource it will always be
|
|
1831
2225
|
# `card_authentication`.
|
|
1832
2226
|
module Type
|
|
@@ -3583,13 +3977,20 @@ module Increase
|
|
|
3583
3977
|
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
3584
3978
|
)
|
|
3585
3979
|
|
|
3586
|
-
# The physical card read had an invalid CVV
|
|
3980
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
3587
3981
|
INVALID_PHYSICAL_CARD =
|
|
3588
3982
|
T.let(
|
|
3589
3983
|
:invalid_physical_card,
|
|
3590
3984
|
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
3591
3985
|
)
|
|
3592
3986
|
|
|
3987
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
3988
|
+
INVALID_CRYPTOGRAM =
|
|
3989
|
+
T.let(
|
|
3990
|
+
:invalid_cryptogram,
|
|
3991
|
+
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
3992
|
+
)
|
|
3993
|
+
|
|
3593
3994
|
# The 3DS cardholder authentication verification value was invalid.
|
|
3594
3995
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
3595
3996
|
T.let(
|
|
@@ -6068,13 +6469,20 @@ module Increase
|
|
|
6068
6469
|
Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
6069
6470
|
)
|
|
6070
6471
|
|
|
6071
|
-
# The physical card read had an invalid CVV
|
|
6472
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
6072
6473
|
INVALID_PHYSICAL_CARD =
|
|
6073
6474
|
T.let(
|
|
6074
6475
|
:invalid_physical_card,
|
|
6075
6476
|
Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
6076
6477
|
)
|
|
6077
6478
|
|
|
6479
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
6480
|
+
INVALID_CRYPTOGRAM =
|
|
6481
|
+
T.let(
|
|
6482
|
+
:invalid_cryptogram,
|
|
6483
|
+
Increase::CardPayment::Element::CardBalanceInquiry::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
6484
|
+
)
|
|
6485
|
+
|
|
6078
6486
|
# The 3DS cardholder authentication verification value was invalid.
|
|
6079
6487
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
6080
6488
|
T.let(
|
|
@@ -8436,13 +8844,20 @@ module Increase
|
|
|
8436
8844
|
Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
8437
8845
|
)
|
|
8438
8846
|
|
|
8439
|
-
# The physical card read had an invalid CVV
|
|
8847
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
8440
8848
|
INVALID_PHYSICAL_CARD =
|
|
8441
8849
|
T.let(
|
|
8442
8850
|
:invalid_physical_card,
|
|
8443
8851
|
Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
8444
8852
|
)
|
|
8445
8853
|
|
|
8854
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
8855
|
+
INVALID_CRYPTOGRAM =
|
|
8856
|
+
T.let(
|
|
8857
|
+
:invalid_cryptogram,
|
|
8858
|
+
Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
8859
|
+
)
|
|
8860
|
+
|
|
8446
8861
|
# The 3DS cardholder authentication verification value was invalid.
|
|
8447
8862
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
8448
8863
|
T.let(
|
|
@@ -8925,7 +9340,7 @@ module Increase
|
|
|
8925
9340
|
Increase::CardPayment::Element::CardDecline::Reason::TaggedSymbol
|
|
8926
9341
|
)
|
|
8927
9342
|
|
|
8928
|
-
# The card read had an invalid CVV
|
|
9343
|
+
# The card read had an invalid CVV or dCVV.
|
|
8929
9344
|
INVALID_PHYSICAL_CARD =
|
|
8930
9345
|
T.let(
|
|
8931
9346
|
:invalid_physical_card,
|
|
@@ -8939,6 +9354,13 @@ module Increase
|
|
|
8939
9354
|
Increase::CardPayment::Element::CardDecline::Reason::TaggedSymbol
|
|
8940
9355
|
)
|
|
8941
9356
|
|
|
9357
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
9358
|
+
INVALID_CRYPTOGRAM =
|
|
9359
|
+
T.let(
|
|
9360
|
+
:invalid_cryptogram,
|
|
9361
|
+
Increase::CardPayment::Element::CardDecline::Reason::TaggedSymbol
|
|
9362
|
+
)
|
|
9363
|
+
|
|
8942
9364
|
# The transaction was declined because the 3DS authentication failed.
|
|
8943
9365
|
FAILED_3DS_AUTHENTICATION =
|
|
8944
9366
|
T.let(
|
|
@@ -11072,13 +11494,20 @@ module Increase
|
|
|
11072
11494
|
Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
11073
11495
|
)
|
|
11074
11496
|
|
|
11075
|
-
# The physical card read had an invalid CVV
|
|
11497
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
11076
11498
|
INVALID_PHYSICAL_CARD =
|
|
11077
11499
|
T.let(
|
|
11078
11500
|
:invalid_physical_card,
|
|
11079
11501
|
Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
11080
11502
|
)
|
|
11081
11503
|
|
|
11504
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
11505
|
+
INVALID_CRYPTOGRAM =
|
|
11506
|
+
T.let(
|
|
11507
|
+
:invalid_cryptogram,
|
|
11508
|
+
Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
11509
|
+
)
|
|
11510
|
+
|
|
11082
11511
|
# The 3DS cardholder authentication verification value was invalid.
|
|
11083
11512
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
11084
11513
|
T.let(
|
|
@@ -20198,13 +20627,20 @@ module Increase
|
|
|
20198
20627
|
Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
20199
20628
|
)
|
|
20200
20629
|
|
|
20201
|
-
# The physical card read had an invalid CVV
|
|
20630
|
+
# The physical card read had an invalid CVV or dCVV.
|
|
20202
20631
|
INVALID_PHYSICAL_CARD =
|
|
20203
20632
|
T.let(
|
|
20204
20633
|
:invalid_physical_card,
|
|
20205
20634
|
Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
20206
20635
|
)
|
|
20207
20636
|
|
|
20637
|
+
# The card's authorization request cryptogram was invalid. The cryptogram can be from a physical card or a Digital Wallet Token purchase.
|
|
20638
|
+
INVALID_CRYPTOGRAM =
|
|
20639
|
+
T.let(
|
|
20640
|
+
:invalid_cryptogram,
|
|
20641
|
+
Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::StandInProcessingReason::TaggedSymbol
|
|
20642
|
+
)
|
|
20643
|
+
|
|
20208
20644
|
# The 3DS cardholder authentication verification value was invalid.
|
|
20209
20645
|
INVALID_CARDHOLDER_AUTHENTICATION_VERIFICATION_VALUE =
|
|
20210
20646
|
T.let(
|