increase 1.127.0 → 1.129.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.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +22 -0
  3. data/README.md +1 -1
  4. data/lib/increase/internal/transport/base_client.rb +7 -1
  5. data/lib/increase/models/card_dispute.rb +311 -66
  6. data/lib/increase/models/card_dispute_create_params.rb +102 -30
  7. data/lib/increase/models/card_dispute_submit_user_submission_params.rb +104 -30
  8. data/lib/increase/models/card_payment.rb +60 -15
  9. data/lib/increase/models/declined_transaction.rb +21 -6
  10. data/lib/increase/models/export_create_params.rb +8 -3
  11. data/lib/increase/models/pending_transaction.rb +21 -6
  12. data/lib/increase/models/real_time_decision.rb +24 -6
  13. data/lib/increase/models/simulations/card_dispute_action_params.rb +97 -27
  14. data/lib/increase/models/transaction.rb +23 -6
  15. data/lib/increase/models/wire_drawdown_request.rb +3 -3
  16. data/lib/increase/models/wire_drawdown_request_list_params.rb +3 -3
  17. data/lib/increase/resources/exports.rb +1 -1
  18. data/lib/increase/version.rb +1 -1
  19. data/rbi/increase/internal/transport/base_client.rbi +5 -0
  20. data/rbi/increase/internal/type/base_model.rbi +8 -4
  21. data/rbi/increase/models/card_dispute.rbi +1038 -88
  22. data/rbi/increase/models/card_dispute_create_params.rbi +364 -40
  23. data/rbi/increase/models/card_dispute_submit_user_submission_params.rbi +364 -40
  24. data/rbi/increase/models/card_payment.rbi +211 -20
  25. data/rbi/increase/models/declined_transaction.rbi +78 -8
  26. data/rbi/increase/models/export_create_params.rbi +25 -4
  27. data/rbi/increase/models/pending_transaction.rbi +78 -8
  28. data/rbi/increase/models/real_time_decision.rbi +90 -8
  29. data/rbi/increase/models/simulations/card_dispute_action_params.rbi +333 -36
  30. data/rbi/increase/models/transaction.rbi +76 -8
  31. data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
  32. data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
  33. data/rbi/increase/resources/exports.rbi +1 -1
  34. data/sig/increase/internal/transport/base_client.rbs +2 -0
  35. data/sig/increase/models/card_dispute.rbs +264 -88
  36. data/sig/increase/models/card_dispute_create_params.rbs +150 -50
  37. data/sig/increase/models/card_dispute_submit_user_submission_params.rbs +150 -50
  38. data/sig/increase/models/card_payment.rbs +60 -20
  39. data/sig/increase/models/declined_transaction.rbs +24 -8
  40. data/sig/increase/models/export_create_params.rbs +15 -5
  41. data/sig/increase/models/pending_transaction.rbs +24 -8
  42. data/sig/increase/models/real_time_decision.rbs +24 -8
  43. data/sig/increase/models/simulations/card_dispute_action_params.rbs +135 -45
  44. data/sig/increase/models/transaction.rbs +24 -8
  45. data/sig/increase/models/wire_drawdown_request.rbs +4 -4
  46. data/sig/increase/models/wire_drawdown_request_list_params.rbs +4 -4
  47. data/sig/increase/resources/exports.rbs +1 -1
  48. metadata +2 -2
@@ -1693,8 +1693,24 @@ module Increase
1693
1693
  attr_accessor :category
1694
1694
 
1695
1695
  # Fields specific to the `pulse` network.
1696
- sig { returns(T.nilable(T.anything)) }
1697
- attr_accessor :pulse
1696
+ sig do
1697
+ returns(
1698
+ T.nilable(
1699
+ Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Pulse
1700
+ )
1701
+ )
1702
+ end
1703
+ attr_reader :pulse
1704
+
1705
+ sig do
1706
+ params(
1707
+ pulse:
1708
+ T.nilable(
1709
+ Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Pulse::OrHash
1710
+ )
1711
+ ).void
1712
+ end
1713
+ attr_writer :pulse
1698
1714
 
