increase 1.107.1 → 1.109.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.
@@ -1192,6 +1192,9 @@ module Increase
1192
1192
  # Visa: details will be under the `visa` object.
1193
1193
  VISA = :visa
1194
1194
 
1195
+ # Pulse: details will be under the `pulse` object.
1196
+ PULSE = :pulse
1197
+
1195
1198
  # @!method self.values
1196
1199
  # @return [Array<Symbol>]
1197
1200
  end
@@ -1962,6 +1965,12 @@ module Increase
1962
1965
  # @return [Symbol, Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Category]
1963
1966
  required :category, enum: -> { Increase::Transaction::Source::CardFinancial::NetworkDetails::Category }
1964
1967
 
1968
+ # @!attribute pulse
1969
+ # Fields specific to the `pulse` network.
1970
+ #
1971
+ # @return [Object, nil]
1972
+ required :pulse, Increase::Internal::Type::Unknown, nil?: true
1973
+
1965
1974
  # @!attribute visa
1966
1975
  # Fields specific to the `visa` network.
1967
1976
  #
@@ -1972,11 +1981,13 @@ module Increase
1972
1981
  },
1973
1982
  nil?: true
1974
1983
 
1975
- # @!method initialize(category:, visa:)
1984
+ # @!method initialize(category:, pulse:, visa:)
1976
1985
  # Fields specific to the `network`.
1977
1986
  #
1978
1987
  # @param category [Symbol, Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Category] The payment network used to process this card authorization.
1979
1988
  #
1989
+ # @param pulse [Object, nil] Fields specific to the `pulse` network.
1990
+ #
1980
1991
  # @param visa [Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
1981
1992
 
1982
1993
  # The payment network used to process this card authorization.
@@ -1988,6 +1999,9 @@ module Increase
1988
1999
  # Visa
1989
2000
  VISA = :visa
1990
2001
 
2002
+ # Pulse
2003
+ PULSE = :pulse
2004
+
1991
2005
  # @!method self.values
1992
2006
  # @return [Array<Symbol>]
1993
2007
  end
@@ -2157,6 +2171,13 @@ module Increase
2157
2171
 
2158
2172
  # @see Increase::Models::Transaction::Source::CardFinancial#network_identifiers
2159
2173
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
2174
+ # @!attribute authorization_identification_response
2175
+ # The randomly generated 6-character Authorization Identification Response code
2176
+ # sent back to the acquirer in an approved response.
2177
+ #
2178
+ # @return [String, nil]
2179
+ required :authorization_identification_response, String, nil?: true
2180
+
2160
2181
  # @!attribute retrieval_reference_number
2161
2182
  # A life-cycle identifier used across e.g., an authorization and a reversal.
2162
2183
  # Expected to be unique per acquirer within a window of time. For some card
@@ -2179,13 +2200,15 @@ module Increase
2179
2200
  # @return [String, nil]
2180
2201
  required :transaction_id, String, nil?: true
2181
2202
 
2182
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
2203
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
2183
2204
  # Some parameter documentations has been truncated, see
2184
2205
  # {Increase::Models::Transaction::Source::CardFinancial::NetworkIdentifiers} for
2185
2206
  # more details.
2186
2207
  #
2187
2208
  # Network-specific identifiers for a specific request or transaction.
2188
2209
  #
2210
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
2211
+ #
2189
2212
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
2190
2213
  #
2191
2214
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
@@ -2758,6 +2781,13 @@ module Increase
2758
2781
  # @return [String]
2759
2782
  required :acquirer_reference_number, String
2760
2783
 
2784
+ # @!attribute authorization_identification_response
2785
+ # The randomly generated 6-character Authorization Identification Response code
2786
+ # sent back to the acquirer in an approved response.
2787
+ #
2788
+ # @return [String, nil]
2789
+ required :authorization_identification_response, String, nil?: true
2790
+
2761
2791
  # @!attribute transaction_id
2762
2792
  # A globally unique transaction identifier provided by the card network, used
2763
2793
  # across multiple life-cycle requests.
@@ -2765,7 +2795,7 @@ module Increase
2765
2795
  # @return [String, nil]
2766
2796
  required :transaction_id, String, nil?: true
2767
2797
 
2768
- # @!method initialize(acquirer_business_id:, acquirer_reference_number:, transaction_id:)
2798
+ # @!method initialize(acquirer_business_id:, acquirer_reference_number:, authorization_identification_response:, transaction_id:)
2769
2799
  # Some parameter documentations has been truncated, see
