increase 1.273.0 → 1.275.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.
@@ -9,7 +9,6 @@ module Increase
9
9
  digital_wallet_token_id: String?,
10
10
  elements: ::Array[Increase::CardPayment::Element],
11
11
  physical_card_id: String?,
12
- scheme_fees: ::Array[Increase::CardPayment::SchemeFee],
13
12
  state: Increase::CardPayment::State,
14
13
  type: Increase::Models::CardPayment::type_
15
14
  }
@@ -29,8 +28,6 @@ module Increase
29
28
 
30
29
  attr_accessor physical_card_id: String?
31
30
 
32
- attr_accessor scheme_fees: ::Array[Increase::CardPayment::SchemeFee]
33
-
34
31
  attr_accessor state: Increase::CardPayment::State
35
32
 
36
33
  attr_accessor type: Increase::Models::CardPayment::type_
@@ -43,7 +40,6 @@ module Increase
43
40
  digital_wallet_token_id: String?,
44
41
  elements: ::Array[Increase::CardPayment::Element],
45
42
  physical_card_id: String?,
46
- scheme_fees: ::Array[Increase::CardPayment::SchemeFee],
47
43
  state: Increase::CardPayment::State,
48
44
  type: Increase::Models::CardPayment::type_
49
45
  ) -> void
@@ -56,7 +52,6 @@ module Increase
56
52
  digital_wallet_token_id: String?,
57
53
  elements: ::Array[Increase::CardPayment::Element],
58
54
  physical_card_id: String?,
59
- scheme_fees: ::Array[Increase::CardPayment::SchemeFee],
60
55
  state: Increase::CardPayment::State,
61
56
  type: Increase::Models::CardPayment::type_
62
57
  }
@@ -1008,6 +1003,7 @@ module Increase
1008
1003
  presentment_currency: String,
1009
1004
  processing_category: Increase::Models::CardPayment::Element::CardAuthorization::processing_category,
1010
1005
  real_time_decision_id: String?,
1006
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardAuthorization::SchemeFee],
1011
1007
  terminal_id: String?,
1012
1008
  type: Increase::Models::CardPayment::Element::CardAuthorization::type_,
1013
1009
  verification: Increase::CardPayment::Element::CardAuthorization::Verification
@@ -1064,6 +1060,8 @@ module Increase
1064
1060
 
1065
1061
  attr_accessor real_time_decision_id: String?
1066
1062
 
1063
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardAuthorization::SchemeFee]
1064
+
1067
1065
  attr_accessor terminal_id: String?
1068
1066
 
1069
1067
  attr_accessor type: Increase::Models::CardPayment::Element::CardAuthorization::type_
@@ -1096,6 +1094,7 @@ module Increase
1096
1094
  presentment_currency: String,
1097
1095
  processing_category: Increase::Models::CardPayment::Element::CardAuthorization::processing_category,
1098
1096
  real_time_decision_id: String?,
1097
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardAuthorization::SchemeFee],
1099
1098
  terminal_id: String?,
1100
1099
  type: Increase::Models::CardPayment::Element::CardAuthorization::type_,
1101
1100
  verification: Increase::CardPayment::Element::CardAuthorization::Verification
@@ -1127,6 +1126,7 @@ module Increase
1127
1126
  presentment_currency: String,
1128
1127
  processing_category: Increase::Models::CardPayment::Element::CardAuthorization::processing_category,
1129
1128
  real_time_decision_id: String?,
1129
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardAuthorization::SchemeFee],
1130
1130
  terminal_id: String?,
1131
1131
  type: Increase::Models::CardPayment::Element::CardAuthorization::type_,
1132
1132
  verification: Increase::CardPayment::Element::CardAuthorization::Verification
@@ -1685,6 +1685,183 @@ module Increase
1685
1685
  def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorization::processing_category]
1686
1686
  end
1687
1687
 
1688
+ type scheme_fee =
1689
+ {
1690
+ amount: String,
1691
+ created_at: Time,
1692
+ currency: Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::currency,
1693
+ fee_type: Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::fee_type,
1694
+ fixed_component: String?,
1695
+ variable_rate: String?
1696
+ }
1697
+
1698
+ class SchemeFee < Increase::Internal::Type::BaseModel
1699
+ attr_accessor amount: String
1700
+
1701
+ attr_accessor created_at: Time
1702
+
1703
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::currency
1704
+
1705
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::fee_type
1706
+
1707
+ attr_accessor fixed_component: String?
1708
+
1709
+ attr_accessor variable_rate: String?
1710
+
1711
+ def initialize: (
1712
+ amount: String,
1713
+ created_at: Time,
1714
+ currency: Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::currency,
1715
+ fee_type: Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::fee_type,
1716
+ fixed_component: String?,
1717
+ variable_rate: String?
1718
+ ) -> void
1719
+
1720
+ def to_hash: -> {
1721
+ amount: String,
1722
+ created_at: Time,
1723
+ currency: Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::currency,
1724
+ fee_type: Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::fee_type,
1725
+ fixed_component: String?,
1726
+ variable_rate: String?
1727
+ }
1728
+
1729
+ type currency = :USD
1730
+
1731
+ module Currency
1732
+ extend Increase::Internal::Type::Enum
1733
+
1734
+ # US Dollar (USD)
1735
+ USD: :USD
1736
+
1737
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::currency]
1738
+ end
1739
+
1740
+ type fee_type =
1741
+ :visa_international_service_assessment_single_currency
1742
+ | :visa_international_service_assessment_cross_currency
1743
+ | :visa_authorization_domestic_point_of_sale
1744
+ | :visa_authorization_international_point_of_sale
1745
+ | :visa_authorization_canada_point_of_sale
1746
+ | :visa_authorization_reversal_point_of_sale
1747
+ | :visa_authorization_reversal_international_point_of_sale
1748
+ | :visa_authorization_address_verification_service
1749
+ | :visa_advanced_authorization
1750
+ | :visa_message_transmission
1751
+ | :visa_account_verification_domestic
1752
+ | :visa_account_verification_international
1753
+ | :visa_account_verification_canada
1754
+ | :visa_corporate_acceptance_fee
1755
+ | :visa_consumer_debit_acceptance_fee
1756
+ | :visa_business_debit_acceptance_fee
1757
+ | :visa_purchasing_acceptance_fee
1758
+ | :visa_purchase_domestic
1759
+ | :visa_purchase_international
1760
+ | :visa_credit_purchase_token
1761
+ | :visa_debit_purchase_token
1762
+ | :visa_clearing_transmission
1763
+ | :visa_direct_authorization
1764
+ | :visa_direct_transaction_domestic
1765
+ | :visa_service_commercial_credit
1766
+ | :visa_advertising_service_commercial_credit
1767
+ | :visa_community_growth_acceleration_program
1768
+ | :visa_processing_guarantee_commercial_credit
1769
+ | :pulse_switch_fee
1770
+
1771
+ module FeeType
1772
+ extend Increase::Internal::Type::Enum
1773
+
1774
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
1775
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
1776
+
1777
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
1778
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
1779
+
1780
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
1781
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
1782
+
1783
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
1784
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
1785
+
1786
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
1787
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
1788
+
1789
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
1790
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
1791
+
1792
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
1793
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
1794
+
1795
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
1796
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
1797
+
1798
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
1799
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
1800
+
1801
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
1802
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
1803
+
1804
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
1805
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
1806
+
1807
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
1808
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
1809
+
1810
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
1811
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
1812
+
1813
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
1814
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
1815
+
1816
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
1817
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
1818
+
1819
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
1820
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
1821
+
1822
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
1823
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
1824
+
1825
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
1826
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
1827
+
1828
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
1829
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
1830
+
1831
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
1832
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
1833
+
1834
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
1835
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
1836
+
1837
+ # A per transaction fee assessed for Base II financial draft - Issuer.
1838
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
1839
+
1840
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
1841
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
1842
+
1843
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
1844
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
1845
+
1846
+ # Issuer card service fee for Commercial Credit cards.
1847
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
1848
+
1849
+ # Issuer Advertising Service Fee for Commercial Credit cards.
1850
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
1851
+
1852
+ # Issuer Community Growth Acceleration Program Fee.
1853
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
1854
+
1855
+ # Issuer Processing Guarantee for Commercial Credit cards.
1856
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
1857
+
1858
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
1859
+ PULSE_SWITCH_FEE: :pulse_switch_fee
1860
+
1861
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorization::SchemeFee::fee_type]
1862
+ end
1863
+ end
1864
+
1688
1865
  type type_ = :card_authorization
1689
1866
 
1690
1867
  module Type
@@ -1950,6 +2127,7 @@ module Increase
1950
2127
  network_risk_score: Integer?,
1951
2128
  physical_card_id: String?,
1952
2129
  real_time_decision_id: String?,
2130
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardBalanceInquiry::SchemeFee],
1953
2131
  terminal_id: String?,
1954
2132
  type: Increase::Models::CardPayment::Element::CardBalanceInquiry::type_,
1955
2133
  verification: Increase::CardPayment::Element::CardBalanceInquiry::Verification
@@ -1992,6 +2170,8 @@ module Increase
1992
2170
 
1993
2171
  attr_accessor real_time_decision_id: String?
1994
2172
 
2173
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardBalanceInquiry::SchemeFee]
2174
+
1995
2175
  attr_accessor terminal_id: String?
1996
2176
 
1997
2177
  attr_accessor type: Increase::Models::CardPayment::Element::CardBalanceInquiry::type_
@@ -2017,6 +2197,7 @@ module Increase
2017
2197
  network_risk_score: Integer?,
2018
2198
  physical_card_id: String?,
2019
2199
  real_time_decision_id: String?,
2200
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardBalanceInquiry::SchemeFee],
2020
2201
  terminal_id: String?,
2021
2202
  type: Increase::Models::CardPayment::Element::CardBalanceInquiry::type_,
2022
2203
  verification: Increase::CardPayment::Element::CardBalanceInquiry::Verification
@@ -2041,6 +2222,7 @@ module Increase
2041
2222
  network_risk_score: Integer?,
2042
2223
  physical_card_id: String?,
2043
2224
  real_time_decision_id: String?,
2225
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardBalanceInquiry::SchemeFee],
2044
2226
  terminal_id: String?,
2045
2227
  type: Increase::Models::CardPayment::Element::CardBalanceInquiry::type_,
2046
2228
  verification: Increase::CardPayment::Element::CardBalanceInquiry::Verification
@@ -2520,6 +2702,183 @@ module Increase
2520
2702
  }
2521
2703
  end
2522
2704
 