1699
1715
  # Fields specific to the `visa` network.
1700
1716
  sig do
@@ -1721,7 +1737,10 @@ module Increase
1721
1737
  params(
1722
1738
  category:
1723
1739
  Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::OrSymbol,
1724
- pulse: T.nilable(T.anything),
1740
+ pulse:
1741
+ T.nilable(
1742
+ Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Pulse::OrHash
1743
+ ),
1725
1744
  visa:
1726
1745
  T.nilable(
1727
1746
  Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa::OrHash
@@ -1743,7 +1762,10 @@ module Increase
1743
1762
  {
1744
1763
  category:
1745
1764
  Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::TaggedSymbol,
1746
- pulse: T.nilable(T.anything),
1765
+ pulse:
1766
+ T.nilable(
1767
+ Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Pulse
1768
+ ),
1747
1769
  visa:
1748
1770
  T.nilable(
1749
1771
  Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa
@@ -1792,6 +1814,25 @@ module Increase
1792
1814
  end
1793
1815
  end
1794
1816
 
1817
+ class Pulse < Increase::Internal::Type::BaseModel
1818
+ OrHash =
1819
+ T.type_alias do
1820
+ T.any(
1821
+ Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Pulse,
1822
+ Increase::Internal::AnyHash
1823
+ )
1824
+ end
1825
+
1826
+ # Fields specific to the `pulse` network.
1827
+ sig { returns(T.attached_class) }
1828
+ def self.new
1829
+ end
1830
+
1831
+ sig { override.returns({}) }
1832
+ def to_hash
1833
+ end
1834
+ end
1835
+
1795
1836
  class Visa < Increase::Internal::Type::BaseModel
1796
1837
  OrHash =
1797
1838
  T.type_alias do
@@ -2337,8 +2378,24 @@ module Increase
2337
2378
  attr_writer :incremental_authorization
2338
2379
 
2339
2380
  # Fields specific to the category `initial_authorization`.
2340
- sig { returns(T.nilable(T.anything)) }
2341
- attr_accessor :initial_authorization
2381
+ sig do
2382
+ returns(
2383
+ T.nilable(
2384
+ Increase::RealTimeDecision::CardAuthorization::RequestDetails::InitialAuthorization
2385
+ )
2386
+ )
2387
+ end
2388
+ attr_reader :initial_authorization
2389
+
2390
+ sig do
2391
+ params(
2392
+ initial_authorization:
2393
+ T.nilable(
2394
+ Increase::RealTimeDecision::CardAuthorization::RequestDetails::InitialAuthorization::OrHash
2395
+ )
2396
+ ).void
2397
+ end
2398
+ attr_writer :initial_authorization
2342
2399
 
2343
2400
  # Fields specific to the type of request, such as an incremental authorization.
2344
2401
  sig do
@@ -2349,7 +2406,10 @@ module Increase
2349
2406
  T.nilable(
2350
2407
  Increase::RealTimeDecision::CardAuthorization::RequestDetails::IncrementalAuthorization::OrHash
2351
2408
  ),
2352
- initial_authorization: T.nilable(T.anything)
2409
+ initial_authorization:
2410
+ T.nilable(
2411
+ Increase::RealTimeDecision::CardAuthorization::RequestDetails::InitialAuthorization::OrHash
2412
+ )
2353
2413
  ).returns(T.attached_class)
2354
2414
  end
2355
2415
  def self.new(
@@ -2372,7 +2432,10 @@ module Increase
2372
2432
  T.nilable(
2373
2433
  Increase::RealTimeDecision::CardAuthorization::RequestDetails::IncrementalAuthorization
2374
2434
  ),
2375
- initial_authorization: T.nilable(T.anything)
2435
+ initial_authorization:
2436
+ T.nilable(
2437
+ Increase::RealTimeDecision::CardAuthorization::RequestDetails::InitialAuthorization
2438
+ )
2376
2439
  }
2377
2440
  )
2378
2441
  end
@@ -2463,6 +2526,25 @@ module Increase
2463
2526
  def to_hash
2464
2527
  end
2465
2528
  end
2529
+
2530
+ class InitialAuthorization < Increase::Internal::Type::BaseModel
2531
+ OrHash =
2532
+ T.type_alias do
2533
+ T.any(
2534
+ Increase::RealTimeDecision::CardAuthorization::RequestDetails::InitialAuthorization,
2535
+ Increase::Internal::AnyHash
2536
+ )
2537
+ end
2538
+
2539
+ # Fields specific to the category `initial_authorization`.
2540
+ sig { returns(T.attached_class) }
2541
+ def self.new
2542
+ end
2543
+
2544
+ sig { override.returns({}) }
2545
+ def to_hash
2546
+ end
2547
+ end
2466
2548
  end
2467
2549
 
2468
2550
  class Verification < Increase::Internal::Type::BaseModel
@@ -124,42 +124,97 @@ module Increase
124
124
 
125
125
  # The parameters for accepting the chargeback. Required if and only if `action` is
126
126
  # `accept_chargeback`.
127
- sig { returns(T.nilable(T.anything)) }
127
+ sig do
128
+ returns(
129
+ T.nilable(
130
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback
131
+ )
132
+ )
133
+ end
128
134
  attr_reader :accept_chargeback
129
135
 
130
- sig { params(accept_chargeback: T.anything).void }
136
+ sig do
137
+ params(
138
+ accept_chargeback:
139
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback::OrHash
140
+ ).void
141
+ end
131
142
  attr_writer :accept_chargeback
132
143
 
133
144
  # The parameters for accepting the user submission. Required if and only if
134
145
  # `action` is `accept_user_submission`.
135
- sig { returns(T.nilable(T.anything)) }
146
+ sig do
147
+ returns(
148
+ T.nilable(
149
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission
150
+ )
151
+ )
152
+ end
136
153
  attr_reader :accept_user_submission
137
154
 
138
- sig { params(accept_user_submission: T.anything).void }
155
+ sig do
156
+ params(
157
+ accept_user_submission:
158
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission::OrHash
159
+ ).void
160
+ end
139
161
  attr_writer :accept_user_submission
140
162
 
141
163
  # The parameters for declining the prearbitration. Required if and only if
142
164
  # `action` is `decline_user_prearbitration`.
143
- sig { returns(T.nilable(T.anything)) }
165
+ sig do
166
+ returns(
167
+ T.nilable(
168
+ Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration
169
+ )
170
+ )
171
+ end
144
172
  attr_reader :decline_user_prearbitration
145
173
 
146
- sig { params(decline_user_prearbitration: T.anything).void }
174
+ sig do
175
+ params(
176
+ decline_user_prearbitration:
177
+ Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration::OrHash
178
+ ).void
179
+ end
147
180
  attr_writer :decline_user_prearbitration
148
181
 
149
182
  # The parameters for receiving the prearbitration. Required if and only if
150
183
  # `action` is `receive_merchant_prearbitration`.
151
- sig { returns(T.nilable(T.anything)) }
184
+ sig do
185
+ returns(
186
+ T.nilable(
187
+ Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration
188
+ )
189
+ )
190
+ end
152
191
  attr_reader :receive_merchant_prearbitration
153
192
 
154
- sig { params(receive_merchant_prearbitration: T.anything).void }
193
+ sig do
194
+ params(
195
+ receive_merchant_prearbitration:
196
+ Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration::OrHash
197
+ ).void
198
+ end
155
199
  attr_writer :receive_merchant_prearbitration
156
200
 
157
201
  # The parameters for re-presenting the dispute. Required if and only if `action`
158
202
  # is `represent`.
159
- sig { returns(T.nilable(T.anything)) }
203
+ sig do
204
+ returns(
205
+ T.nilable(
206
+ Increase::Simulations::CardDisputeActionParams::Visa::Represent
207
+ )
208
+ )
209
+ end
160
210
  attr_reader :represent
161
211
 
162
- sig { params(represent: T.anything).void }
212
+ sig do
213
+ params(
214
+ represent:
215
+ Increase::Simulations::CardDisputeActionParams::Visa::Represent::OrHash
216
+ ).void
217
+ end
163
218
  attr_writer :represent
164
219
 
165
220
  # The parameters for requesting further information from the user. Required if and
@@ -183,34 +238,78 @@ module Increase
183
238
 
184
239
  # The parameters for timing out the chargeback. Required if and only if `action`
185
240
  # is `time_out_chargeback`.
186
- sig { returns(T.nilable(T.anything)) }
241
+ sig do
242
+ returns(
243
+ T.nilable(
244
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback
245
+ )
246
+ )
247
+ end
187
248
  attr_reader :time_out_chargeback
188
249
 
189
- sig { params(time_out_chargeback: T.anything).void }
250
+ sig do
251
+ params(
252
+ time_out_chargeback:
253
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback::OrHash
254
+ ).void
255
+ end
190
256
  attr_writer :time_out_chargeback
191
257
 
192
258
  # The parameters for timing out the merchant prearbitration. Required if and only
193
259
  # if `action` is `time_out_merchant_prearbitration`.
194
- sig { returns(T.nilable(T.anything)) }
260
+ sig do
261
+ returns(
262
+ T.nilable(
263
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration
264
+ )
265
+ )
266
+ end
195
267
  attr_reader :time_out_merchant_prearbitration
196
268
 
197
- sig { params(time_out_merchant_prearbitration: T.anything).void }
269
+ sig do
270
+ params(
271
+ time_out_merchant_prearbitration:
272
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration::OrHash
273
+ ).void
274
+ end
198
275
  attr_writer :time_out_merchant_prearbitration
199
276
 
200
277
  # The parameters for timing out the re-presentment. Required if and only if
201
278
  # `action` is `time_out_representment`.
202
- sig { returns(T.nilable(T.anything)) }
279
+ sig do
280
+ returns(
281
+ T.nilable(
282
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment
283
+ )
284
+ )
285
+ end
203
286
  attr_reader :time_out_representment
204
287
 
205
- sig { params(time_out_representment: T.anything).void }
288
+ sig do
289
+ params(
290
+ time_out_representment:
291
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment::OrHash
292
+ ).void
293
+ end
206
294
  attr_writer :time_out_representment
207
295
 
208
296
  # The parameters for timing out the user prearbitration. Required if and only if
209
297
  # `action` is `time_out_user_prearbitration`.
210
- sig { returns(T.nilable(T.anything)) }
298
+ sig do
299
+ returns(
300
+ T.nilable(
301
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration
302
+ )
303
+ )
304
+ end
211
305
  attr_reader :time_out_user_prearbitration
212
306
 
213
- sig { params(time_out_user_prearbitration: T.anything).void }
307
+ sig do
308
+ params(
309
+ time_out_user_prearbitration:
310
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration::OrHash
311
+ ).void
312
+ end
214
313
  attr_writer :time_out_user_prearbitration
215
314
 
216
315
  # The Visa-specific parameters for the taking action on the dispute. Required if
@@ -219,17 +318,26 @@ module Increase
219
318
  params(
220
319
  action:
221
320
  Increase::Simulations::CardDisputeActionParams::Visa::Action::OrSymbol,
222
- accept_chargeback: T.anything,
223
- accept_user_submission: T.anything,
224
- decline_user_prearbitration: T.anything,
225
- receive_merchant_prearbitration: T.anything,
226
- represent: T.anything,
321
+ accept_chargeback:
322
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback::OrHash,
323
+ accept_user_submission:
324
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission::OrHash,
325
+ decline_user_prearbitration:
326
+ Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration::OrHash,
327
+ receive_merchant_prearbitration:
328
+ Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration::OrHash,
329
+ represent:
330
+ Increase::Simulations::CardDisputeActionParams::Visa::Represent::OrHash,
227
331
  request_further_information:
228
332
  Increase::Simulations::CardDisputeActionParams::Visa::RequestFurtherInformation::OrHash,
229
- time_out_chargeback: T.anything,
230
- time_out_merchant_prearbitration: T.anything,
231
- time_out_representment: T.anything,
232
- time_out_user_prearbitration: T.anything
333
+ time_out_chargeback:
334
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback::OrHash,
335
+ time_out_merchant_prearbitration:
336
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration::OrHash,
337
+ time_out_representment:
338
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment::OrHash,
339
+ time_out_user_prearbitration:
340
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration::OrHash
233
341
  ).returns(T.attached_class)
234
342
  end
235
343
  def self.new(
@@ -274,17 +382,26 @@ module Increase
274
382
  {
275
383
  action:
276
384
  Increase::Simulations::CardDisputeActionParams::Visa::Action::OrSymbol,
277
- accept_chargeback: T.anything,
278
- accept_user_submission: T.anything,
279
- decline_user_prearbitration: T.anything,
280
- receive_merchant_prearbitration: T.anything,
281
- represent: T.anything,
385
+ accept_chargeback:
386
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback,
387
+ accept_user_submission:
388
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission,
389
+ decline_user_prearbitration:
390
+ Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration,
391
+ receive_merchant_prearbitration:
392
+ Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration,
393
+ represent:
394
+ Increase::Simulations::CardDisputeActionParams::Visa::Represent,
282
395
  request_further_information:
283
396
  Increase::Simulations::CardDisputeActionParams::Visa::RequestFurtherInformation,
284
- time_out_chargeback: T.anything,
285
- time_out_merchant_prearbitration: T.anything,
286
- time_out_representment: T.anything,
287
- time_out_user_prearbitration: T.anything
397
+ time_out_chargeback:
398
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback,
399
+ time_out_merchant_prearbitration:
400
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration,
401
+ time_out_representment:
402
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment,
403
+ time_out_user_prearbitration:
404
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration
288
405
  }
289
406
  )
290
407
  end
@@ -386,6 +503,106 @@ module Increase
386
503
  end
387
504
  end
388
505
 
506
+ class AcceptChargeback < Increase::Internal::Type::BaseModel
507
+ OrHash =
508
+ T.type_alias do
509
+ T.any(
510
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback,
511
+ Increase::Internal::AnyHash
512
+ )
513
+ end
514
+
515
+ # The parameters for accepting the chargeback. Required if and only if `action` is
516
+ # `accept_chargeback`.
517
+ sig { returns(T.attached_class) }
518
+ def self.new
519
+ end
520
+
521
+ sig { override.returns({}) }
522
+ def to_hash
523
+ end
524
+ end
525
+
526
+ class AcceptUserSubmission < Increase::Internal::Type::BaseModel
527
+ OrHash =
528
+ T.type_alias do
529
+ T.any(
530
+ Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission,
531
+ Increase::Internal::AnyHash
532
+ )
533
+ end
534
+
535
+ # The parameters for accepting the user submission. Required if and only if
536
+ # `action` is `accept_user_submission`.
537
+ sig { returns(T.attached_class) }
538
+ def self.new
539
+ end
540
+
541
+ sig { override.returns({}) }
542
+ def to_hash
543
+ end
544
+ end
545
+
546
+ class DeclineUserPrearbitration < Increase::Internal::Type::BaseModel
547
+ OrHash =
548
+ T.type_alias do
549
+ T.any(
550
+ Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration,
551
+ Increase::Internal::AnyHash
552
+ )
553
+ end
554
+
555
+ # The parameters for declining the prearbitration. Required if and only if
556
+ # `action` is `decline_user_prearbitration`.
557
+ sig { returns(T.attached_class) }
558
+ def self.new
559
+ end
560
+
561
+ sig { override.returns({}) }
562
+ def to_hash
563
+ end
564
+ end
565
+
566
+ class ReceiveMerchantPrearbitration < Increase::Internal::Type::BaseModel
567
+ OrHash =
568
+ T.type_alias do
569
+ T.any(
570
+ Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration,
571
+ Increase::Internal::AnyHash
572
+ )
573
+ end
574
+
575
+ # The parameters for receiving the prearbitration. Required if and only if
576
+ # `action` is `receive_merchant_prearbitration`.
577
+ sig { returns(T.attached_class) }
578
+ def self.new
579
+ end
580
+
581
+ sig { override.returns({}) }
582
+ def to_hash
583
+ end
584
+ end
585
+
586
+ class Represent < Increase::Internal::Type::BaseModel
587
+ OrHash =
588
+ T.type_alias do
589
+ T.any(
590
+ Increase::Simulations::CardDisputeActionParams::Visa::Represent,
591
+ Increase::Internal::AnyHash
592
+ )
593
+ end
594
+
595
+ # The parameters for re-presenting the dispute. Required if and only if `action`
596
+ # is `represent`.
597
+ sig { returns(T.attached_class) }
598
+ def self.new
599
+ end
600
+
601
+ sig { override.returns({}) }
602
+ def to_hash
603
+ end
604
+ end
605
+
389
606
  class RequestFurtherInformation < Increase::Internal::Type::BaseModel
390
607
  OrHash =
391
608
  T.type_alias do
@@ -412,6 +629,86 @@ module Increase
412
629
  def to_hash
413
630
  end
414
631
  end
632
+
633
+ class TimeOutChargeback < Increase::Internal::Type::BaseModel
634
+ OrHash =
635
+ T.type_alias do
636
+ T.any(
637
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback,
638
+ Increase::Internal::AnyHash
639
+ )
640
+ end
641
+
642
+ # The parameters for timing out the chargeback. Required if and only if `action`
643
+ # is `time_out_chargeback`.
644
+ sig { returns(T.attached_class) }
645
+ def self.new
646
+ end
647
+
648
+ sig { override.returns({}) }
649
+ def to_hash
650
+ end
651
+ end
652
+
653
+ class TimeOutMerchantPrearbitration < Increase::Internal::Type::BaseModel
654
+ OrHash =
655
+ T.type_alias do
656
+ T.any(
657
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration,
658
+ Increase::Internal::AnyHash
659
+ )
660
+ end
661
+
662
+ # The parameters for timing out the merchant prearbitration. Required if and only
663
+ # if `action` is `time_out_merchant_prearbitration`.
664
+ sig { returns(T.attached_class) }
665
+ def self.new
666
+ end
667
+
668
+ sig { override.returns({}) }
669
+ def to_hash
670
+ end
671
+ end
672
+
673
+ class TimeOutRepresentment < Increase::Internal::Type::BaseModel
674
+ OrHash =
675
+ T.type_alias do
676
+ T.any(
677
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment,
678
+ Increase::Internal::AnyHash
679
+ )
680
+ end
681
+
682
+ # The parameters for timing out the re-presentment. Required if and only if
683
+ # `action` is `time_out_representment`.
684
+ sig { returns(T.attached_class) }
685
+ def self.new
686
+ end
687
+
688
+ sig { override.returns({}) }
689
+ def to_hash
690
+ end
691
+ end
692
+
693
+ class TimeOutUserPrearbitration < Increase::Internal::Type::BaseModel
694
+ OrHash =
695
+ T.type_alias do
696
+ T.any(
697
+ Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration,
698
+ Increase::Internal::AnyHash
699
+ )
700
+ end
701
+
702
+ # The parameters for timing out the user prearbitration. Required if and only if
703
+ # `action` is `time_out_user_prearbitration`.
704
+ sig { returns(T.attached_class) }
705
+ def self.new
706
+ end
707
+
708
+ sig { override.returns({}) }
709
+ def to_hash
710
+ end
711
+ end
415
712
  end
416
713
  end
417
714
  end