2770
2800
  # {Increase::Models::Transaction::Source::CardRefund::NetworkIdentifiers} for more
2771
2801
  # details.
@@ -2776,6 +2806,8 @@ module Increase
2776
2806
  #
2777
2807
  # @param acquirer_reference_number [String] A globally unique identifier for this settlement.
2778
2808
  #
2809
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
2810
+ #
2779
2811
  # @param transaction_id [String, nil] A globally unique transaction identifier provided by the card network, used acro
2780
2812
  end
2781
2813
 
@@ -4222,6 +4254,9 @@ module Increase
4222
4254
  # Visa
4223
4255
  VISA = :visa
4224
4256
 
4257
+ # Pulse
4258
+ PULSE = :pulse
4259
+
4225
4260
  # @!method self.values
4226
4261
  # @return [Array<Symbol>]
4227
4262
  end
@@ -4241,6 +4276,13 @@ module Increase
4241
4276
  # @return [String]
4242
4277
  required :acquirer_reference_number, String
4243
4278
 
4279
+ # @!attribute authorization_identification_response
4280
+ # The randomly generated 6-character Authorization Identification Response code
4281
+ # sent back to the acquirer in an approved response.
4282
+ #
4283
+ # @return [String, nil]
4284
+ required :authorization_identification_response, String, nil?: true
4285
+
4244
4286
  # @!attribute transaction_id
4245
4287
  # A globally unique transaction identifier provided by the card network, used
4246
4288
  # across multiple life-cycle requests.
@@ -4248,7 +4290,7 @@ module Increase
4248
4290
  # @return [String, nil]
4249
4291
  required :transaction_id, String, nil?: true
4250
4292
 
4251
- # @!method initialize(acquirer_business_id:, acquirer_reference_number:, transaction_id:)
4293
+ # @!method initialize(acquirer_business_id:, acquirer_reference_number:, authorization_identification_response:, transaction_id:)
4252
4294
  # Some parameter documentations has been truncated, see
4253
4295
  # {Increase::Models::Transaction::Source::CardSettlement::NetworkIdentifiers} for
4254
4296
  # more details.
@@ -4259,6 +4301,8 @@ module Increase
4259
4301
  #
4260
4302
  # @param acquirer_reference_number [String] A globally unique identifier for this settlement.
4261
4303
  #
4304
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
4305
+ #
4262
4306
  # @param transaction_id [String, nil] A globally unique transaction identifier provided by the card network, used acro
4263
4307
  end
4264
4308
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.107.1"
4
+ VERSION = "1.109.0"
5
5
  end
@@ -244,6 +244,9 @@ module Increase
244
244
  # Visa: details will be under the `visa` object.
245
245
  VISA = T.let(:visa, Increase::CardDispute::Network::TaggedSymbol)
246
246
 
247
+ # Pulse: details will be under the `pulse` object.
248
+ PULSE = T.let(:pulse, Increase::CardDispute::Network::TaggedSymbol)
249
+
247
250
  sig do