2705
+ type scheme_fee =
2706
+ {
2707
+ amount: String,
2708
+ created_at: Time,
2709
+ currency: Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::currency,
2710
+ fee_type: Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::fee_type,
2711
+ fixed_component: String?,
2712
+ variable_rate: String?
2713
+ }
2714
+
2715
+ class SchemeFee < Increase::Internal::Type::BaseModel
2716
+ attr_accessor amount: String
2717
+
2718
+ attr_accessor created_at: Time
2719
+
2720
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::currency
2721
+
2722
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::fee_type
2723
+
2724
+ attr_accessor fixed_component: String?
2725
+
2726
+ attr_accessor variable_rate: String?
2727
+
2728
+ def initialize: (
2729
+ amount: String,
2730
+ created_at: Time,
2731
+ currency: Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::currency,
2732
+ fee_type: Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::fee_type,
2733
+ fixed_component: String?,
2734
+ variable_rate: String?
2735
+ ) -> void
2736
+
2737
+ def to_hash: -> {
2738
+ amount: String,
2739
+ created_at: Time,
2740
+ currency: Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::currency,
2741
+ fee_type: Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::fee_type,
2742
+ fixed_component: String?,
2743
+ variable_rate: String?
2744
+ }
2745
+
2746
+ type currency = :USD
2747
+
2748
+ module Currency
2749
+ extend Increase::Internal::Type::Enum
2750
+
2751
+ # US Dollar (USD)
2752
+ USD: :USD
2753
+
2754
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::currency]
2755
+ end
2756
+
2757
+ type fee_type =
2758
+ :visa_international_service_assessment_single_currency
2759
+ | :visa_international_service_assessment_cross_currency
2760
+ | :visa_authorization_domestic_point_of_sale
2761
+ | :visa_authorization_international_point_of_sale
2762
+ | :visa_authorization_canada_point_of_sale
2763
+ | :visa_authorization_reversal_point_of_sale
2764
+ | :visa_authorization_reversal_international_point_of_sale
2765
+ | :visa_authorization_address_verification_service
2766
+ | :visa_advanced_authorization
2767
+ | :visa_message_transmission
2768
+ | :visa_account_verification_domestic
2769
+ | :visa_account_verification_international
2770
+ | :visa_account_verification_canada
2771
+ | :visa_corporate_acceptance_fee
2772
+ | :visa_consumer_debit_acceptance_fee
2773
+ | :visa_business_debit_acceptance_fee
2774
+ | :visa_purchasing_acceptance_fee
2775
+ | :visa_purchase_domestic
2776
+ | :visa_purchase_international
2777
+ | :visa_credit_purchase_token
2778
+ | :visa_debit_purchase_token
2779
+ | :visa_clearing_transmission
2780
+ | :visa_direct_authorization
2781
+ | :visa_direct_transaction_domestic
2782
+ | :visa_service_commercial_credit
2783
+ | :visa_advertising_service_commercial_credit
2784
+ | :visa_community_growth_acceleration_program
2785
+ | :visa_processing_guarantee_commercial_credit
2786
+ | :pulse_switch_fee
2787
+
2788
+ module FeeType
2789
+ extend Increase::Internal::Type::Enum
2790
+
2791
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
2792
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
2793
+
2794
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
2795
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
2796
+
2797
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
2798
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
2799
+
2800
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
2801
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
2802
+
2803
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
2804
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
2805
+
2806
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
2807
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
2808
+
2809
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
2810
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
2811
+
2812
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
2813
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
2814
+
2815
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
2816
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
2817
+
2818
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
2819
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
2820
+
2821
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
2822
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
2823
+
2824
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
2825
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
2826
+
2827
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
2828
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
2829
+
2830
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
2831
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
2832
+
2833
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
2834
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
2835
+
2836
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
2837
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
2838
+
2839
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
2840
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
2841
+
2842
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
2843
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
2844
+
2845
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
2846
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
2847
+
2848
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
2849
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
2850
+
2851
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
2852
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
2853
+
2854
+ # A per transaction fee assessed for Base II financial draft - Issuer.
2855
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
2856
+
2857
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
2858
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
2859
+
2860
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
2861
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
2862
+
2863
+ # Issuer card service fee for Commercial Credit cards.
2864
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
2865
+
2866
+ # Issuer Advertising Service Fee for Commercial Credit cards.
2867
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
2868
+
2869
+ # Issuer Community Growth Acceleration Program Fee.
2870
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
2871
+
2872
+ # Issuer Processing Guarantee for Commercial Credit cards.
2873
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
2874
+
2875
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
2876
+ PULSE_SWITCH_FEE: :pulse_switch_fee
2877
+
2878
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardBalanceInquiry::SchemeFee::fee_type]
2879
+ end
2880
+ end
2881
+
2523
2882
  type type_ = :card_balance_inquiry
2524
2883
 
2525
2884
  module Type
@@ -2717,6 +3076,7 @@ module Increase
2717
3076
  real_time_decision_id: String?,
2718
3077
  real_time_decision_reason: Increase::Models::CardPayment::Element::CardDecline::real_time_decision_reason?,
2719
3078
  reason: Increase::Models::CardPayment::Element::CardDecline::reason,
3079
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardDecline::SchemeFee],
2720
3080
  terminal_id: String?,
2721
3081
  verification: Increase::CardPayment::Element::CardDecline::Verification
2722
3082
  }
@@ -2776,6 +3136,8 @@ module Increase
2776
3136
 
2777
3137
  attr_accessor reason: Increase::Models::CardPayment::Element::CardDecline::reason
2778
3138
 
3139
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardDecline::SchemeFee]
3140
+
2779
3141
  attr_accessor terminal_id: String?
2780
3142
 
2781
3143
  attr_accessor verification: Increase::CardPayment::Element::CardDecline::Verification
@@ -2808,6 +3170,7 @@ module Increase
2808
3170
  real_time_decision_id: String?,
2809
3171
  real_time_decision_reason: Increase::Models::CardPayment::Element::CardDecline::real_time_decision_reason?,
2810
3172
  reason: Increase::Models::CardPayment::Element::CardDecline::reason,
3173
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardDecline::SchemeFee],
2811
3174
  terminal_id: String?,
2812
3175
  verification: Increase::CardPayment::Element::CardDecline::Verification
2813
3176
  ) -> void
@@ -2840,6 +3203,7 @@ module Increase
2840
3203
  real_time_decision_id: String?,
2841
3204
  real_time_decision_reason: Increase::Models::CardPayment::Element::CardDecline::real_time_decision_reason?,
2842
3205
  reason: Increase::Models::CardPayment::Element::CardDecline::reason,
3206
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardDecline::SchemeFee],
2843
3207
  terminal_id: String?,
2844
3208
  verification: Increase::CardPayment::Element::CardDecline::Verification
2845
3209
  }
@@ -3521,6 +3885,183 @@ module Increase
3521
3885
  def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardDecline::reason]
3522
3886
  end
3523
3887
 
3888
+ type scheme_fee =
3889
+ {
3890
+ amount: String,
3891
+ created_at: Time,
3892
+ currency: Increase::Models::CardPayment::Element::CardDecline::SchemeFee::currency,
3893
+ fee_type: Increase::Models::CardPayment::Element::CardDecline::SchemeFee::fee_type,
3894
+ fixed_component: String?,
3895
+ variable_rate: String?
3896
+ }
3897
+
3898
+ class SchemeFee < Increase::Internal::Type::BaseModel
3899
+ attr_accessor amount: String
3900
+
3901
+ attr_accessor created_at: Time
3902
+
3903
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardDecline::SchemeFee::currency
3904
+
3905
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardDecline::SchemeFee::fee_type
3906
+
3907
+ attr_accessor fixed_component: String?
3908
+
3909
+ attr_accessor variable_rate: String?
3910
+
3911
+ def initialize: (
3912
+ amount: String,
3913
+ created_at: Time,
3914
+ currency: Increase::Models::CardPayment::Element::CardDecline::SchemeFee::currency,
3915
+ fee_type: Increase::Models::CardPayment::Element::CardDecline::SchemeFee::fee_type,
3916
+ fixed_component: String?,
3917
+ variable_rate: String?
3918
+ ) -> void
3919
+
3920
+ def to_hash: -> {
3921
+ amount: String,
3922
+ created_at: Time,
3923
+ currency: Increase::Models::CardPayment::Element::CardDecline::SchemeFee::currency,
3924
+ fee_type: Increase::Models::CardPayment::Element::CardDecline::SchemeFee::fee_type,
3925
+ fixed_component: String?,
3926
+ variable_rate: String?
3927
+ }
3928
+
3929
+ type currency = :USD
3930
+
3931
+ module Currency
3932
+ extend Increase::Internal::Type::Enum
3933
+
3934
+ # US Dollar (USD)
3935
+ USD: :USD
3936
+
3937
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardDecline::SchemeFee::currency]
3938
+ end
3939
+
3940
+ type fee_type =
3941
+ :visa_international_service_assessment_single_currency
3942
+ | :visa_international_service_assessment_cross_currency
3943
+ | :visa_authorization_domestic_point_of_sale
3944
+ | :visa_authorization_international_point_of_sale
3945
+ | :visa_authorization_canada_point_of_sale
3946
+ | :visa_authorization_reversal_point_of_sale
3947
+ | :visa_authorization_reversal_international_point_of_sale
3948
+ | :visa_authorization_address_verification_service
3949
+ | :visa_advanced_authorization
3950
+ | :visa_message_transmission
3951
+ | :visa_account_verification_domestic
3952
+ | :visa_account_verification_international
3953
+ | :visa_account_verification_canada
3954
+ | :visa_corporate_acceptance_fee
3955
+ | :visa_consumer_debit_acceptance_fee
3956
+ | :visa_business_debit_acceptance_fee
3957
+ | :visa_purchasing_acceptance_fee
3958
+ | :visa_purchase_domestic
3959
+ | :visa_purchase_international
3960
+ | :visa_credit_purchase_token
3961
+ | :visa_debit_purchase_token
3962
+ | :visa_clearing_transmission
3963
+ | :visa_direct_authorization
3964
+ | :visa_direct_transaction_domestic
3965
+ | :visa_service_commercial_credit
3966
+ | :visa_advertising_service_commercial_credit
3967
+ | :visa_community_growth_acceleration_program
3968
+ | :visa_processing_guarantee_commercial_credit
3969
+ | :pulse_switch_fee
3970
+
3971
+ module FeeType
3972
+ extend Increase::Internal::Type::Enum
3973
+
3974
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
3975
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
3976
+
3977
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
3978
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
3979
+
3980
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
3981
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
3982
+
3983
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
3984
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
3985
+
3986
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
3987
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
3988
+
3989
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
3990
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
3991
+
3992
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
3993
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
3994
+
3995
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
3996
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
3997
+
3998
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
3999
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
4000
+
4001
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
4002
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
4003
+
4004
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
4005
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
4006
+
4007
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
4008
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
4009
+
4010
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
4011
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
4012
+
4013
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
4014
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
4015
+
4016
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
4017
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
4018
+
4019
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
4020
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
4021
+
4022
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
4023
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
4024
+
4025
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
4026
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
4027
+
4028
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
4029
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
4030
+
4031
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
4032
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
4033
+
4034
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
4035
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
4036
+
4037
+ # A per transaction fee assessed for Base II financial draft - Issuer.
4038
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
4039
+
4040
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
4041
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
4042
+
4043
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
4044
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
4045
+
4046
+ # Issuer card service fee for Commercial Credit cards.
4047
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
4048
+
4049
+ # Issuer Advertising Service Fee for Commercial Credit cards.
4050
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
4051
+
4052
+ # Issuer Community Growth Acceleration Program Fee.
4053
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
4054
+
4055
+ # Issuer Processing Guarantee for Commercial Credit cards.
4056
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
4057
+
4058
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
4059
+ PULSE_SWITCH_FEE: :pulse_switch_fee
4060
+
4061
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardDecline::SchemeFee::fee_type]
4062
+ end
4063
+ end
4064
+
3524
4065
  type verification =
3525
4066
  {
3526
4067
  card_verification_code: Increase::CardPayment::Element::CardDecline::Verification::CardVerificationCode,
@@ -3704,6 +4245,7 @@ module Increase
3704
4245
  presentment_currency: String,
3705
4246
  processing_category: Increase::Models::CardPayment::Element::CardFinancial::processing_category,
3706
4247
  real_time_decision_id: String?,
4248
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardFinancial::SchemeFee],
3707
4249
  terminal_id: String?,
3708
4250
  transaction_id: String,
3709
4251
  type: Increase::Models::CardPayment::Element::CardFinancial::type_,
@@ -3757,6 +4299,8 @@ module Increase
3757
4299
 
3758
4300
  attr_accessor real_time_decision_id: String?
3759
4301
 
4302
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardFinancial::SchemeFee]
4303
+
3760
4304
  attr_accessor terminal_id: String?
3761
4305
 
3762
4306
  attr_accessor transaction_id: String
@@ -3789,6 +4333,7 @@ module Increase
3789
4333
  presentment_currency: String,
3790
4334
  processing_category: Increase::Models::CardPayment::Element::CardFinancial::processing_category,
3791
4335
  real_time_decision_id: String?,
4336
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardFinancial::SchemeFee],
3792
4337
  terminal_id: String?,
3793
4338
  transaction_id: String,
3794
4339
  type: Increase::Models::CardPayment::Element::CardFinancial::type_,
@@ -3819,6 +4364,7 @@ module Increase
3819
4364
  presentment_currency: String,
3820
4365
  processing_category: Increase::Models::CardPayment::Element::CardFinancial::processing_category,
3821
4366
  real_time_decision_id: String?,
4367
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardFinancial::SchemeFee],
3822
4368
  terminal_id: String?,
3823
4369
  transaction_id: String,
3824
4370
  type: Increase::Models::CardPayment::Element::CardFinancial::type_,
@@ -4378,57 +4924,234 @@ module Increase
4378
4924
  def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFinancial::processing_category]
4379
4925
  end
4380
4926
 
4381
- type type_ = :card_financial
4382
-
4383
- module Type
4384
- extend Increase::Internal::Type::Enum
4927
+ type scheme_fee =
4928
+ {
4929
+ amount: String,
4930
+ created_at: Time,
4931
+ currency: Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::currency,
4932
+ fee_type: Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::fee_type,
4933
+ fixed_component: String?,
4934
+ variable_rate: String?
4935
+ }
4385
4936
 
4386
- CARD_FINANCIAL: :card_financial
4937
+ class SchemeFee < Increase::Internal::Type::BaseModel
4938
+ attr_accessor amount: String
4387
4939
 
4388
- def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFinancial::type_]
4389
- end
4940
+ attr_accessor created_at: Time
4390
4941
 
4391
- type verification =
4392
- {
4393
- card_verification_code: Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode,
4394
- cardholder_address: Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress,
4395
- cardholder_name: Increase::CardPayment::Element::CardFinancial::Verification::CardholderName?
4396
- }
4942
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::currency
4397
4943
 
4398
- class Verification < Increase::Internal::Type::BaseModel
4399
- attr_accessor card_verification_code: Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode
4944
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::fee_type
4400
4945
 
4401
- attr_accessor cardholder_address: Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress
4946
+ attr_accessor fixed_component: String?
4402
4947
 
4403
- attr_accessor cardholder_name: Increase::CardPayment::Element::CardFinancial::Verification::CardholderName?
4948
+ attr_accessor variable_rate: String?
4404
4949
 
4405
4950
  def initialize: (
4406
- card_verification_code: Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode,
4407
- cardholder_address: Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress,
4408
- cardholder_name: Increase::CardPayment::Element::CardFinancial::Verification::CardholderName?
4951
+ amount: String,
4952
+ created_at: Time,
4953
+ currency: Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::currency,
4954
+ fee_type: Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::fee_type,
4955
+ fixed_component: String?,
4956
+ variable_rate: String?
4409
4957
  ) -> void
4410
4958
 
4411
4959
  def to_hash: -> {
4412
- card_verification_code: Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode,
4413
- cardholder_address: Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress,
4414
- cardholder_name: Increase::CardPayment::Element::CardFinancial::Verification::CardholderName?
4960
+ amount: String,
4961
+ created_at: Time,
4962
+ currency: Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::currency,
4963
+ fee_type: Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::fee_type,
4964
+ fixed_component: String?,
4965
+ variable_rate: String?
4415
4966
  }
4416
4967
 
4417
- type card_verification_code =
4418
- {
4419
- result: Increase::Models::CardPayment::Element::CardFinancial::Verification::CardVerificationCode::result
4420
- }
4968
+ type currency = :USD
4421
4969
 
4422
- class CardVerificationCode < Increase::Internal::Type::BaseModel
4423
- attr_accessor result: Increase::Models::CardPayment::Element::CardFinancial::Verification::CardVerificationCode::result
4970
+ module Currency
4971
+ extend Increase::Internal::Type::Enum
4424
4972
 
4425
- def initialize: (
4426
- result: Increase::Models::CardPayment::Element::CardFinancial::Verification::CardVerificationCode::result
4427
- ) -> void
4973
+ # US Dollar (USD)
4974
+ USD: :USD
4428
4975
 
4429
- def to_hash: -> {
4430
- result: Increase::Models::CardPayment::Element::CardFinancial::Verification::CardVerificationCode::result
4431
- }
4976
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::currency]
4977
+ end
4978
+
4979
+ type fee_type =
4980
+ :visa_international_service_assessment_single_currency
4981
+ | :visa_international_service_assessment_cross_currency
4982
+ | :visa_authorization_domestic_point_of_sale
4983
+ | :visa_authorization_international_point_of_sale
4984
+ | :visa_authorization_canada_point_of_sale
4985
+ | :visa_authorization_reversal_point_of_sale
4986
+ | :visa_authorization_reversal_international_point_of_sale
4987
+ | :visa_authorization_address_verification_service
4988
+ | :visa_advanced_authorization
4989
+ | :visa_message_transmission
4990
+ | :visa_account_verification_domestic
4991
+ | :visa_account_verification_international
4992
+ | :visa_account_verification_canada
4993
+ | :visa_corporate_acceptance_fee
4994
+ | :visa_consumer_debit_acceptance_fee
4995
+ | :visa_business_debit_acceptance_fee
4996
+ | :visa_purchasing_acceptance_fee
4997
+ | :visa_purchase_domestic
4998
+ | :visa_purchase_international
4999
+ | :visa_credit_purchase_token
5000
+ | :visa_debit_purchase_token
5001
+ | :visa_clearing_transmission
5002
+ | :visa_direct_authorization
5003
+ | :visa_direct_transaction_domestic
5004
+ | :visa_service_commercial_credit
5005
+ | :visa_advertising_service_commercial_credit
5006
+ | :visa_community_growth_acceleration_program
5007
+ | :visa_processing_guarantee_commercial_credit
5008
+ | :pulse_switch_fee
5009
+
5010
+ module FeeType
5011
+ extend Increase::Internal::Type::Enum
5012
+
5013
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
5014
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
5015
+
5016
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
5017
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
5018
+
5019
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
5020
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
5021
+
5022
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
5023
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
5024
+
5025
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
5026
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
5027
+
5028
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
5029
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
5030
+
5031
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
5032
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
5033
+
5034
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
5035
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
5036
+
5037
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
5038
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
5039
+
5040
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
5041
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
5042
+
5043
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
5044
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
5045
+
5046
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
5047
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
5048
+
5049
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
5050
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
5051
+
5052
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
5053
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
5054
+
5055
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
5056
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
5057
+
5058
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
5059
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
5060
+
5061
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
5062
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
5063
+
5064
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
5065
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
5066
+
5067
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
5068
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
5069
+
5070
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
5071
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
5072
+
5073
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
5074
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
5075
+
5076
+ # A per transaction fee assessed for Base II financial draft - Issuer.
5077
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
5078
+
5079
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
5080
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
5081
+
5082
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
5083
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
5084
+
5085
+ # Issuer card service fee for Commercial Credit cards.
5086
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
5087
+
5088
+ # Issuer Advertising Service Fee for Commercial Credit cards.
5089
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
5090
+
5091
+ # Issuer Community Growth Acceleration Program Fee.
5092
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
5093
+
5094
+ # Issuer Processing Guarantee for Commercial Credit cards.
5095
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
5096
+
5097
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
5098
+ PULSE_SWITCH_FEE: :pulse_switch_fee
5099
+
5100
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFinancial::SchemeFee::fee_type]
5101
+ end
5102
+ end
5103
+
5104
+ type type_ = :card_financial
5105
+
5106
+ module Type
5107
+ extend Increase::Internal::Type::Enum
5108
+
5109
+ CARD_FINANCIAL: :card_financial
5110
+
5111
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFinancial::type_]
5112
+ end
5113
+
5114
+ type verification =
5115
+ {
5116
+ card_verification_code: Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode,
5117
+ cardholder_address: Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress,
5118
+ cardholder_name: Increase::CardPayment::Element::CardFinancial::Verification::CardholderName?
5119
+ }
5120
+
5121
+ class Verification < Increase::Internal::Type::BaseModel
5122
+ attr_accessor card_verification_code: Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode
5123
+
5124
+ attr_accessor cardholder_address: Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress
5125
+
5126
+ attr_accessor cardholder_name: Increase::CardPayment::Element::CardFinancial::Verification::CardholderName?
5127
+
5128
+ def initialize: (
5129
+ card_verification_code: Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode,
5130
+ cardholder_address: Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress,
5131
+ cardholder_name: Increase::CardPayment::Element::CardFinancial::Verification::CardholderName?
5132
+ ) -> void
5133
+
5134
+ def to_hash: -> {
5135
+ card_verification_code: Increase::CardPayment::Element::CardFinancial::Verification::CardVerificationCode,
5136
+ cardholder_address: Increase::CardPayment::Element::CardFinancial::Verification::CardholderAddress,
5137
+ cardholder_name: Increase::CardPayment::Element::CardFinancial::Verification::CardholderName?
5138
+ }
5139
+
5140
+ type card_verification_code =
5141
+ {
5142
+ result: Increase::Models::CardPayment::Element::CardFinancial::Verification::CardVerificationCode::result
5143
+ }
5144
+
5145
+ class CardVerificationCode < Increase::Internal::Type::BaseModel
5146
+ attr_accessor result: Increase::Models::CardPayment::Element::CardFinancial::Verification::CardVerificationCode::result
5147
+
5148
+ def initialize: (
5149
+ result: Increase::Models::CardPayment::Element::CardFinancial::Verification::CardVerificationCode::result
5150
+ ) -> void
5151
+
5152
+ def to_hash: -> {
5153
+ result: Increase::Models::CardPayment::Element::CardFinancial::Verification::CardVerificationCode::result
5154
+ }
4432
5155
 
4433
5156
  type result = :not_checked | :match | :no_match
4434
5157
 
@@ -4554,6 +5277,7 @@ module Increase
4554
5277
  network: Increase::Models::CardPayment::Element::CardFuelConfirmation::network,
4555
5278
  network_identifiers: Increase::CardPayment::Element::CardFuelConfirmation::NetworkIdentifiers,
4556
5279
  pending_transaction_id: String?,
5280
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardFuelConfirmation::SchemeFee],
4557
5281
  type: Increase::Models::CardPayment::Element::CardFuelConfirmation::type_,
4558
5282
  updated_authorization_amount: Integer
4559
5283
  }
@@ -4571,6 +5295,8 @@ module Increase
4571
5295
 
4572
5296
  attr_accessor pending_transaction_id: String?
4573
5297
 
5298
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardFuelConfirmation::SchemeFee]
5299
+
4574
5300
  attr_accessor type: Increase::Models::CardPayment::Element::CardFuelConfirmation::type_
4575
5301
 
4576
5302
  attr_accessor updated_authorization_amount: Integer