248
251
  override.returns(
249
252
  T::Array[Increase::CardDispute::Network::TaggedSymbol]
@@ -2393,6 +2393,10 @@ module Increase
2393
2393
  end
2394
2394
  attr_accessor :category
2395
2395
 
2396
+ # Fields specific to the `pulse` network.
2397
+ sig { returns(T.nilable(T.anything)) }
2398
+ attr_accessor :pulse
2399
+
2396
2400
  # Fields specific to the `visa` network.
2397
2401
  sig do
2398
2402
  returns(
@@ -2418,6 +2422,7 @@ module Increase
2418
2422
  params(
2419
2423
  category:
2420
2424
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::OrSymbol,
2425
+ pulse: T.nilable(T.anything),
2421
2426
  visa:
2422
2427
  T.nilable(
2423
2428
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::OrHash
@@ -2427,6 +2432,8 @@ module Increase
2427
2432
  def self.new(
2428
2433
  # The payment network used to process this card authorization.
2429
2434
  category:,
2435
+ # Fields specific to the `pulse` network.
2436
+ pulse:,
2430
2437
  # Fields specific to the `visa` network.
2431
2438
  visa:
2432
2439
  )
@@ -2437,6 +2444,7 @@ module Increase
2437
2444
  {
2438
2445
  category:
2439
2446
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::TaggedSymbol,
2447
+ pulse: T.nilable(T.anything),
2440
2448
  visa:
2441
2449
  T.nilable(
2442
2450
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa
@@ -2467,6 +2475,13 @@ module Increase
2467
2475
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::TaggedSymbol
2468
2476
  )
2469
2477
 
2478
+ # Pulse
2479
+ PULSE =
2480
+ T.let(
2481
+ :pulse,
2482
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::TaggedSymbol
2483
+ )
2484
+
2470
2485
  sig do
2471
2486
  override.returns(
2472
2487
  T::Array[
@@ -2835,6 +2850,11 @@ module Increase
2835
2850
  )
2836
2851
  end
2837
2852
 
2853
+ # The randomly generated 6-character Authorization Identification Response code
2854
+ # sent back to the acquirer in an approved response.
2855
+ sig { returns(T.nilable(String)) }
2856
+ attr_accessor :authorization_identification_response
2857
+
2838
2858
  # A life-cycle identifier used across e.g., an authorization and a reversal.
2839
2859
  # Expected to be unique per acquirer within a window of time. For some card
2840
2860
  # networks the retrieval reference number includes the trace counter.
@@ -2854,12 +2874,16 @@ module Increase
2854
2874
  # Network-specific identifiers for a specific request or transaction.
2855
2875
  sig do
2856
2876
  params(
2877
+ authorization_identification_response: T.nilable(String),
2857
2878
  retrieval_reference_number: T.nilable(String),
2858
2879
  trace_number: T.nilable(String),
2859
2880
  transaction_id: T.nilable(String)
2860
2881
  ).returns(T.attached_class)
2861
2882
  end
2862
2883
  def self.new(
2884
+ # The randomly generated 6-character Authorization Identification Response code
2885
+ # sent back to the acquirer in an approved response.
2886
+ authorization_identification_response:,
2863
2887
  # A life-cycle identifier used across e.g., an authorization and a reversal.
2864
2888
  # Expected to be unique per acquirer within a window of time. For some card
2865
2889
  # networks the retrieval reference number includes the trace counter.
@@ -2876,6 +2900,7 @@ module Increase
2876
2900
  sig do
2877
2901
  override.returns(
2878
2902
  {
2903
+ authorization_identification_response: T.nilable(String),
2879
2904
  retrieval_reference_number: T.nilable(String),
2880
2905
  trace_number: T.nilable(String),
2881
2906
  transaction_id: T.nilable(String)
@@ -3502,6 +3527,13 @@ module Increase
3502
3527
  Increase::CardPayment::Element::CardAuthorizationExpiration::Network::TaggedSymbol
3503
3528
  )
3504
3529
 
3530
+ # Pulse
3531
+ PULSE =
3532
+ T.let(
3533
+ :pulse,
3534
+ Increase::CardPayment::Element::CardAuthorizationExpiration::Network::TaggedSymbol
3535
+ )
3536
+
3505
3537
  sig do
3506
3538
  override.returns(
3507
3539
  T::Array[
@@ -4782,6 +4814,10 @@ module Increase
4782
4814
  end
4783
4815
  attr_accessor :category
4784
4816
 
4817
+ # Fields specific to the `pulse` network.
4818
+ sig { returns(T.nilable(T.anything)) }
4819
+ attr_accessor :pulse
4820
+
4785
4821
  # Fields specific to the `visa` network.
4786
4822
  sig do
4787
4823
  returns(
@@ -4807,6 +4843,7 @@ module Increase
4807
4843
  params(
4808
4844
  category:
4809
4845
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::OrSymbol,
4846
+ pulse: T.nilable(T.anything),
4810
4847
  visa:
4811
4848
  T.nilable(
4812
4849
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::OrHash
@@ -4816,6 +4853,8 @@ module Increase
4816
4853
  def self.new(
4817
4854
  # The payment network used to process this card authorization.
4818
4855
  category:,
4856
+ # Fields specific to the `pulse` network.
4857
+ pulse:,
4819
4858
  # Fields specific to the `visa` network.
4820
4859
  visa:
4821
4860
  )
@@ -4826,6 +4865,7 @@ module Increase
4826
4865
  {
4827
4866
  category:
4828
4867
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::TaggedSymbol,
4868
+ pulse: T.nilable(T.anything),
4829
4869
  visa:
4830
4870
  T.nilable(
4831
4871
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa
@@ -4856,6 +4896,13 @@ module Increase
4856
4896
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::TaggedSymbol
4857
4897
  )
4858
4898
 
4899
+ # Pulse
4900
+ PULSE =
4901
+ T.let(
4902
+ :pulse,
4903
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::TaggedSymbol
4904
+ )
4905
+
4859
4906
  sig do
4860
4907
  override.returns(
4861
4908
  T::Array[
@@ -5224,6 +5271,11 @@ module Increase
5224
5271
  )
5225
5272
  end
5226
5273
 
5274
+ # The randomly generated 6-character Authorization Identification Response code
5275
+ # sent back to the acquirer in an approved response.
5276
+ sig { returns(T.nilable(String)) }
5277
+ attr_accessor :authorization_identification_response
5278
+
5227
5279
  # A life-cycle identifier used across e.g., an authorization and a reversal.
5228
5280
  # Expected to be unique per acquirer within a window of time. For some card
5229
5281
  # networks the retrieval reference number includes the trace counter.
@@ -5243,12 +5295,16 @@ module Increase
5243
5295
  # Network-specific identifiers for a specific request or transaction.
5244
5296
  sig do
5245
5297
  params(
5298
+ authorization_identification_response: T.nilable(String),
5246
5299
  retrieval_reference_number: T.nilable(String),
5247
5300
  trace_number: T.nilable(String),
5248
5301
  transaction_id: T.nilable(String)
5249
5302
  ).returns(T.attached_class)
5250
5303
  end
5251
5304
  def self.new(
5305
+ # The randomly generated 6-character Authorization Identification Response code
5306
+ # sent back to the acquirer in an approved response.
5307
+ authorization_identification_response:,
5252
5308
  # A life-cycle identifier used across e.g., an authorization and a reversal.
5253
5309
  # Expected to be unique per acquirer within a window of time. For some card
5254
5310
  # networks the retrieval reference number includes the trace counter.
@@ -5265,6 +5321,7 @@ module Increase
5265
5321
  sig do
5266
5322
  override.returns(
5267
5323
  {
5324
+ authorization_identification_response: T.nilable(String),
5268
5325
  retrieval_reference_number: T.nilable(String),
5269
5326
  trace_number: T.nilable(String),
5270
5327
  transaction_id: T.nilable(String)
@@ -6123,6 +6180,13 @@ module Increase
6123
6180
  Increase::CardPayment::Element::CardFuelConfirmation::Network::TaggedSymbol
6124
6181
  )
6125
6182
 
6183
+ # Pulse
6184
+ PULSE =
6185
+ T.let(
6186
+ :pulse,
6187
+ Increase::CardPayment::Element::CardFuelConfirmation::Network::TaggedSymbol
6188
+ )
6189
+
6126
6190
  sig do
6127
6191
  override.returns(
6128
6192
  T::Array[
@@ -6143,6 +6207,11 @@ module Increase
6143
6207
  )
6144
6208
  end
6145
6209
 
6210
+ # The randomly generated 6-character Authorization Identification Response code
6211
+ # sent back to the acquirer in an approved response.
6212
+ sig { returns(T.nilable(String)) }
6213
+ attr_accessor :authorization_identification_response
6214
+
6146
6215
  # A life-cycle identifier used across e.g., an authorization and a reversal.
6147
6216
  # Expected to be unique per acquirer within a window of time. For some card
6148
6217
  # networks the retrieval reference number includes the trace counter.
@@ -6162,12 +6231,16 @@ module Increase
6162
6231
  # Network-specific identifiers for a specific request or transaction.
6163
6232
  sig do
6164
6233
  params(
6234
+ authorization_identification_response: T.nilable(String),
6165
6235
  retrieval_reference_number: T.nilable(String),
6166
6236
  trace_number: T.nilable(String),
6167
6237
  transaction_id: T.nilable(String)
6168
6238
  ).returns(T.attached_class)
6169
6239
  end
6170
6240
  def self.new(
6241
+ # The randomly generated 6-character Authorization Identification Response code
6242
+ # sent back to the acquirer in an approved response.
6243
+ authorization_identification_response:,
6171
6244
  # A life-cycle identifier used across e.g., an authorization and a reversal.
6172
6245
  # Expected to be unique per acquirer within a window of time. For some card
6173
6246
  # networks the retrieval reference number includes the trace counter.
@@ -6184,6 +6257,7 @@ module Increase
6184
6257
  sig do
6185
6258
  override.returns(
6186
6259
  {
6260
+ authorization_identification_response: T.nilable(String),
6187
6261
  retrieval_reference_number: T.nilable(String),
6188
6262
  trace_number: T.nilable(String),
6189
6263
  transaction_id: T.nilable(String)
@@ -7260,6 +7334,13 @@ module Increase
7260
7334
  Increase::CardPayment::Element::CardIncrement::Network::TaggedSymbol
7261
7335
  )
7262
7336
 
7337
+ # Pulse
7338
+ PULSE =
7339
+ T.let(
7340
+ :pulse,
7341
+ Increase::CardPayment::Element::CardIncrement::Network::TaggedSymbol
7342
+ )
7343
+
7263
7344
  sig do
7264
7345
  override.returns(
7265
7346
  T::Array[
@@ -7280,6 +7361,11 @@ module Increase
7280
7361
  )
7281
7362
  end
7282
7363
 
7364
+ # The randomly generated 6-character Authorization Identification Response code
7365
+ # sent back to the acquirer in an approved response.
7366
+ sig { returns(T.nilable(String)) }
7367
+ attr_accessor :authorization_identification_response
7368
+
7283
7369
  # A life-cycle identifier used across e.g., an authorization and a reversal.
7284
7370
  # Expected to be unique per acquirer within a window of time. For some card
7285
7371
  # networks the retrieval reference number includes the trace counter.
@@ -7299,12 +7385,16 @@ module Increase
7299
7385
  # Network-specific identifiers for a specific request or transaction.
7300
7386
  sig do
7301
7387
  params(
7388
+ authorization_identification_response: T.nilable(String),
7302
7389
  retrieval_reference_number: T.nilable(String),
7303
7390
  trace_number: T.nilable(String),
7304
7391
  transaction_id: T.nilable(String)
7305
7392
  ).returns(T.attached_class)
7306
7393
  end
7307
7394
  def self.new(
7395
+ # The randomly generated 6-character Authorization Identification Response code
7396
+ # sent back to the acquirer in an approved response.
7397
+ authorization_identification_response:,
7308
7398
  # A life-cycle identifier used across e.g., an authorization and a reversal.
7309
7399
  # Expected to be unique per acquirer within a window of time. For some card
7310
7400
  # networks the retrieval reference number includes the trace counter.
@@ -7321,6 +7411,7 @@ module Increase
7321
7411
  sig do
7322
7412
  override.returns(
7323
7413
  {
7414
+ authorization_identification_response: T.nilable(String),
7324
7415
  retrieval_reference_number: T.nilable(String),
7325
7416
  trace_number: T.nilable(String),
7326
7417
  transaction_id: T.nilable(String)
@@ -7986,6 +8077,11 @@ module Increase
7986
8077
  sig { returns(String) }
7987
8078
  attr_accessor :acquirer_reference_number
7988
8079
 
8080
+ # The randomly generated 6-character Authorization Identification Response code
8081
+ # sent back to the acquirer in an approved response.
8082
+ sig { returns(T.nilable(String)) }
8083
+ attr_accessor :authorization_identification_response
8084
+
7989
8085
  # A globally unique transaction identifier provided by the card network, used
7990
8086
  # across multiple life-cycle requests.
7991
8087
  sig { returns(T.nilable(String)) }
@@ -7996,6 +8092,7 @@ module Increase
7996
8092
  params(
7997
8093
  acquirer_business_id: String,
7998
8094
  acquirer_reference_number: String,
8095
+ authorization_identification_response: T.nilable(String),
7999
8096
  transaction_id: T.nilable(String)
8000
8097
  ).returns(T.attached_class)
8001
8098
  end
@@ -8005,6 +8102,9 @@ module Increase
8005
8102
  acquirer_business_id:,
8006
8103
  # A globally unique identifier for this settlement.
8007
8104
  acquirer_reference_number:,
8105
+ # The randomly generated 6-character Authorization Identification Response code
8106
+ # sent back to the acquirer in an approved response.
8107
+ authorization_identification_response:,
8008
8108
  # A globally unique transaction identifier provided by the card network, used
8009
8109
  # across multiple life-cycle requests.
8010
8110
  transaction_id:
@@ -8016,6 +8116,7 @@ module Increase
8016
8116
  {
8017
8117
  acquirer_business_id: String,
8018
8118
  acquirer_reference_number: String,
8119
+ authorization_identification_response: T.nilable(String),
8019
8120
  transaction_id: T.nilable(String)
8020
8121
  }
8021
8122
  )
@@ -10136,6 +10237,13 @@ module Increase
10136
10237
  Increase::CardPayment::Element::CardReversal::Network::TaggedSymbol
10137
10238
  )
10138
10239
 
10240
+ # Pulse
10241
+ PULSE =
10242
+ T.let(
10243
+ :pulse,
10244
+ Increase::CardPayment::Element::CardReversal::Network::TaggedSymbol
10245
+ )
10246
+
10139
10247
  sig do
10140
10248
  override.returns(
10141
10249
  T::Array[
@@ -10156,6 +10264,11 @@ module Increase
10156
10264
  )
10157
10265
  end
10158
10266
 
10267
+ # The randomly generated 6-character Authorization Identification Response code
10268
+ # sent back to the acquirer in an approved response.
10269
+ sig { returns(T.nilable(String)) }
10270
+ attr_accessor :authorization_identification_response
10271
+
10159
10272
  # A life-cycle identifier used across e.g., an authorization and a reversal.
10160
10273
  # Expected to be unique per acquirer within a window of time. For some card
10161
10274
  # networks the retrieval reference number includes the trace counter.
@@ -10175,12 +10288,16 @@ module Increase
10175
10288
  # Network-specific identifiers for a specific request or transaction.
10176
10289
  sig do
10177
10290
  params(
10291
+ authorization_identification_response: T.nilable(String),
10178
10292
  retrieval_reference_number: T.nilable(String),
10179
10293
  trace_number: T.nilable(String),
10180
10294
  transaction_id: T.nilable(String)
10181
10295
  ).returns(T.attached_class)
10182
10296
  end
10183
10297
  def self.new(
10298
+ # The randomly generated 6-character Authorization Identification Response code
10299
+ # sent back to the acquirer in an approved response.
10300
+ authorization_identification_response:,
10184
10301
  # A life-cycle identifier used across e.g., an authorization and a reversal.
10185
10302
  # Expected to be unique per acquirer within a window of time. For some card
10186
10303
  # networks the retrieval reference number includes the trace counter.
@@ -10197,6 +10314,7 @@ module Increase
10197
10314
  sig do
10198
10315
  override.returns(
10199
10316
  {
10317
+ authorization_identification_response: T.nilable(String),
10200
10318
  retrieval_reference_number: T.nilable(String),
10201
10319
  trace_number: T.nilable(String),
10202
10320
  transaction_id: T.nilable(String)
@@ -10987,6 +11105,13 @@ module Increase
10987
11105
  Increase::CardPayment::Element::CardSettlement::Network::TaggedSymbol
10988
11106
  )
10989
11107
 
11108
+ # Pulse
11109
+ PULSE =
11110
+ T.let(
11111
+ :pulse,
11112
+ Increase::CardPayment::Element::CardSettlement::Network::TaggedSymbol
11113
+ )
11114
+
10990
11115
  sig do
10991
11116
  override.returns(
10992
11117
  T::Array[
@@ -11016,6 +11141,11 @@ module Increase
11016
11141
  sig { returns(String) }
11017
11142
  attr_accessor :acquirer_reference_number
11018
11143
 
11144
+ # The randomly generated 6-character Authorization Identification Response code
11145
+ # sent back to the acquirer in an approved response.
11146
+ sig { returns(T.nilable(String)) }
11147
+ attr_accessor :authorization_identification_response
11148
+
11019
11149
  # A globally unique transaction identifier provided by the card network, used
11020
11150
  # across multiple life-cycle requests.
11021
11151
  sig { returns(T.nilable(String)) }
@@ -11026,6 +11156,7 @@ module Increase
11026
11156
  params(
11027
11157
  acquirer_business_id: String,
11028
11158
  acquirer_reference_number: String,
11159
+ authorization_identification_response: T.nilable(String),
11029
11160
  transaction_id: T.nilable(String)
11030
11161
  ).returns(T.attached_class)
11031
11162
  end
@@ -11035,6 +11166,9 @@ module Increase
11035
11166
  acquirer_business_id:,
11036
11167
  # A globally unique identifier for this settlement.
11037
11168
  acquirer_reference_number:,
11169
+ # The randomly generated 6-character Authorization Identification Response code
11170
+ # sent back to the acquirer in an approved response.
11171
+ authorization_identification_response:,
11038
11172
  # A globally unique transaction identifier provided by the card network, used
11039
11173
  # across multiple life-cycle requests.
11040
11174
  transaction_id:
@@ -11046,6 +11180,7 @@ module Increase
11046
11180
  {
11047
11181
  acquirer_business_id: String,
11048
11182
  acquirer_reference_number: String,
11183
+ authorization_identification_response: T.nilable(String),
11049
11184
  transaction_id: T.nilable(String)
11050
11185
  }
11051
11186
  )
@@ -13967,6 +14102,10 @@ module Increase
13967
14102
  end
13968
14103
  attr_accessor :category
13969
14104
 
14105
+ # Fields specific to the `pulse` network.
14106
+ sig { returns(T.nilable(T.anything)) }
14107
+ attr_accessor :pulse
14108
+
13970
14109
  # Fields specific to the `visa` network.
13971
14110
  sig do
13972
14111
  returns(
@@ -13992,6 +14131,7 @@ module Increase
13992
14131
  params(
13993
14132
  category:
13994
14133
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::OrSymbol,
14134
+ pulse: T.nilable(T.anything),
13995
14135
  visa:
13996
14136
  T.nilable(
13997
14137
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::OrHash
@@ -14001,6 +14141,8 @@ module Increase
14001
14141
  def self.new(
14002
14142
  # The payment network used to process this card authorization.
14003
14143
  category:,
14144
+ # Fields specific to the `pulse` network.
14145
+ pulse:,
14004
14146
  # Fields specific to the `visa` network.
14005
14147
  visa:
14006
14148
  )
@@ -14011,6 +14153,7 @@ module Increase
14011
14153
  {
14012
14154
  category:
14013
14155
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::TaggedSymbol,
14156
+ pulse: T.nilable(T.anything),
14014
14157
  visa:
14015
14158
  T.nilable(
14016
14159
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa
@@ -14041,6 +14184,13 @@ module Increase
14041
14184
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::TaggedSymbol
14042
14185
  )
14043
14186
 
14187
+ # Pulse
14188
+ PULSE =
14189
+ T.let(
14190
+ :pulse,
14191
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::TaggedSymbol
14192
+ )
14193
+
14044
14194
  sig do
14045
14195
  override.returns(
14046
14196
  T::Array[
@@ -14409,6 +14559,11 @@ module Increase
14409
14559
  )
14410
14560
  end
14411
14561
 
14562
+ # The randomly generated 6-character Authorization Identification Response code
14563
+ # sent back to the acquirer in an approved response.
14564
+ sig { returns(T.nilable(String)) }
14565
+ attr_accessor :authorization_identification_response
14566
+
14412
14567
  # A life-cycle identifier used across e.g., an authorization and a reversal.
14413
14568
  # Expected to be unique per acquirer within a window of time. For some card
14414
14569
  # networks the retrieval reference number includes the trace counter.
@@ -14428,12 +14583,16 @@ module Increase
14428
14583
  # Network-specific identifiers for a specific request or transaction.
14429
14584
  sig do
14430
14585
  params(
14586
+ authorization_identification_response: T.nilable(String),
14431
14587
  retrieval_reference_number: T.nilable(String),
14432
14588
  trace_number: T.nilable(String),
14433
14589
  transaction_id: T.nilable(String)
14434
14590
  ).returns(T.attached_class)
14435
14591
  end
14436
14592
  def self.new(
14593
+ # The randomly generated 6-character Authorization Identification Response code
14594
+ # sent back to the acquirer in an approved response.
14595
+ authorization_identification_response:,
14437
14596
  # A life-cycle identifier used across e.g., an authorization and a reversal.
14438
14597
  # Expected to be unique per acquirer within a window of time. For some card
14439
14598
  # networks the retrieval reference number includes the trace counter.
@@ -14450,6 +14609,7 @@ module Increase
14450
14609
  sig do
14451
14610
  override.returns(
14452
14611
  {
14612
+ authorization_identification_response: T.nilable(String),
14453
14613
  retrieval_reference_number: T.nilable(String),
14454
14614
  trace_number: T.nilable(String),
14455
14615
  transaction_id: T.nilable(String)