@@ -4582,6 +5308,7 @@ module Increase
4582
5308
  network: Increase::Models::CardPayment::Element::CardFuelConfirmation::network,
4583
5309
  network_identifiers: Increase::CardPayment::Element::CardFuelConfirmation::NetworkIdentifiers,
4584
5310
  pending_transaction_id: String?,
5311
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardFuelConfirmation::SchemeFee],
4585
5312
  type: Increase::Models::CardPayment::Element::CardFuelConfirmation::type_,
4586
5313
  updated_authorization_amount: Integer
4587
5314
  ) -> void
@@ -4593,6 +5320,7 @@ module Increase
4593
5320
  network: Increase::Models::CardPayment::Element::CardFuelConfirmation::network,
4594
5321
  network_identifiers: Increase::CardPayment::Element::CardFuelConfirmation::NetworkIdentifiers,
4595
5322
  pending_transaction_id: String?,
5323
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardFuelConfirmation::SchemeFee],
4596
5324
  type: Increase::Models::CardPayment::Element::CardFuelConfirmation::type_,
4597
5325
  updated_authorization_amount: Integer
4598
5326
  }
@@ -4654,6 +5382,183 @@ module Increase
4654
5382
  }
4655
5383
  end
4656
5384
 
5385
+ type scheme_fee =
5386
+ {
5387
+ amount: String,
5388
+ created_at: Time,
5389
+ currency: Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::currency,
5390
+ fee_type: Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::fee_type,
5391
+ fixed_component: String?,
5392
+ variable_rate: String?
5393
+ }
5394
+
5395
+ class SchemeFee < Increase::Internal::Type::BaseModel
5396
+ attr_accessor amount: String
5397
+
5398
+ attr_accessor created_at: Time
5399
+
5400
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::currency
5401
+
5402
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::fee_type
5403
+
5404
+ attr_accessor fixed_component: String?
5405
+
5406
+ attr_accessor variable_rate: String?
5407
+
5408
+ def initialize: (
5409
+ amount: String,
5410
+ created_at: Time,
5411
+ currency: Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::currency,
5412
+ fee_type: Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::fee_type,
5413
+ fixed_component: String?,
5414
+ variable_rate: String?
5415
+ ) -> void
5416
+
5417
+ def to_hash: -> {
5418
+ amount: String,
5419
+ created_at: Time,
5420
+ currency: Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::currency,
5421
+ fee_type: Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::fee_type,
5422
+ fixed_component: String?,
5423
+ variable_rate: String?
5424
+ }
5425
+
5426
+ type currency = :USD
5427
+
5428
+ module Currency
5429
+ extend Increase::Internal::Type::Enum
5430
+
5431
+ # US Dollar (USD)
5432
+ USD: :USD
5433
+
5434
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::currency]
5435
+ end
5436
+
5437
+ type fee_type =
5438
+ :visa_international_service_assessment_single_currency
5439
+ | :visa_international_service_assessment_cross_currency
5440
+ | :visa_authorization_domestic_point_of_sale
5441
+ | :visa_authorization_international_point_of_sale
5442
+ | :visa_authorization_canada_point_of_sale
5443
+ | :visa_authorization_reversal_point_of_sale
5444
+ | :visa_authorization_reversal_international_point_of_sale
5445
+ | :visa_authorization_address_verification_service
5446
+ | :visa_advanced_authorization
5447
+ | :visa_message_transmission
5448
+ | :visa_account_verification_domestic
5449
+ | :visa_account_verification_international
5450
+ | :visa_account_verification_canada
5451
+ | :visa_corporate_acceptance_fee
5452
+ | :visa_consumer_debit_acceptance_fee
5453
+ | :visa_business_debit_acceptance_fee
5454
+ | :visa_purchasing_acceptance_fee
5455
+ | :visa_purchase_domestic
5456
+ | :visa_purchase_international
5457
+ | :visa_credit_purchase_token
5458
+ | :visa_debit_purchase_token
5459
+ | :visa_clearing_transmission
5460
+ | :visa_direct_authorization
5461
+ | :visa_direct_transaction_domestic
5462
+ | :visa_service_commercial_credit
5463
+ | :visa_advertising_service_commercial_credit
5464
+ | :visa_community_growth_acceleration_program
5465
+ | :visa_processing_guarantee_commercial_credit
5466
+ | :pulse_switch_fee
5467
+
5468
+ module FeeType
5469
+ extend Increase::Internal::Type::Enum
5470
+
5471
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
5472
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
5473
+
5474
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
5475
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
5476
+
5477
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
5478
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
5479
+
5480
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
5481
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
5482
+
5483
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
5484
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
5485
+
5486
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
5487
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
5488
+
5489
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
5490
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
5491
+
5492
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
5493
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
5494
+
5495
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
5496
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
5497
+
5498
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
5499
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
5500
+
5501
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
5502
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
5503
+
5504
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
5505
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
5506
+
5507
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
5508
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
5509
+
5510
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
5511
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
5512
+
5513
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
5514
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
5515
+
5516
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
5517
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
5518
+
5519
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
5520
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
5521
+
5522
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
5523
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
5524
+
5525
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
5526
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
5527
+
5528
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
5529
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
5530
+
5531
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
5532
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
5533
+
5534
+ # A per transaction fee assessed for Base II financial draft - Issuer.
5535
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
5536
+
5537
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
5538
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
5539
+
5540
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
5541
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
5542
+
5543
+ # Issuer card service fee for Commercial Credit cards.
5544
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
5545
+
5546
+ # Issuer Advertising Service Fee for Commercial Credit cards.
5547
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
5548
+
5549
+ # Issuer Community Growth Acceleration Program Fee.
5550
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
5551
+
5552
+ # Issuer Processing Guarantee for Commercial Credit cards.
5553
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
5554
+
5555
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
5556
+ PULSE_SWITCH_FEE: :pulse_switch_fee
5557
+
5558
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFuelConfirmation::SchemeFee::fee_type]
5559
+ end
5560
+ end
5561
+
4657
5562
  type type_ = :card_fuel_confirmation
4658
5563
 
4659
5564
  module Type
@@ -4680,6 +5585,7 @@ module Increase
4680
5585
  presentment_amount: Integer,
4681
5586
  presentment_currency: String,
4682
5587
  real_time_decision_id: String?,
5588
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardIncrement::SchemeFee],
4683
5589
  type: Increase::Models::CardPayment::Element::CardIncrement::type_,
4684
5590
  updated_authorization_amount: Integer
4685
5591
  }
@@ -4711,6 +5617,8 @@ module Increase
4711
5617
 
4712
5618
  attr_accessor real_time_decision_id: String?
4713
5619
 
5620
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardIncrement::SchemeFee]
5621
+
4714
5622
  attr_accessor type: Increase::Models::CardPayment::Element::CardIncrement::type_
4715
5623
 
4716
5624
  attr_accessor updated_authorization_amount: Integer
@@ -4729,6 +5637,7 @@ module Increase
4729
5637
  presentment_amount: Integer,
4730
5638
  presentment_currency: String,
4731
5639
  real_time_decision_id: String?,
5640
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardIncrement::SchemeFee],
4732
5641
  type: Increase::Models::CardPayment::Element::CardIncrement::type_,
4733
5642
  updated_authorization_amount: Integer
4734
5643
  ) -> void
@@ -4747,6 +5656,7 @@ module Increase
4747
5656
  presentment_amount: Integer,
4748
5657
  presentment_currency: String,
4749
5658
  real_time_decision_id: String?,
5659
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardIncrement::SchemeFee],
4750
5660
  type: Increase::Models::CardPayment::Element::CardIncrement::type_,
4751
5661
  updated_authorization_amount: Integer
4752
5662
  }
@@ -5007,6 +5917,183 @@ module Increase
5007
5917
  }
5008
5918
  end
5009
5919
 
5920
+ type scheme_fee =
5921
+ {
5922
+ amount: String,
5923
+ created_at: Time,
5924
+ currency: Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::currency,
5925
+ fee_type: Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::fee_type,
5926
+ fixed_component: String?,
5927
+ variable_rate: String?
5928
+ }
5929
+
5930
+ class SchemeFee < Increase::Internal::Type::BaseModel
5931
+ attr_accessor amount: String
5932
+
5933
+ attr_accessor created_at: Time
5934
+
5935
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::currency
5936
+
5937
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::fee_type
5938
+
5939
+ attr_accessor fixed_component: String?
5940
+
5941
+ attr_accessor variable_rate: String?
5942
+
5943
+ def initialize: (
5944
+ amount: String,
5945
+ created_at: Time,
5946
+ currency: Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::currency,
5947
+ fee_type: Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::fee_type,
5948
+ fixed_component: String?,
5949
+ variable_rate: String?
5950
+ ) -> void
5951
+
5952
+ def to_hash: -> {
5953
+ amount: String,
5954
+ created_at: Time,
5955
+ currency: Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::currency,
5956
+ fee_type: Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::fee_type,
5957
+ fixed_component: String?,
5958
+ variable_rate: String?
5959
+ }
5960
+
5961
+ type currency = :USD
5962
+
5963
+ module Currency
5964
+ extend Increase::Internal::Type::Enum
5965
+
5966
+ # US Dollar (USD)
5967
+ USD: :USD
5968
+
5969
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::currency]
5970
+ end
5971
+
5972
+ type fee_type =
5973
+ :visa_international_service_assessment_single_currency
5974
+ | :visa_international_service_assessment_cross_currency
5975
+ | :visa_authorization_domestic_point_of_sale
5976
+ | :visa_authorization_international_point_of_sale
5977
+ | :visa_authorization_canada_point_of_sale
5978
+ | :visa_authorization_reversal_point_of_sale
5979
+ | :visa_authorization_reversal_international_point_of_sale
5980
+ | :visa_authorization_address_verification_service
5981
+ | :visa_advanced_authorization
5982
+ | :visa_message_transmission
5983
+ | :visa_account_verification_domestic
5984
+ | :visa_account_verification_international
5985
+ | :visa_account_verification_canada
5986
+ | :visa_corporate_acceptance_fee
5987
+ | :visa_consumer_debit_acceptance_fee
5988
+ | :visa_business_debit_acceptance_fee
5989
+ | :visa_purchasing_acceptance_fee
5990
+ | :visa_purchase_domestic
5991
+ | :visa_purchase_international
5992
+ | :visa_credit_purchase_token
5993
+ | :visa_debit_purchase_token
5994
+ | :visa_clearing_transmission
5995
+ | :visa_direct_authorization
5996
+ | :visa_direct_transaction_domestic
5997
+ | :visa_service_commercial_credit
5998
+ | :visa_advertising_service_commercial_credit
5999
+ | :visa_community_growth_acceleration_program
6000
+ | :visa_processing_guarantee_commercial_credit
6001
+ | :pulse_switch_fee
6002
+
6003
+ module FeeType
6004
+ extend Increase::Internal::Type::Enum
6005
+
6006
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
6007
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
6008
+
6009
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
6010
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
6011
+
6012
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
6013
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
6014
+
6015
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
6016
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
6017
+
6018
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
6019
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
6020
+
6021
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
6022
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
6023
+
6024
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
6025
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
6026
+
6027
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
6028
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
6029
+
6030
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
6031
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
6032
+
6033
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
6034
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
6035
+
6036
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
6037
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
6038
+
6039
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
6040
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
6041
+
6042
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
6043
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
6044
+
6045
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
6046
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
6047
+
6048
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
6049
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
6050
+
6051
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
6052
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
6053
+
6054
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
6055
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
6056
+
6057
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
6058
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
6059
+
6060
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
6061
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
6062
+
6063
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
6064
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
6065
+
6066
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
6067
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
6068
+
6069
+ # A per transaction fee assessed for Base II financial draft - Issuer.
6070
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
6071
+
6072
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
6073
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
6074
+
6075
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
6076
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
6077
+
6078
+ # Issuer card service fee for Commercial Credit cards.
6079
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
6080
+
6081
+ # Issuer Advertising Service Fee for Commercial Credit cards.
6082
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
6083
+
6084
+ # Issuer Community Growth Acceleration Program Fee.
6085
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
6086
+
6087
+ # Issuer Processing Guarantee for Commercial Credit cards.
6088
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
6089
+
6090
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
6091
+ PULSE_SWITCH_FEE: :pulse_switch_fee
6092
+
6093
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardIncrement::SchemeFee::fee_type]
6094
+ end
6095
+ end
6096
+
5010
6097
  type type_ = :card_increment
5011
6098
 
5012
6099
  module Type
@@ -5037,6 +6124,7 @@ module Increase
5037
6124
  presentment_amount: Integer,
5038
6125
  presentment_currency: String,
5039
6126
  purchase_details: Increase::CardPayment::Element::CardRefund::PurchaseDetails?,
6127
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardRefund::SchemeFee],
5040
6128
  transaction_id: String,
5041
6129
  type: Increase::Models::CardPayment::Element::CardRefund::type_
5042
6130
  }
@@ -5076,6 +6164,8 @@ module Increase
5076
6164
 
5077
6165
  attr_accessor purchase_details: Increase::CardPayment::Element::CardRefund::PurchaseDetails?
5078
6166
 
6167
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardRefund::SchemeFee]
6168
+
5079
6169
  attr_accessor transaction_id: String
5080
6170
 
5081
6171
  attr_accessor type: Increase::Models::CardPayment::Element::CardRefund::type_
@@ -5098,6 +6188,7 @@ module Increase
5098
6188
  presentment_amount: Integer,
5099
6189
  presentment_currency: String,
5100
6190
  purchase_details: Increase::CardPayment::Element::CardRefund::PurchaseDetails?,
6191
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardRefund::SchemeFee],
5101
6192
  transaction_id: String,
5102
6193
  type: Increase::Models::CardPayment::Element::CardRefund::type_
5103
6194
  ) -> void
@@ -5120,6 +6211,7 @@ module Increase
5120
6211
  presentment_amount: Integer,
5121
6212
  presentment_currency: String,
5122
6213
  purchase_details: Increase::CardPayment::Element::CardRefund::PurchaseDetails?,
6214
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardRefund::SchemeFee],
5123
6215
  transaction_id: String,
5124
6216
  type: Increase::Models::CardPayment::Element::CardRefund::type_
5125
6217
  }
@@ -5993,6 +7085,183 @@ module Increase
5993
7085
  end
5994
7086
  end
5995
7087
 
7088
+ type scheme_fee =
7089
+ {
7090
+ amount: String,
7091
+ created_at: Time,
7092
+ currency: Increase::Models::CardPayment::Element::CardRefund::SchemeFee::currency,
7093
+ fee_type: Increase::Models::CardPayment::Element::CardRefund::SchemeFee::fee_type,
7094
+ fixed_component: String?,
7095
+ variable_rate: String?
7096
+ }
7097
+
7098
+ class SchemeFee < Increase::Internal::Type::BaseModel
7099
+ attr_accessor amount: String
7100
+
7101
+ attr_accessor created_at: Time
7102
+
7103
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardRefund::SchemeFee::currency
7104
+
7105
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardRefund::SchemeFee::fee_type
7106
+
7107
+ attr_accessor fixed_component: String?
7108
+
7109
+ attr_accessor variable_rate: String?
7110
+
7111
+ def initialize: (
7112
+ amount: String,
7113
+ created_at: Time,
7114
+ currency: Increase::Models::CardPayment::Element::CardRefund::SchemeFee::currency,
7115
+ fee_type: Increase::Models::CardPayment::Element::CardRefund::SchemeFee::fee_type,
7116
+ fixed_component: String?,
7117
+ variable_rate: String?
7118
+ ) -> void
7119
+
7120
+ def to_hash: -> {
7121
+ amount: String,
7122
+ created_at: Time,
7123
+ currency: Increase::Models::CardPayment::Element::CardRefund::SchemeFee::currency,
7124
+ fee_type: Increase::Models::CardPayment::Element::CardRefund::SchemeFee::fee_type,
7125
+ fixed_component: String?,
7126
+ variable_rate: String?
7127
+ }
7128
+
7129
+ type currency = :USD
7130
+
7131
+ module Currency
7132
+ extend Increase::Internal::Type::Enum
7133
+
7134
+ # US Dollar (USD)
7135
+ USD: :USD
7136
+
7137
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardRefund::SchemeFee::currency]
7138
+ end
7139
+
7140
+ type fee_type =
7141
+ :visa_international_service_assessment_single_currency
7142
+ | :visa_international_service_assessment_cross_currency
7143
+ | :visa_authorization_domestic_point_of_sale
7144
+ | :visa_authorization_international_point_of_sale
7145
+ | :visa_authorization_canada_point_of_sale
7146
+ | :visa_authorization_reversal_point_of_sale
7147
+ | :visa_authorization_reversal_international_point_of_sale
7148
+ | :visa_authorization_address_verification_service
7149
+ | :visa_advanced_authorization
7150
+ | :visa_message_transmission
7151
+ | :visa_account_verification_domestic
7152
+ | :visa_account_verification_international
7153
+ | :visa_account_verification_canada
7154
+ | :visa_corporate_acceptance_fee
7155
+ | :visa_consumer_debit_acceptance_fee
7156
+ | :visa_business_debit_acceptance_fee
7157
+ | :visa_purchasing_acceptance_fee
7158
+ | :visa_purchase_domestic
7159
+ | :visa_purchase_international
7160
+ | :visa_credit_purchase_token
7161
+ | :visa_debit_purchase_token
7162
+ | :visa_clearing_transmission
7163
+ | :visa_direct_authorization
7164
+ | :visa_direct_transaction_domestic
7165
+ | :visa_service_commercial_credit
7166
+ | :visa_advertising_service_commercial_credit
7167
+ | :visa_community_growth_acceleration_program
7168
+ | :visa_processing_guarantee_commercial_credit
7169
+ | :pulse_switch_fee
7170
+
7171
+ module FeeType
7172
+ extend Increase::Internal::Type::Enum
7173
+
7174
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
7175
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
7176
+
7177
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
7178
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
7179
+
7180
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
7181
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
7182
+
7183
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
7184
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
7185
+
7186
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
7187
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
7188
+
7189
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
7190
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
7191
+
7192
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
7193
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
7194
+
7195
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
7196
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
7197
+
7198
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
7199
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
7200
+
7201
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
7202
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
7203
+
7204
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
7205
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
7206
+
7207
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
7208
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
7209
+
7210
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
7211
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
7212
+
7213
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
7214
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
7215
+
7216
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
7217
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
7218
+
7219
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
7220
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
7221
+
7222
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
7223
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
7224
+
7225
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
7226
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
7227
+
7228
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
7229
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
7230
+
7231
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
7232
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
7233
+
7234
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
7235
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
7236
+
7237
+ # A per transaction fee assessed for Base II financial draft - Issuer.
7238
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
7239
+
7240
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
7241
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
7242
+
7243
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
7244
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
7245
+
7246
+ # Issuer card service fee for Commercial Credit cards.
7247
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
7248
+
7249
+ # Issuer Advertising Service Fee for Commercial Credit cards.
7250
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
7251
+
7252
+ # Issuer Community Growth Acceleration Program Fee.
7253
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
7254
+
7255
+ # Issuer Processing Guarantee for Commercial Credit cards.
7256
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
7257
+
7258
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
7259
+ PULSE_SWITCH_FEE: :pulse_switch_fee
7260
+
7261
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardRefund::SchemeFee::fee_type]
7262
+ end
7263
+ end
7264
+
5996
7265
  type type_ = :card_refund
5997
7266
 
5998
7267
  module Type
@@ -6023,6 +7292,7 @@ module Increase
6023
7292
  reversal_amount: Integer,
6024
7293
  reversal_presentment_amount: Integer,
6025
7294
  reversal_reason: Increase::Models::CardPayment::Element::CardReversal::reversal_reason?,
7295
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardReversal::SchemeFee],
6026
7296
  terminal_id: String?,
6027
7297
  type: Increase::Models::CardPayment::Element::CardReversal::type_,
6028
7298
  updated_authorization_amount: Integer,
@@ -6064,6 +7334,8 @@ module Increase
6064
7334
 
6065
7335
  attr_accessor reversal_reason: Increase::Models::CardPayment::Element::CardReversal::reversal_reason?
6066
7336
 
7337
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardReversal::SchemeFee]
7338
+
6067
7339
  attr_accessor terminal_id: String?
6068
7340
 
6069
7341
  attr_accessor type: Increase::Models::CardPayment::Element::CardReversal::type_
@@ -6090,6 +7362,7 @@ module Increase
6090
7362
  reversal_amount: Integer,
6091
7363
  reversal_presentment_amount: Integer,
6092
7364
  reversal_reason: Increase::Models::CardPayment::Element::CardReversal::reversal_reason?,
7365
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardReversal::SchemeFee],
6093
7366
  terminal_id: String?,
6094
7367
  type: Increase::Models::CardPayment::Element::CardReversal::type_,
6095
7368
  updated_authorization_amount: Integer,
@@ -6114,91 +7387,269 @@ module Increase
6114
7387
  reversal_amount: Integer,
6115
7388
  reversal_presentment_amount: Integer,
6116
7389
  reversal_reason: Increase::Models::CardPayment::Element::CardReversal::reversal_reason?,
7390
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardReversal::SchemeFee],
6117
7391
  terminal_id: String?,
6118
7392
  type: Increase::Models::CardPayment::Element::CardReversal::type_,
6119
7393
  updated_authorization_amount: Integer,
6120
7394
  updated_authorization_presentment_amount: Integer
6121
7395
  }
6122
7396
 
6123
- type currency = :USD
7397
+ type currency = :USD
7398
+
7399
+ module Currency
7400
+ extend Increase::Internal::Type::Enum
7401
+
7402
+ # US Dollar (USD)
7403
+ USD: :USD
7404
+
7405
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::currency]
7406
+ end
7407
+
7408
+ type network = :visa | :pulse
7409
+
7410
+ module Network
7411
+ extend Increase::Internal::Type::Enum
7412
+
7413
+ # Visa
7414
+ VISA: :visa
7415
+
7416
+ # Pulse
7417
+ PULSE: :pulse
7418
+
7419
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::network]
7420
+ end
7421
+
7422
+ type network_identifiers =
7423
+ {
7424
+ authorization_identification_response: String?,
7425
+ retrieval_reference_number: String?,
7426
+ trace_number: String?,
7427
+ transaction_id: String?
7428
+ }
7429
+
7430
+ class NetworkIdentifiers < Increase::Internal::Type::BaseModel
7431
+ attr_accessor authorization_identification_response: String?
7432
+
7433
+ attr_accessor retrieval_reference_number: String?
7434
+
7435
+ attr_accessor trace_number: String?
7436
+
7437
+ attr_accessor transaction_id: String?
7438
+
7439
+ def initialize: (
7440
+ authorization_identification_response: String?,
7441
+ retrieval_reference_number: String?,
7442
+ trace_number: String?,
7443
+ transaction_id: String?
7444
+ ) -> void
7445
+
7446
+ def to_hash: -> {
7447
+ authorization_identification_response: String?,
7448
+ retrieval_reference_number: String?,
7449
+ trace_number: String?,
7450
+ transaction_id: String?
7451
+ }
7452
+ end
7453
+
7454
+ type reversal_reason =
7455
+ :reversed_by_customer
7456
+ | :reversed_by_network_or_acquirer
7457
+ | :reversed_by_point_of_sale
7458
+ | :partial_reversal
7459
+
7460
+ module ReversalReason
7461
+ extend Increase::Internal::Type::Enum
7462
+
7463
+ # The Card Reversal was initiated at the customer's request.
7464
+ REVERSED_BY_CUSTOMER: :reversed_by_customer
7465
+
7466
+ # The Card Reversal was initiated by the network or acquirer.
7467
+ REVERSED_BY_NETWORK_OR_ACQUIRER: :reversed_by_network_or_acquirer
7468
+
7469
+ # The Card Reversal was initiated by the point of sale device.
7470
+ REVERSED_BY_POINT_OF_SALE: :reversed_by_point_of_sale
7471
+
7472
+ # The Card Reversal was a partial reversal, for any reason.
7473
+ PARTIAL_REVERSAL: :partial_reversal
7474
+
7475
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::reversal_reason]
7476
+ end
7477
+
7478
+ type scheme_fee =
7479
+ {
7480
+ amount: String,
7481
+ created_at: Time,
7482
+ currency: Increase::Models::CardPayment::Element::CardReversal::SchemeFee::currency,
7483
+ fee_type: Increase::Models::CardPayment::Element::CardReversal::SchemeFee::fee_type,
7484
+ fixed_component: String?,
7485
+ variable_rate: String?
7486
+ }
7487
+
7488
+ class SchemeFee < Increase::Internal::Type::BaseModel
7489
+ attr_accessor amount: String
7490
+
7491
+ attr_accessor created_at: Time
7492
+
7493
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardReversal::SchemeFee::currency
7494
+
7495
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardReversal::SchemeFee::fee_type
7496
+
7497
+ attr_accessor fixed_component: String?
7498
+
7499
+ attr_accessor variable_rate: String?
7500
+
7501
+ def initialize: (
7502
+ amount: String,
7503
+ created_at: Time,
7504
+ currency: Increase::Models::CardPayment::Element::CardReversal::SchemeFee::currency,
7505
+ fee_type: Increase::Models::CardPayment::Element::CardReversal::SchemeFee::fee_type,
7506
+ fixed_component: String?,
7507
+ variable_rate: String?
7508
+ ) -> void
7509
+
7510
+ def to_hash: -> {
7511
+ amount: String,
7512
+ created_at: Time,
7513
+ currency: Increase::Models::CardPayment::Element::CardReversal::SchemeFee::currency,
7514
+ fee_type: Increase::Models::CardPayment::Element::CardReversal::SchemeFee::fee_type,
7515
+ fixed_component: String?,
7516
+ variable_rate: String?
7517
+ }
7518
+
7519
+ type currency = :USD
7520
+
7521
+ module Currency
7522
+ extend Increase::Internal::Type::Enum
7523
+
7524
+ # US Dollar (USD)
7525
+ USD: :USD
7526
+
7527
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::SchemeFee::currency]
7528
+ end
7529
+
7530
+ type fee_type =
7531
+ :visa_international_service_assessment_single_currency
7532
+ | :visa_international_service_assessment_cross_currency
7533
+ | :visa_authorization_domestic_point_of_sale
7534
+ | :visa_authorization_international_point_of_sale
7535
+ | :visa_authorization_canada_point_of_sale
7536
+ | :visa_authorization_reversal_point_of_sale
7537
+ | :visa_authorization_reversal_international_point_of_sale
7538
+ | :visa_authorization_address_verification_service
7539
+ | :visa_advanced_authorization
7540
+ | :visa_message_transmission
7541
+ | :visa_account_verification_domestic
7542
+ | :visa_account_verification_international
7543
+ | :visa_account_verification_canada
7544
+ | :visa_corporate_acceptance_fee
7545
+ | :visa_consumer_debit_acceptance_fee
7546
+ | :visa_business_debit_acceptance_fee
7547
+ | :visa_purchasing_acceptance_fee
7548
+ | :visa_purchase_domestic
7549
+ | :visa_purchase_international
7550
+ | :visa_credit_purchase_token
7551
+ | :visa_debit_purchase_token
7552
+ | :visa_clearing_transmission
7553
+ | :visa_direct_authorization
7554
+ | :visa_direct_transaction_domestic
7555
+ | :visa_service_commercial_credit
7556
+ | :visa_advertising_service_commercial_credit
7557
+ | :visa_community_growth_acceleration_program
7558
+ | :visa_processing_guarantee_commercial_credit
7559
+ | :pulse_switch_fee
7560
+
7561
+ module FeeType
7562
+ extend Increase::Internal::Type::Enum
7563
+
7564
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
7565
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
7566
+
7567
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
7568
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
7569
+
7570
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
7571
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
7572
+
7573
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
7574
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
7575
+
7576
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
7577
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
6124
7578
 
6125
- module Currency
6126
- extend Increase::Internal::Type::Enum
7579
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
7580
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
6127
7581
 
6128
- # US Dollar (USD)
6129
- USD: :USD
7582
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
7583
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
6130
7584
 
6131
- def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::currency]
6132
- end
7585
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
7586
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
6133
7587
 
6134
- type network = :visa | :pulse
7588
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
7589
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
6135
7590
 
6136
- module Network
6137
- extend Increase::Internal::Type::Enum
7591
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
7592
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
6138
7593
 
6139
- # Visa
6140
- VISA: :visa
7594
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
7595
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
6141
7596
 
6142
- # Pulse
6143
- PULSE: :pulse
7597
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
7598
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
6144
7599
 
6145
- def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::network]
6146
- end
7600
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
7601
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
6147
7602
 
6148
- type network_identifiers =
6149
- {
6150
- authorization_identification_response: String?,
6151
- retrieval_reference_number: String?,
6152
- trace_number: String?,
6153
- transaction_id: String?
6154
- }
7603
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
7604
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
6155
7605
 
6156
- class NetworkIdentifiers < Increase::Internal::Type::BaseModel
6157
- attr_accessor authorization_identification_response: String?
7606
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
7607
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
6158
7608
 
6159
- attr_accessor retrieval_reference_number: String?
7609
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
7610
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
6160
7611
 
6161
- attr_accessor trace_number: String?
7612
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
7613
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
6162
7614
 
6163
- attr_accessor transaction_id: String?
7615
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
7616
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
6164
7617
 
6165
- def initialize: (
6166
- authorization_identification_response: String?,
6167
- retrieval_reference_number: String?,
6168
- trace_number: String?,
6169
- transaction_id: String?
6170
- ) -> void
7618
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
7619
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
6171
7620
 
6172
- def to_hash: -> {
6173
- authorization_identification_response: String?,
6174
- retrieval_reference_number: String?,
6175
- trace_number: String?,
6176
- transaction_id: String?
6177
- }
6178
- end
7621
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
7622
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
6179
7623
 
6180
- type reversal_reason =
6181
- :reversed_by_customer
6182
- | :reversed_by_network_or_acquirer
6183
- | :reversed_by_point_of_sale
6184
- | :partial_reversal
7624
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
7625
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
6185
7626
 
6186
- module ReversalReason
6187
- extend Increase::Internal::Type::Enum
7627
+ # A per transaction fee assessed for Base II financial draft - Issuer.
7628
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
6188
7629
 
6189
- # The Card Reversal was initiated at the customer's request.
6190
- REVERSED_BY_CUSTOMER: :reversed_by_customer
7630
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
7631
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
6191
7632
 
6192
- # The Card Reversal was initiated by the network or acquirer.
6193
- REVERSED_BY_NETWORK_OR_ACQUIRER: :reversed_by_network_or_acquirer
7633
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
7634
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
6194
7635
 
6195
- # The Card Reversal was initiated by the point of sale device.
6196
- REVERSED_BY_POINT_OF_SALE: :reversed_by_point_of_sale
7636
+ # Issuer card service fee for Commercial Credit cards.
7637
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
6197
7638
 
6198
- # The Card Reversal was a partial reversal, for any reason.
6199
- PARTIAL_REVERSAL: :partial_reversal
7639
+ # Issuer Advertising Service Fee for Commercial Credit cards.
7640
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
6200
7641
 
6201
- def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::reversal_reason]
7642
+ # Issuer Community Growth Acceleration Program Fee.
7643
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
7644
+
7645
+ # Issuer Processing Guarantee for Commercial Credit cards.
7646
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
7647
+
7648
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
7649
+ PULSE_SWITCH_FEE: :pulse_switch_fee
7650
+
7651
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::SchemeFee::fee_type]
7652
+ end
6202
7653
  end
6203
7654
 
6204
7655
  type type_ = :card_reversal
@@ -6234,6 +7685,7 @@ module Increase
6234
7685
  presentment_amount: Integer,
6235
7686
  presentment_currency: String,
6236
7687
  purchase_details: Increase::CardPayment::Element::CardSettlement::PurchaseDetails?,
7688
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardSettlement::SchemeFee],
6237
7689
  surcharge: Increase::CardPayment::Element::CardSettlement::Surcharge?,
6238
7690
  transaction_id: String,
6239
7691
  type: Increase::Models::CardPayment::Element::CardSettlement::type_
@@ -6280,6 +7732,8 @@ module Increase
6280
7732
 
6281
7733
  attr_accessor purchase_details: Increase::CardPayment::Element::CardSettlement::PurchaseDetails?
6282
7734
 
7735
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardSettlement::SchemeFee]
7736
+
6283
7737
  attr_accessor surcharge: Increase::CardPayment::Element::CardSettlement::Surcharge?
6284
7738
 
6285
7739
  attr_accessor transaction_id: String
@@ -6307,6 +7761,7 @@ module Increase
6307
7761
  presentment_amount: Integer,
6308
7762
  presentment_currency: String,
6309
7763
  purchase_details: Increase::CardPayment::Element::CardSettlement::PurchaseDetails?,
7764
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardSettlement::SchemeFee],
6310
7765
  surcharge: Increase::CardPayment::Element::CardSettlement::Surcharge?,
6311
7766
  transaction_id: String,
6312
7767
  type: Increase::Models::CardPayment::Element::CardSettlement::type_
@@ -6333,6 +7788,7 @@ module Increase
6333
7788
  presentment_amount: Integer,
6334
7789
  presentment_currency: String,
6335
7790
  purchase_details: Increase::CardPayment::Element::CardSettlement::PurchaseDetails?,
7791
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardSettlement::SchemeFee],
6336
7792
  surcharge: Increase::CardPayment::Element::CardSettlement::Surcharge?,
6337
7793
  transaction_id: String,
6338
7794
  type: Increase::Models::CardPayment::Element::CardSettlement::type_
@@ -7221,6 +8677,183 @@ module Increase
7221
8677
  end
7222
8678
  end
7223
8679
 
8680
+ type scheme_fee =
8681
+ {
8682
+ amount: String,
8683
+ created_at: Time,
8684
+ currency: Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::currency,
8685
+ fee_type: Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::fee_type,
8686
+ fixed_component: String?,
8687
+ variable_rate: String?
8688
+ }
8689
+
8690
+ class SchemeFee < Increase::Internal::Type::BaseModel
8691
+ attr_accessor amount: String
8692
+
8693
+ attr_accessor created_at: Time
8694
+
8695
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::currency
8696
+
8697
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::fee_type
8698
+
8699
+ attr_accessor fixed_component: String?
8700
+
8701
+ attr_accessor variable_rate: String?
8702
+
8703
+ def initialize: (
8704
+ amount: String,
8705
+ created_at: Time,
8706
+ currency: Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::currency,
8707
+ fee_type: Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::fee_type,
8708
+ fixed_component: String?,
8709
+ variable_rate: String?
8710
+ ) -> void
8711
+
8712
+ def to_hash: -> {
8713
+ amount: String,
8714
+ created_at: Time,
8715
+ currency: Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::currency,
8716
+ fee_type: Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::fee_type,
8717
+ fixed_component: String?,
8718
+ variable_rate: String?
8719
+ }
8720
+
8721
+ type currency = :USD
8722
+
8723
+ module Currency
8724
+ extend Increase::Internal::Type::Enum
8725
+
8726
+ # US Dollar (USD)
8727
+ USD: :USD
8728
+
8729
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::currency]
8730
+ end
8731
+
8732
+ type fee_type =
8733
+ :visa_international_service_assessment_single_currency
8734
+ | :visa_international_service_assessment_cross_currency
8735
+ | :visa_authorization_domestic_point_of_sale
8736
+ | :visa_authorization_international_point_of_sale
8737
+ | :visa_authorization_canada_point_of_sale
8738
+ | :visa_authorization_reversal_point_of_sale
8739
+ | :visa_authorization_reversal_international_point_of_sale
8740
+ | :visa_authorization_address_verification_service
8741
+ | :visa_advanced_authorization
8742
+ | :visa_message_transmission
8743
+ | :visa_account_verification_domestic
8744
+ | :visa_account_verification_international
8745
+ | :visa_account_verification_canada
8746
+ | :visa_corporate_acceptance_fee
8747
+ | :visa_consumer_debit_acceptance_fee
8748
+ | :visa_business_debit_acceptance_fee
8749
+ | :visa_purchasing_acceptance_fee
8750
+ | :visa_purchase_domestic
8751
+ | :visa_purchase_international
8752
+ | :visa_credit_purchase_token
8753
+ | :visa_debit_purchase_token
8754
+ | :visa_clearing_transmission
8755
+ | :visa_direct_authorization
8756
+ | :visa_direct_transaction_domestic
8757
+ | :visa_service_commercial_credit
8758
+ | :visa_advertising_service_commercial_credit
8759
+ | :visa_community_growth_acceleration_program
8760
+ | :visa_processing_guarantee_commercial_credit
8761
+ | :pulse_switch_fee
8762
+
8763
+ module FeeType
8764
+ extend Increase::Internal::Type::Enum
8765
+
8766
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
8767
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
8768
+
8769
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
8770
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
8771
+
8772
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
8773
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
8774
+
8775
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
8776
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
8777
+
8778
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
8779
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
8780
+
8781
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
8782
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
8783
+
8784
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
8785
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
8786
+
8787
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
8788
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
8789
+
8790
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
8791
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
8792
+
8793
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
8794
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
8795
+
8796
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
8797
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
8798
+
8799
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
8800
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
8801
+
8802
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
8803
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
8804
+
8805
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
8806
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
8807
+
8808
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
8809
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
8810
+
8811
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
8812
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
8813
+
8814
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
8815
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
8816
+
8817
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
8818
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
8819
+
8820
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
8821
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
8822
+
8823
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
8824
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
8825
+
8826
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
8827
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
8828
+
8829
+ # A per transaction fee assessed for Base II financial draft - Issuer.
8830
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
8831
+
8832
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
8833
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
8834
+
8835
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
8836
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
8837
+
8838
+ # Issuer card service fee for Commercial Credit cards.
8839
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
8840
+
8841
+ # Issuer Advertising Service Fee for Commercial Credit cards.
8842
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
8843
+
8844
+ # Issuer Community Growth Acceleration Program Fee.
8845
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
8846
+
8847
+ # Issuer Processing Guarantee for Commercial Credit cards.
8848
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
8849
+
8850
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
8851
+ PULSE_SWITCH_FEE: :pulse_switch_fee
8852
+
8853
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardSettlement::SchemeFee::fee_type]
8854
+ end
8855
+ end
8856
+
7224
8857
  type surcharge = { amount: Integer, presentment_amount: Integer }
7225
8858
 
7226
8859
  class Surcharge < Increase::Internal::Type::BaseModel
@@ -7267,6 +8900,7 @@ module Increase
7267
8900
  network_risk_score: Integer?,
7268
8901
  physical_card_id: String?,
7269
8902
  real_time_decision_id: String?,
8903
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardValidation::SchemeFee],
7270
8904
  terminal_id: String?,
7271
8905
  type: Increase::Models::CardPayment::Element::CardValidation::type_,
7272
8906
  verification: Increase::CardPayment::Element::CardValidation::Verification
@@ -7309,6 +8943,8 @@ module Increase
7309
8943
 
7310
8944
  attr_accessor real_time_decision_id: String?
7311
8945
 
8946
+ attr_accessor scheme_fees: ::Array[Increase::CardPayment::Element::CardValidation::SchemeFee]
8947
+
7312
8948
  attr_accessor terminal_id: String?
7313
8949
 
7314
8950
  attr_accessor type: Increase::Models::CardPayment::Element::CardValidation::type_
@@ -7334,6 +8970,7 @@ module Increase
7334
8970
  network_risk_score: Integer?,
7335
8971
  physical_card_id: String?,
7336
8972
  real_time_decision_id: String?,
8973
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardValidation::SchemeFee],
7337
8974
  terminal_id: String?,
7338
8975
  type: Increase::Models::CardPayment::Element::CardValidation::type_,
7339
8976
  verification: Increase::CardPayment::Element::CardValidation::Verification
@@ -7358,6 +8995,7 @@ module Increase
7358
8995
  network_risk_score: Integer?,
7359
8996
  physical_card_id: String?,
7360
8997
  real_time_decision_id: String?,
8998
+ scheme_fees: ::Array[Increase::CardPayment::Element::CardValidation::SchemeFee],
7361
8999
  terminal_id: String?,
7362
9000
  type: Increase::Models::CardPayment::Element::CardValidation::type_,
7363
9001
  verification: Increase::CardPayment::Element::CardValidation::Verification
@@ -7854,6 +9492,183 @@ module Increase
7854
9492
  }
7855
9493
  end
7856
9494
 
9495
+ type scheme_fee =
9496
+ {
9497
+ amount: String,
9498
+ created_at: Time,
9499
+ currency: Increase::Models::CardPayment::Element::CardValidation::SchemeFee::currency,
9500
+ fee_type: Increase::Models::CardPayment::Element::CardValidation::SchemeFee::fee_type,
9501
+ fixed_component: String?,
9502
+ variable_rate: String?
9503
+ }
9504
+
9505
+ class SchemeFee < Increase::Internal::Type::BaseModel
9506
+ attr_accessor amount: String
9507
+
9508
+ attr_accessor created_at: Time
9509
+
9510
+ attr_accessor currency: Increase::Models::CardPayment::Element::CardValidation::SchemeFee::currency
9511
+
9512
+ attr_accessor fee_type: Increase::Models::CardPayment::Element::CardValidation::SchemeFee::fee_type
9513
+
9514
+ attr_accessor fixed_component: String?
9515
+
9516
+ attr_accessor variable_rate: String?
9517
+
9518
+ def initialize: (
9519
+ amount: String,
9520
+ created_at: Time,
9521
+ currency: Increase::Models::CardPayment::Element::CardValidation::SchemeFee::currency,
9522
+ fee_type: Increase::Models::CardPayment::Element::CardValidation::SchemeFee::fee_type,
9523
+ fixed_component: String?,
9524
+ variable_rate: String?
9525
+ ) -> void
9526
+
9527
+ def to_hash: -> {
9528
+ amount: String,
9529
+ created_at: Time,
9530
+ currency: Increase::Models::CardPayment::Element::CardValidation::SchemeFee::currency,
9531
+ fee_type: Increase::Models::CardPayment::Element::CardValidation::SchemeFee::fee_type,
9532
+ fixed_component: String?,
9533
+ variable_rate: String?
9534
+ }
9535
+
9536
+ type currency = :USD
9537
+
9538
+ module Currency
9539
+ extend Increase::Internal::Type::Enum
9540
+
9541
+ # US Dollar (USD)
9542
+ USD: :USD
9543
+
9544
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardValidation::SchemeFee::currency]
9545
+ end
9546
+
9547
+ type fee_type =
9548
+ :visa_international_service_assessment_single_currency
9549
+ | :visa_international_service_assessment_cross_currency
9550
+ | :visa_authorization_domestic_point_of_sale
9551
+ | :visa_authorization_international_point_of_sale
9552
+ | :visa_authorization_canada_point_of_sale
9553
+ | :visa_authorization_reversal_point_of_sale
9554
+ | :visa_authorization_reversal_international_point_of_sale
9555
+ | :visa_authorization_address_verification_service
9556
+ | :visa_advanced_authorization
9557
+ | :visa_message_transmission
9558
+ | :visa_account_verification_domestic
9559
+ | :visa_account_verification_international
9560
+ | :visa_account_verification_canada
9561
+ | :visa_corporate_acceptance_fee
9562
+ | :visa_consumer_debit_acceptance_fee
9563
+ | :visa_business_debit_acceptance_fee
9564
+ | :visa_purchasing_acceptance_fee
9565
+ | :visa_purchase_domestic
9566
+ | :visa_purchase_international
9567
+ | :visa_credit_purchase_token
9568
+ | :visa_debit_purchase_token
9569
+ | :visa_clearing_transmission
9570
+ | :visa_direct_authorization
9571
+ | :visa_direct_transaction_domestic
9572
+ | :visa_service_commercial_credit
9573
+ | :visa_advertising_service_commercial_credit
9574
+ | :visa_community_growth_acceleration_program
9575
+ | :visa_processing_guarantee_commercial_credit
9576
+ | :pulse_switch_fee
9577
+
9578
+ module FeeType
9579
+ extend Increase::Internal::Type::Enum
9580
+
9581
+ # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
9582
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
9583
+
9584
+ # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
9585
+ VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
9586
+
9587
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
9588
+ VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
9589
+
9590
+ # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
9591
+ VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
9592
+
9593
+ # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
9594
+ VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
9595
+
9596
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
9597
+ VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
9598
+
9599
+ # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
9600
+ VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
9601
+
9602
+ # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
9603
+ VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
9604
+
9605
+ # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
9606
+ VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
9607
+
9608
+ # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
9609
+ VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
9610
+
9611
+ # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
9612
+ VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
9613
+
9614
+ # Activity, per inquiry, related to the international Issuer for Account Number Verification.
9615
+ VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
9616
+
9617
+ # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
9618
+ VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
9619
+
9620
+ # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
9621
+ VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
9622
+
9623
+ # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
9624
+ VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
9625
+
9626
+ # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
9627
+ VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
9628
+
9629
+ # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
9630
+ VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
9631
+
9632
+ # Activity and fees for the processing of a sales draft original for a purchase transaction.
9633
+ VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
9634
+
9635
+ # Activity and fees for the processing of an international sales draft original for a purchase transaction.
9636
+ VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
9637
+
9638
+ # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
9639
+ VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
9640
+
9641
+ # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
9642
+ VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
9643
+
9644
+ # A per transaction fee assessed for Base II financial draft - Issuer.
9645
+ VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
9646
+
9647
+ # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
9648
+ VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
9649
+
9650
+ # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
9651
+ VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
9652
+
9653
+ # Issuer card service fee for Commercial Credit cards.
9654
+ VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
9655
+
9656
+ # Issuer Advertising Service Fee for Commercial Credit cards.
9657
+ VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
9658
+
9659
+ # Issuer Community Growth Acceleration Program Fee.
9660
+ VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
9661
+
9662
+ # Issuer Processing Guarantee for Commercial Credit cards.
9663
+ VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
9664
+
9665
+ # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
9666
+ PULSE_SWITCH_FEE: :pulse_switch_fee
9667
+
9668
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardValidation::SchemeFee::fee_type]
9669
+ end
9670
+ end
9671
+
7857
9672
  type type_ = :inbound_card_validation
7858
9673
 
7859
9674
  module Type
@@ -8031,183 +9846,6 @@ module Increase
8031
9846
  end
8032
9847
  end
8033
9848
 
8034
- type scheme_fee =
8035
- {
8036
- amount: String,
8037
- created_at: Time,
8038
- currency: Increase::Models::CardPayment::SchemeFee::currency,
8039
- fee_type: Increase::Models::CardPayment::SchemeFee::fee_type,
8040
- fixed_component: String?,
8041
- variable_rate: String?
8042
- }
8043
-
8044
- class SchemeFee < Increase::Internal::Type::BaseModel
8045
- attr_accessor amount: String
8046
-
8047
- attr_accessor created_at: Time
8048
-
8049
- attr_accessor currency: Increase::Models::CardPayment::SchemeFee::currency
8050
-
8051
- attr_accessor fee_type: Increase::Models::CardPayment::SchemeFee::fee_type
8052
-
8053
- attr_accessor fixed_component: String?
8054
-
8055
- attr_accessor variable_rate: String?
8056
-
8057
- def initialize: (
8058
- amount: String,
8059
- created_at: Time,
8060
- currency: Increase::Models::CardPayment::SchemeFee::currency,
8061
- fee_type: Increase::Models::CardPayment::SchemeFee::fee_type,
8062
- fixed_component: String?,
8063
- variable_rate: String?
8064
- ) -> void
8065
-
8066
- def to_hash: -> {
8067
- amount: String,
8068
- created_at: Time,
8069
- currency: Increase::Models::CardPayment::SchemeFee::currency,
8070
- fee_type: Increase::Models::CardPayment::SchemeFee::fee_type,
8071
- fixed_component: String?,
8072
- variable_rate: String?
8073
- }
8074
-
8075
- type currency = :USD
8076
-
8077
- module Currency
8078
- extend Increase::Internal::Type::Enum
8079
-
8080
- # US Dollar (USD)
8081
- USD: :USD
8082
-
8083
- def self?.values: -> ::Array[Increase::Models::CardPayment::SchemeFee::currency]
8084
- end
8085
-
8086
- type fee_type =
8087
- :visa_international_service_assessment_single_currency
8088
- | :visa_international_service_assessment_cross_currency
8089
- | :visa_authorization_domestic_point_of_sale
8090
- | :visa_authorization_international_point_of_sale
8091
- | :visa_authorization_canada_point_of_sale
8092
- | :visa_authorization_reversal_point_of_sale
8093
- | :visa_authorization_reversal_international_point_of_sale
8094
- | :visa_authorization_address_verification_service
8095
- | :visa_advanced_authorization
8096
- | :visa_message_transmission
8097
- | :visa_account_verification_domestic
8098
- | :visa_account_verification_international
8099
- | :visa_account_verification_canada
8100
- | :visa_corporate_acceptance_fee
8101
- | :visa_consumer_debit_acceptance_fee
8102
- | :visa_business_debit_acceptance_fee
8103
- | :visa_purchasing_acceptance_fee
8104
- | :visa_purchase_domestic
8105
- | :visa_purchase_international
8106
- | :visa_credit_purchase_token
8107
- | :visa_debit_purchase_token
8108
- | :visa_clearing_transmission
8109
- | :visa_direct_authorization
8110
- | :visa_direct_transaction_domestic
8111
- | :visa_service_commercial_credit
8112
- | :visa_advertising_service_commercial_credit
8113
- | :visa_community_growth_acceleration_program
8114
- | :visa_processing_guarantee_commercial_credit
8115
- | :pulse_switch_fee
8116
-
8117
- module FeeType
8118
- extend Increase::Internal::Type::Enum
8119
-
8120
- # International Service Assessment (ISA) single-currency is a fee assessed by the card network for cross-border transactions presented and settled in the same currency.
8121
- VISA_INTERNATIONAL_SERVICE_ASSESSMENT_SINGLE_CURRENCY: :visa_international_service_assessment_single_currency
8122
-
8123
- # International Service Assessment (ISA) cross-currency is a fee assessed by the card network for cross-border transactions presented and settled in different currencies.
8124
- VISA_INTERNATIONAL_SERVICE_ASSESSMENT_CROSS_CURRENCY: :visa_international_service_assessment_cross_currency
8125
-
8126
- # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
8127
- VISA_AUTHORIZATION_DOMESTIC_POINT_OF_SALE: :visa_authorization_domestic_point_of_sale
8128
-
8129
- # Activity and charges for Visa Settlement System processing for POS (Point-Of-Sale) International authorization transactions. Authorization is the process of approving or declining the transaction amount specified. The fee is assessed to the Issuer.
8130
- VISA_AUTHORIZATION_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_international_point_of_sale
8131
-
8132
- # Activity and charges for Visa Settlement System processing for Canada Region POS (Point-of-Sale) authorization transactions. Authorization is the process of approving or declining the transaction amount specified.
8133
- VISA_AUTHORIZATION_CANADA_POINT_OF_SALE: :visa_authorization_canada_point_of_sale
8134
-
8135
- # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
8136
- VISA_AUTHORIZATION_REVERSAL_POINT_OF_SALE: :visa_authorization_reversal_point_of_sale
8137
-
8138
- # Activity only for Visa Settlement System authorization processing of POS (Point-Of-Sale) International reversal transactions. Authorization reversal represents a VSS message that undoes the complete or partial actions of a previous authorization request.
8139
- VISA_AUTHORIZATION_REVERSAL_INTERNATIONAL_POINT_OF_SALE: :visa_authorization_reversal_international_point_of_sale
8140
-
8141
- # A per Address Verification Service (AVS) result fee. Applies to all usable AVS result codes.
8142
- VISA_AUTHORIZATION_ADDRESS_VERIFICATION_SERVICE: :visa_authorization_address_verification_service
8143
-
8144
- # Advanced Authorization is a fraud detection tool that monitors and risk evaluates 100 percent of US VisaNet authorizations in real-time. Activity related to Purchase (includes Signature Authenticated Visa and PIN Authenticated Visa Debit (PAVD) transactions).
8145
- VISA_ADVANCED_AUTHORIZATION: :visa_advanced_authorization
8146
-
8147
- # Issuer Transactions Visa represents a charge based on total actual monthly processing (Visa transactions only) through a VisaNet Access Point (VAP). Charges are assessed to the processor for each VisaNet Access Point.
8148
- VISA_MESSAGE_TRANSMISSION: :visa_message_transmission
8149
-
8150
- # Activity, per inquiry, related to the domestic Issuer for Account Number Verification.
8151
- VISA_ACCOUNT_VERIFICATION_DOMESTIC: :visa_account_verification_domestic
8152
-
8153
- # Activity, per inquiry, related to the international Issuer for Account Number Verification.
8154
- VISA_ACCOUNT_VERIFICATION_INTERNATIONAL: :visa_account_verification_international
8155
-
8156
- # Activity, per inquiry, related to the US-Canada Issuer for Account Number Verification.
8157
- VISA_ACCOUNT_VERIFICATION_CANADA: :visa_account_verification_canada
8158
-
8159
- # The Corporate Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
8160
- VISA_CORPORATE_ACCEPTANCE_FEE: :visa_corporate_acceptance_fee
8161
-
8162
- # The Consumer Debit Acceptance Fee is charged to issuers and is based on the monthly sales volume of Consumer Debit or Prepaid card transactions. The cashback portion of a Debit and Prepaid card transaction is excluded from the sales volume calculation.
8163
- VISA_CONSUMER_DEBIT_ACCEPTANCE_FEE: :visa_consumer_debit_acceptance_fee
8164
-
8165
- # The Business Acceptance Fee is charged to issuers and is based on the monthly sales volume on Business Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback portion is included in the sales volume calculation with the exception of a Debit and Prepaid card transactions.
8166
- VISA_BUSINESS_DEBIT_ACCEPTANCE_FEE: :visa_business_debit_acceptance_fee
8167
-
8168
- # The Purchasing Card Acceptance Fee is charged to issuers and is based on the monthly sales volume on Commercial and Government Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
8169
- VISA_PURCHASING_ACCEPTANCE_FEE: :visa_purchasing_acceptance_fee
8170
-
8171
- # Activity and fees for the processing of a sales draft original for a purchase transaction.
8172
- VISA_PURCHASE_DOMESTIC: :visa_purchase_domestic
8173
-
8174
- # Activity and fees for the processing of an international sales draft original for a purchase transaction.
8175
- VISA_PURCHASE_INTERNATIONAL: :visa_purchase_international
8176
-
8177
- # Apple Pay Credit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
8178
- VISA_CREDIT_PURCHASE_TOKEN: :visa_credit_purchase_token
8179
-
8180
- # Apple Pay Debit Product Token Purchase Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay transactions.
8181
- VISA_DEBIT_PURCHASE_TOKEN: :visa_debit_purchase_token
8182
-
8183
- # A per transaction fee assessed for Base II financial draft - Issuer.
8184
- VISA_CLEARING_TRANSMISSION: :visa_clearing_transmission
8185
-
8186
- # Issuer charge for Non-Financial OCT/AFT Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
8187
- VISA_DIRECT_AUTHORIZATION: :visa_direct_authorization
8188
-
8189
- # Data processing charge for Visa Direct OCTs for all business application identifiers (BAIs) other than money transfer-bank initiated (BI). BASE II transactions.
8190
- VISA_DIRECT_TRANSACTION_DOMESTIC: :visa_direct_transaction_domestic
8191
-
8192
- # Issuer card service fee for Commercial Credit cards.
8193
- VISA_SERVICE_COMMERCIAL_CREDIT: :visa_service_commercial_credit
8194
-
8195
- # Issuer Advertising Service Fee for Commercial Credit cards.
8196
- VISA_ADVERTISING_SERVICE_COMMERCIAL_CREDIT: :visa_advertising_service_commercial_credit
8197
-
8198
- # Issuer Community Growth Acceleration Program Fee.
8199
- VISA_COMMUNITY_GROWTH_ACCELERATION_PROGRAM: :visa_community_growth_acceleration_program
8200
-
8201
- # Issuer Processing Guarantee for Commercial Credit cards.
8202
- VISA_PROCESSING_GUARANTEE_COMMERCIAL_CREDIT: :visa_processing_guarantee_commercial_credit
8203
-
8204
- # Pulse Switch Fee is a fee charged by the Pulse network for processing transactions on its network.
8205
- PULSE_SWITCH_FEE: :pulse_switch_fee
8206
-
8207
- def self?.values: -> ::Array[Increase::Models::CardPayment::SchemeFee::fee_type]
8208
- end
8209
- end
8210
-
8211
9849
  type state =
8212
9850
  {
8213
9851
  authorized_amount: Integer,