increase 1.126.0 → 1.128.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 (38) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -0
  3. data/README.md +1 -1
  4. data/lib/increase/models/card_dispute.rb +311 -66
  5. data/lib/increase/models/card_dispute_create_params.rb +102 -30
  6. data/lib/increase/models/card_dispute_submit_user_submission_params.rb +104 -30
  7. data/lib/increase/models/card_payment.rb +60 -15
  8. data/lib/increase/models/declined_transaction.rb +21 -6
  9. data/lib/increase/models/export_create_params.rb +8 -3
  10. data/lib/increase/models/pending_transaction.rb +32 -33
  11. data/lib/increase/models/real_time_decision.rb +24 -6
  12. data/lib/increase/models/simulations/card_dispute_action_params.rb +97 -27
  13. data/lib/increase/models/transaction.rb +23 -6
  14. data/lib/increase/resources/exports.rb +1 -1
  15. data/lib/increase/version.rb +1 -1
  16. data/rbi/increase/models/card_dispute.rbi +1038 -88
  17. data/rbi/increase/models/card_dispute_create_params.rbi +364 -40
  18. data/rbi/increase/models/card_dispute_submit_user_submission_params.rbi +364 -40
  19. data/rbi/increase/models/card_payment.rbi +211 -20
  20. data/rbi/increase/models/declined_transaction.rbi +78 -8
  21. data/rbi/increase/models/export_create_params.rbi +25 -4
  22. data/rbi/increase/models/pending_transaction.rbi +90 -53
  23. data/rbi/increase/models/real_time_decision.rbi +90 -8
  24. data/rbi/increase/models/simulations/card_dispute_action_params.rbi +333 -36
  25. data/rbi/increase/models/transaction.rbi +76 -8
  26. data/rbi/increase/resources/exports.rbi +1 -1
  27. data/sig/increase/models/card_dispute.rbs +264 -88
  28. data/sig/increase/models/card_dispute_create_params.rbs +150 -50
  29. data/sig/increase/models/card_dispute_submit_user_submission_params.rbs +150 -50
  30. data/sig/increase/models/card_payment.rbs +60 -20
  31. data/sig/increase/models/declined_transaction.rbs +24 -8
  32. data/sig/increase/models/export_create_params.rbs +15 -5
  33. data/sig/increase/models/pending_transaction.rbs +29 -27
  34. data/sig/increase/models/real_time_decision.rbs +24 -8
  35. data/sig/increase/models/simulations/card_dispute_action_params.rbs +135 -45
  36. data/sig/increase/models/transaction.rbs +24 -8
  37. data/sig/increase/resources/exports.rbs +1 -1
  38. metadata +1 -1
@@ -292,8 +292,10 @@ module Increase
292
292
  # Visa Card Dispute Network Event, which represents that a chargeback has been
293
293
  # accepted by the merchant.
294
294
  #
295
- # @return [Object, nil]
296
- required :chargeback_accepted, Increase::Internal::Type::Unknown, nil?: true
295
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackAccepted, nil]
296
+ required :chargeback_accepted,
297
+ -> { Increase::CardDispute::Visa::NetworkEvent::ChargebackAccepted },
298
+ nil?: true
297
299
 
298
300
  # @!attribute chargeback_submitted
299
301
  # A Card Dispute Chargeback Submitted Visa Network Event object. This field will
@@ -302,8 +304,10 @@ module Increase
302
304
  # Visa Card Dispute Network Event, which represents that a chargeback has been
303
305
  # submitted to the network.
304
306
  #
305
- # @return [Object, nil]
306
- required :chargeback_submitted, Increase::Internal::Type::Unknown, nil?: true
307
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackSubmitted, nil]
308
+ required :chargeback_submitted,
309
+ -> { Increase::CardDispute::Visa::NetworkEvent::ChargebackSubmitted },
310
+ nil?: true
307
311
 
308
312
  # @!attribute chargeback_timed_out
309
313
  # A Card Dispute Chargeback Timed Out Visa Network Event object. This field will
@@ -312,8 +316,10 @@ module Increase
312
316
  # Visa Card Dispute Network Event, which represents that the chargeback has timed
313
317
  # out in the user's favor.
314
318
  #
315
- # @return [Object, nil]
316
- required :chargeback_timed_out, Increase::Internal::Type::Unknown, nil?: true
319
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackTimedOut, nil]
320
+ required :chargeback_timed_out,
321
+ -> { Increase::CardDispute::Visa::NetworkEvent::ChargebackTimedOut },
322
+ nil?: true
317
323
 
318
324
  # @!attribute created_at
319
325
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
@@ -336,8 +342,10 @@ module Increase
336
342
  # Dispute Network Event, which represents that the user has declined the
337
343
  # merchant's request for a prearbitration request decision in their favor.
338
344
  #
339
- # @return [Object, nil]
340
- required :merchant_prearbitration_decline_submitted, Increase::Internal::Type::Unknown, nil?: true
345
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted, nil]
346
+ required :merchant_prearbitration_decline_submitted,
347
+ -> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted },
348
+ nil?: true
341
349
 
342
350
  # @!attribute merchant_prearbitration_received
343
351
  # A Card Dispute Merchant Pre-Arbitration Received Visa Network Event object. This
@@ -359,8 +367,10 @@ module Increase
359
367
  # represents that the user has timed out responding to the merchant's
360
368
  # prearbitration request.
361
369
  #
362
- # @return [Object, nil]
363
- required :merchant_prearbitration_timed_out, Increase::Internal::Type::Unknown, nil?: true
370
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationTimedOut, nil]
371
+ required :merchant_prearbitration_timed_out,
372
+ -> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationTimedOut },
373
+ nil?: true
364
374
 
365
375
  # @!attribute represented
366
376
  # A Card Dispute Re-presented Visa Network Event object. This field will be
@@ -379,8 +389,10 @@ module Increase
379
389
  # time-out Visa Card Dispute Network Event, which represents that the user did not
380
390
  # respond to the re-presentment by the merchant within the time limit.
381
391
  #
382
- # @return [Object, nil]
383
- required :representment_timed_out, Increase::Internal::Type::Unknown, nil?: true
392
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::RepresentmentTimedOut, nil]
393
+ required :representment_timed_out,
394
+ -> { Increase::CardDispute::Visa::NetworkEvent::RepresentmentTimedOut },
395
+ nil?: true
384
396
 
385
397
  # @!attribute user_prearbitration_accepted
386
398
  # A Card Dispute User Pre-Arbitration Accepted Visa Network Event object. This
@@ -389,8 +401,10 @@ module Increase
389
401
  # prearbitration accepted Visa Card Dispute Network Event, which represents that
390
402
  # the merchant has accepted the user's prearbitration request in the user's favor.
391
403
  #
392
- # @return [Object, nil]
393
- required :user_prearbitration_accepted, Increase::Internal::Type::Unknown, nil?: true
404
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationAccepted, nil]
405
+ required :user_prearbitration_accepted,
406
+ -> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationAccepted },
407
+ nil?: true
394
408
 
395
409
  # @!attribute user_prearbitration_declined
396
410
  # A Card Dispute User Pre-Arbitration Declined Visa Network Event object. This
@@ -399,8 +413,10 @@ module Increase
399
413
  # prearbitration declined Visa Card Dispute Network Event, which represents that
400
414
  # the merchant has declined the user's prearbitration request.
401
415
  #
402
- # @return [Object, nil]
403
- required :user_prearbitration_declined, Increase::Internal::Type::Unknown, nil?: true
416
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationDeclined, nil]
417
+ required :user_prearbitration_declined,
418
+ -> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationDeclined },
419
+ nil?: true
404
420
 
405
421
  # @!attribute user_prearbitration_submitted
406
422
  # A Card Dispute User Pre-Arbitration Submitted Visa Network Event object. This
@@ -409,8 +425,10 @@ module Increase
409
425
  # prearbitration submitted Visa Card Dispute Network Event, which represents that
410
426
  # the user's request for prearbitration has been submitted to the network.
411
427
  #
412
- # @return [Object, nil]
413
- required :user_prearbitration_submitted, Increase::Internal::Type::Unknown, nil?: true
428
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationSubmitted, nil]
429
+ required :user_prearbitration_submitted,
430
+ -> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationSubmitted },
431
+ nil?: true
414
432
 
415
433
  # @!attribute user_prearbitration_timed_out
416
434
  # A Card Dispute User Pre-Arbitration Timed Out Visa Network Event object. This
@@ -419,8 +437,10 @@ module Increase
419
437
  # prearbitration timed out Visa Card Dispute Network Event, which represents that
420
438
  # the merchant has timed out responding to the user's prearbitration request.
421
439
  #
422
- # @return [Object, nil]
423
- required :user_prearbitration_timed_out, Increase::Internal::Type::Unknown, nil?: true
440
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationTimedOut, nil]
441
+ required :user_prearbitration_timed_out,
442
+ -> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationTimedOut },
443
+ nil?: true
424
444
 
425
445
  # @!attribute user_withdrawal_submitted
426
446
  # A Card Dispute User Withdrawal Submitted Visa Network Event object. This field
@@ -429,8 +449,10 @@ module Increase
429
449
  # submitted Visa Card Dispute Network Event, which represents that the user's
430
450
  # request to withdraw the dispute has been submitted to the network.
431
451
  #
432
- # @return [Object, nil]
433
- required :user_withdrawal_submitted, Increase::Internal::Type::Unknown, nil?: true
452
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserWithdrawalSubmitted, nil]
453
+ required :user_withdrawal_submitted,
454
+ -> { Increase::CardDispute::Visa::NetworkEvent::UserWithdrawalSubmitted },
455
+ nil?: true
434
456
 
435
457
  # @!method initialize(attachment_files:, category:, chargeback_accepted:, chargeback_submitted:, chargeback_timed_out:, created_at:, dispute_financial_transaction_id:, merchant_prearbitration_decline_submitted:, merchant_prearbitration_received:, merchant_prearbitration_timed_out:, represented:, representment_timed_out:, user_prearbitration_accepted:, user_prearbitration_declined:, user_prearbitration_submitted:, user_prearbitration_timed_out:, user_withdrawal_submitted:)
436
458
  # Some parameter documentations has been truncated, see
@@ -440,35 +462,35 @@ module Increase
440
462
  #
441
463
  # @param category [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::Category] The category of the user submission. We may add additional possible values for t
442
464
  #
443
- # @param chargeback_accepted [Object, nil] A Card Dispute Chargeback Accepted Visa Network Event object. This field will be
465
+ # @param chargeback_accepted [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackAccepted, nil] A Card Dispute Chargeback Accepted Visa Network Event object. This field will be
444
466
  #
445
- # @param chargeback_submitted [Object, nil] A Card Dispute Chargeback Submitted Visa Network Event object. This field will b
467
+ # @param chargeback_submitted [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackSubmitted, nil] A Card Dispute Chargeback Submitted Visa Network Event object. This field will b
446
468
  #
447
- # @param chargeback_timed_out [Object, nil] A Card Dispute Chargeback Timed Out Visa Network Event object. This field will b
469
+ # @param chargeback_timed_out [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackTimedOut, nil] A Card Dispute Chargeback Timed Out Visa Network Event object. This field will b
448
470
  #
449
471
  # @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
450
472
  #
451
473
  # @param dispute_financial_transaction_id [String, nil] The dispute financial transaction that resulted from the network event, if any.
452
474
  #
453
- # @param merchant_prearbitration_decline_submitted [Object, nil] A Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event obj
475
+ # @param merchant_prearbitration_decline_submitted [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted, nil] A Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event obj
454
476
  #
455
477
  # @param merchant_prearbitration_received [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived, nil] A Card Dispute Merchant Pre-Arbitration Received Visa Network Event object. This
456
478
  #
457
- # @param merchant_prearbitration_timed_out [Object, nil] A Card Dispute Merchant Pre-Arbitration Timed Out Visa Network Event object. Thi
479
+ # @param merchant_prearbitration_timed_out [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationTimedOut, nil] A Card Dispute Merchant Pre-Arbitration Timed Out Visa Network Event object. Thi
458
480
  #
459
481
  # @param represented [Increase::Models::CardDispute::Visa::NetworkEvent::Represented, nil] A Card Dispute Re-presented Visa Network Event object. This field will be presen
460
482
  #
461
- # @param representment_timed_out [Object, nil] A Card Dispute Re-presentment Timed Out Visa Network Event object. This field wi
483
+ # @param representment_timed_out [Increase::Models::CardDispute::Visa::NetworkEvent::RepresentmentTimedOut, nil] A Card Dispute Re-presentment Timed Out Visa Network Event object. This field wi
462
484
  #
463
- # @param user_prearbitration_accepted [Object, nil] A Card Dispute User Pre-Arbitration Accepted Visa Network Event object. This fie
485
+ # @param user_prearbitration_accepted [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationAccepted, nil] A Card Dispute User Pre-Arbitration Accepted Visa Network Event object. This fie
464
486
  #
465
- # @param user_prearbitration_declined [Object, nil] A Card Dispute User Pre-Arbitration Declined Visa Network Event object. This fie
487
+ # @param user_prearbitration_declined [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationDeclined, nil] A Card Dispute User Pre-Arbitration Declined Visa Network Event object. This fie
466
488
  #
467
- # @param user_prearbitration_submitted [Object, nil] A Card Dispute User Pre-Arbitration Submitted Visa Network Event object. This fi
489
+ # @param user_prearbitration_submitted [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationSubmitted, nil] A Card Dispute User Pre-Arbitration Submitted Visa Network Event object. This fi
468
490
  #
469
- # @param user_prearbitration_timed_out [Object, nil] A Card Dispute User Pre-Arbitration Timed Out Visa Network Event object. This fi
491
+ # @param user_prearbitration_timed_out [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationTimedOut, nil] A Card Dispute User Pre-Arbitration Timed Out Visa Network Event object. This fi
470
492
  #
471
- # @param user_withdrawal_submitted [Object, nil] A Card Dispute User Withdrawal Submitted Visa Network Event object. This field w
493
+ # @param user_withdrawal_submitted [Increase::Models::CardDispute::Visa::NetworkEvent::UserWithdrawalSubmitted, nil] A Card Dispute User Withdrawal Submitted Visa Network Event object. This field w
472
494
 
473
495
  class AttachmentFile < Increase::Internal::Type::BaseModel
474
496
  # @!attribute file_id
@@ -532,6 +554,47 @@ module Increase
532
554
  # @return [Array<Symbol>]
533
555
  end
534
556
 
557
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#chargeback_accepted
558
+ class ChargebackAccepted < Increase::Internal::Type::BaseModel
559
+ # @!method initialize
560
+ # A Card Dispute Chargeback Accepted Visa Network Event object. This field will be
561
+ # present in the JSON response if and only if `category` is equal to
562
+ # `chargeback_accepted`. Contains the details specific to a chargeback accepted
563
+ # Visa Card Dispute Network Event, which represents that a chargeback has been
564
+ # accepted by the merchant.
565
+ end
566
+
567
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#chargeback_submitted
568
+ class ChargebackSubmitted < Increase::Internal::Type::BaseModel
569
+ # @!method initialize
570
+ # A Card Dispute Chargeback Submitted Visa Network Event object. This field will
571
+ # be present in the JSON response if and only if `category` is equal to
572
+ # `chargeback_submitted`. Contains the details specific to a chargeback submitted
573
+ # Visa Card Dispute Network Event, which represents that a chargeback has been
574
+ # submitted to the network.
575
+ end
576
+
577
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#chargeback_timed_out
578
+ class ChargebackTimedOut < Increase::Internal::Type::BaseModel
579
+ # @!method initialize
580
+ # A Card Dispute Chargeback Timed Out Visa Network Event object. This field will
581
+ # be present in the JSON response if and only if `category` is equal to
582
+ # `chargeback_timed_out`. Contains the details specific to a chargeback timed out
583
+ # Visa Card Dispute Network Event, which represents that the chargeback has timed
584
+ # out in the user's favor.
585
+ end
586
+
587
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#merchant_prearbitration_decline_submitted
588
+ class MerchantPrearbitrationDeclineSubmitted < Increase::Internal::Type::BaseModel
589
+ # @!method initialize
590
+ # A Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event
591
+ # object. This field will be present in the JSON response if and only if
592
+ # `category` is equal to `merchant_prearbitration_decline_submitted`. Contains the
593
+ # details specific to a merchant prearbitration decline submitted Visa Card
594
+ # Dispute Network Event, which represents that the user has declined the
595
+ # merchant's request for a prearbitration request decision in their favor.
596
+ end
597
+
535
598
  # @see Increase::Models::CardDispute::Visa::NetworkEvent#merchant_prearbitration_received
536
599
  class MerchantPrearbitrationReceived < Increase::Internal::Type::BaseModel
537
600
  # @!attribute cardholder_no_longer_disputes
@@ -959,6 +1022,17 @@ module Increase
959
1022
  end
960
1023
  end
961
1024
 
1025
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#merchant_prearbitration_timed_out
1026
+ class MerchantPrearbitrationTimedOut < Increase::Internal::Type::BaseModel
1027
+ # @!method initialize
1028
+ # A Card Dispute Merchant Pre-Arbitration Timed Out Visa Network Event object.
1029
+ # This field will be present in the JSON response if and only if `category` is
1030
+ # equal to `merchant_prearbitration_timed_out`. Contains the details specific to a
1031
+ # merchant prearbitration timed out Visa Card Dispute Network Event, which
1032
+ # represents that the user has timed out responding to the merchant's
1033
+ # prearbitration request.
1034
+ end
1035
+
962
1036
  # @see Increase::Models::CardDispute::Visa::NetworkEvent#represented
963
1037
  class Represented < Increase::Internal::Type::BaseModel
964
1038
  # @!attribute cardholder_no_longer_disputes
@@ -993,9 +1067,11 @@ module Increase
993
1067
  # Non-fiat currency or non-fungible token as described details. Present if and
994
1068
  # only if `reason` is `non_fiat_currency_or_non_fungible_token_as_described`.
995
1069
  #
996
- # @return [Object, nil]
1070
+ # @return [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed, nil]
997
1071
  required :non_fiat_currency_or_non_fungible_token_as_described,
998
- Increase::Internal::Type::Unknown,
1072
+ -> {
1073
+ Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed
1074
+ },
999
1075
  nil?: true
1000
1076
 
1001
1077
  # @!attribute non_fiat_currency_or_non_fungible_token_received
@@ -1050,7 +1126,7 @@ module Increase
1050
1126
  #
1051
1127
  # @param invalid_dispute [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute, nil] Invalid dispute details. Present if and only if `reason` is `invalid_dispute`.
1052
1128
  #
1053
- # @param non_fiat_currency_or_non_fungible_token_as_described [Object, nil] Non-fiat currency or non-fungible token as described details. Present if and onl
1129
+ # @param non_fiat_currency_or_non_fungible_token_as_described [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed, nil] Non-fiat currency or non-fungible token as described details. Present if and onl
1054
1130
  #
1055
1131
  # @param non_fiat_currency_or_non_fungible_token_received [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived, nil] Non-fiat currency or non-fungible token received details. Present if and only if
1056
1132
  #
@@ -1266,6 +1342,13 @@ module Increase
1266
1342
  end
1267
1343
  end
1268
1344
 
1345
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#non_fiat_currency_or_non_fungible_token_as_described
1346
+ class NonFiatCurrencyOrNonFungibleTokenAsDescribed < Increase::Internal::Type::BaseModel
1347
+ # @!method initialize
1348
+ # Non-fiat currency or non-fungible token as described details. Present if and
1349
+ # only if `reason` is `non_fiat_currency_or_non_fungible_token_as_described`.
1350
+ end
1351
+
1269
1352
  # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#non_fiat_currency_or_non_fungible_token_received
1270
1353
  class NonFiatCurrencyOrNonFungibleTokenReceived < Increase::Internal::Type::BaseModel
1271
1354
  # @!attribute blockchain_transaction_hash
@@ -1364,6 +1447,66 @@ module Increase
1364
1447
  # @param explanation [String, nil] Explanation of the reversal issued by the merchant.
1365
1448
  end
1366
1449
  end
1450
+
1451
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#representment_timed_out
1452
+ class RepresentmentTimedOut < Increase::Internal::Type::BaseModel
1453
+ # @!method initialize
1454
+ # A Card Dispute Re-presentment Timed Out Visa Network Event object. This field
1455
+ # will be present in the JSON response if and only if `category` is equal to
1456
+ # `representment_timed_out`. Contains the details specific to a re-presentment
1457
+ # time-out Visa Card Dispute Network Event, which represents that the user did not
1458
+ # respond to the re-presentment by the merchant within the time limit.
1459
+ end
1460
+
1461
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_prearbitration_accepted
1462
+ class UserPrearbitrationAccepted < Increase::Internal::Type::BaseModel
1463
+ # @!method initialize
1464
+ # A Card Dispute User Pre-Arbitration Accepted Visa Network Event object. This
1465
+ # field will be present in the JSON response if and only if `category` is equal to
1466
+ # `user_prearbitration_accepted`. Contains the details specific to a user
1467
+ # prearbitration accepted Visa Card Dispute Network Event, which represents that
1468
+ # the merchant has accepted the user's prearbitration request in the user's favor.
1469
+ end
1470
+
1471
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_prearbitration_declined
1472
+ class UserPrearbitrationDeclined < Increase::Internal::Type::BaseModel
1473
+ # @!method initialize
1474
+ # A Card Dispute User Pre-Arbitration Declined Visa Network Event object. This
1475
+ # field will be present in the JSON response if and only if `category` is equal to
1476
+ # `user_prearbitration_declined`. Contains the details specific to a user
1477
+ # prearbitration declined Visa Card Dispute Network Event, which represents that
1478
+ # the merchant has declined the user's prearbitration request.
1479
+ end
1480
+
1481
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_prearbitration_submitted
1482
+ class UserPrearbitrationSubmitted < Increase::Internal::Type::BaseModel
1483
+ # @!method initialize
1484
+ # A Card Dispute User Pre-Arbitration Submitted Visa Network Event object. This
1485
+ # field will be present in the JSON response if and only if `category` is equal to
1486
+ # `user_prearbitration_submitted`. Contains the details specific to a user
1487
+ # prearbitration submitted Visa Card Dispute Network Event, which represents that
1488
+ # the user's request for prearbitration has been submitted to the network.
1489
+ end
1490
+
1491
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_prearbitration_timed_out
1492
+ class UserPrearbitrationTimedOut < Increase::Internal::Type::BaseModel
1493
+ # @!method initialize
1494
+ # A Card Dispute User Pre-Arbitration Timed Out Visa Network Event object. This
1495
+ # field will be present in the JSON response if and only if `category` is equal to
1496
+ # `user_prearbitration_timed_out`. Contains the details specific to a user
1497
+ # prearbitration timed out Visa Card Dispute Network Event, which represents that
1498
+ # the merchant has timed out responding to the user's prearbitration request.
1499
+ end
1500
+
1501
+ # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_withdrawal_submitted
1502
+ class UserWithdrawalSubmitted < Increase::Internal::Type::BaseModel
1503
+ # @!method initialize
1504
+ # A Card Dispute User Withdrawal Submitted Visa Network Event object. This field
1505
+ # will be present in the JSON response if and only if `category` is equal to
1506
+ # `user_withdrawal_submitted`. Contains the details specific to a user withdrawal
1507
+ # submitted Visa Card Dispute Network Event, which represents that the user's
1508
+ # request to withdraw the dispute has been submitted to the network.
1509
+ end
1367
1510
  end
1368
1511
 
1369
1512
  # The category of the currently required user submission if the user wishes to
@@ -1659,8 +1802,10 @@ module Increase
1659
1802
  # Non-receipt of cash. Present if and only if `category` is
1660
1803
  # `consumer_non_receipt_of_cash`.
1661
1804
  #
1662
- # @return [Object, nil]
1663
- required :consumer_non_receipt_of_cash, Increase::Internal::Type::Unknown, nil?: true
1805
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerNonReceiptOfCash, nil]
1806
+ required :consumer_non_receipt_of_cash,
1807
+ -> { Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerNonReceiptOfCash },
1808
+ nil?: true
1664
1809
 
1665
1810
  # @!attribute consumer_original_credit_transaction_not_accepted
1666
1811
  # Original Credit Transaction (OCT) not accepted. Present if and only if
@@ -1772,7 +1917,7 @@ module Increase
1772
1917
  #
1773
1918
  # @param consumer_merchandise_not_received [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived, nil] Merchandise not received. Present if and only if `category` is `consumer_merchan
1774
1919
  #
1775
- # @param consumer_non_receipt_of_cash [Object, nil] Non-receipt of cash. Present if and only if `category` is `consumer*non_receipt*
1920
+ # @param consumer_non_receipt_of_cash [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerNonReceiptOfCash, nil] Non-receipt of cash. Present if and only if `category` is `consumer*non_receipt*
1776
1921
  #
1777
1922
  # @param consumer_original_credit_transaction_not_accepted [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerOriginalCreditTransactionNotAccepted, nil] Original Credit Transaction (OCT) not accepted. Present if and only if `category
1778
1923
  #
@@ -1913,8 +2058,12 @@ module Increase
1913
2058
  # @!attribute not_returned
1914
2059
  # Not returned. Present if and only if `return_outcome` is `not_returned`.
1915
2060
  #
1916
- # @return [Object, nil]
1917
- required :not_returned, Increase::Internal::Type::Unknown, nil?: true
2061
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledMerchandise::NotReturned, nil]
2062
+ required :not_returned,
2063
+ -> {
2064
+ Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledMerchandise::NotReturned
2065
+ },
2066
+ nil?: true
1918
2067
 
1919
2068
  # @!attribute purchase_explanation
1920
2069
  # Purchase explanation.
@@ -1967,7 +2116,7 @@ module Increase
1967
2116
  #
1968
2117
  # @param merchant_resolution_attempted [Symbol, Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledMerchandise::MerchantResolutionAttempted] Merchant resolution attempted.
1969
2118
  #
1970
- # @param not_returned [Object, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
2119
+ # @param not_returned [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledMerchandise::NotReturned, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
1971
2120
  #
1972
2121
  # @param purchase_explanation [String] Purchase explanation.
1973
2122
  #
@@ -2067,6 +2216,12 @@ module Increase
2067
2216
  # @return [Array<Symbol>]
2068
2217
  end
2069
2218
 
2219
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledMerchandise#not_returned
2220
+ class NotReturned < Increase::Internal::Type::BaseModel
2221
+ # @!method initialize
2222
+ # Not returned. Present if and only if `return_outcome` is `not_returned`.
2223
+ end
2224
+
2070
2225
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledMerchandise#return_attempted
2071
2226
  class ReturnAttempted < Increase::Internal::Type::BaseModel
2072
2227
  # @!attribute attempt_explanation
@@ -2374,8 +2529,12 @@ module Increase
2374
2529
  # Other service type explanation. Present if and only if `service_type` is
2375
2530
  # `other`.
2376
2531
  #
2377
- # @return [Object, nil]
2378
- required :other, Increase::Internal::Type::Unknown, nil?: true
2532
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices::Other, nil]
2533
+ required :other,
2534
+ -> {
2535
+ Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices::Other
2536
+ },
2537
+ nil?: true
2379
2538
 
2380
2539
  # @!attribute purchase_explanation
2381
2540
  # Purchase explanation.
@@ -2393,8 +2552,12 @@ module Increase
2393
2552
  # @!attribute timeshare
2394
2553
  # Timeshare explanation. Present if and only if `service_type` is `timeshare`.
2395
2554
  #
2396
- # @return [Object, nil]
2397
- required :timeshare, Increase::Internal::Type::Unknown, nil?: true
2555
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices::Timeshare, nil]
2556
+ required :timeshare,
2557
+ -> {
2558
+ Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices::Timeshare
2559
+ },
2560
+ nil?: true
2398
2561
 
2399
2562
  # @!method initialize(cardholder_cancellation:, contracted_at:, guaranteed_reservation:, merchant_resolution_attempted:, other:, purchase_explanation:, service_type:, timeshare:)
2400
2563
  # Some parameter documentations has been truncated, see
@@ -2412,13 +2575,13 @@ module Increase
2412
2575
  #
2413
2576
  # @param merchant_resolution_attempted [Symbol, Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices::MerchantResolutionAttempted] Merchant resolution attempted.
2414
2577
  #
2415
- # @param other [Object, nil] Other service type explanation. Present if and only if `service_type` is `other`
2578
+ # @param other [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices::Other, nil] Other service type explanation. Present if and only if `service_type` is `other`
2416
2579
  #
2417
2580
  # @param purchase_explanation [String] Purchase explanation.
2418
2581
  #
2419
2582
  # @param service_type [Symbol, Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices::ServiceType] Service type.
2420
2583
  #
2421
- # @param timeshare [Object, nil] Timeshare explanation. Present if and only if `service_type` is `timeshare`.
2584
+ # @param timeshare [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices::Timeshare, nil] Timeshare explanation. Present if and only if `service_type` is `timeshare`.
2422
2585
 
2423
2586
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices#cardholder_cancellation
2424
2587
  class CardholderCancellation < Increase::Internal::Type::BaseModel
@@ -2519,6 +2682,13 @@ module Increase
2519
2682
  # @return [Array<Symbol>]
2520
2683
  end
2521
2684
 
2685
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices#other
2686
+ class Other < Increase::Internal::Type::BaseModel
2687
+ # @!method initialize
2688
+ # Other service type explanation. Present if and only if `service_type` is
2689
+ # `other`.
2690
+ end
2691
+
2522
2692
  # Service type.
2523
2693
  #
2524
2694
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices#service_type
@@ -2537,6 +2707,12 @@ module Increase
2537
2707
  # @!method self.values
2538
2708
  # @return [Array<Symbol>]
2539
2709
  end
2710
+
2711
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerCanceledServices#timeshare
2712
+ class Timeshare < Increase::Internal::Type::BaseModel
2713
+ # @!method initialize
2714
+ # Timeshare explanation. Present if and only if `service_type` is `timeshare`.
2715
+ end
2540
2716
  end
2541
2717
 
2542
2718
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback#consumer_counterfeit_merchandise
@@ -2613,8 +2789,12 @@ module Increase
2613
2789
  # @!attribute not_returned
2614
2790
  # Not returned. Present if and only if `return_outcome` is `not_returned`.
2615
2791
  #
2616
- # @return [Object, nil]
2617
- required :not_returned, Increase::Internal::Type::Unknown, nil?: true
2792
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned, nil]
2793
+ required :not_returned,
2794
+ -> {
2795
+ Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned
2796
+ },
2797
+ nil?: true
2618
2798
 
2619
2799
  # @!attribute order_and_issue_explanation
2620
2800
  # Order and issue explanation.
@@ -2665,7 +2845,7 @@ module Increase
2665
2845
  #
2666
2846
  # @param merchant_resolution_attempted [Symbol, Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerDamagedOrDefectiveMerchandise::MerchantResolutionAttempted] Merchant resolution attempted.
2667
2847
  #
2668
- # @param not_returned [Object, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
2848
+ # @param not_returned [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
2669
2849
  #
2670
2850
  # @param order_and_issue_explanation [String] Order and issue explanation.
2671
2851
  #
@@ -2693,6 +2873,12 @@ module Increase
2693
2873
  # @return [Array<Symbol>]
2694
2874
  end
2695
2875
 
2876
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerDamagedOrDefectiveMerchandise#not_returned
2877
+ class NotReturned < Increase::Internal::Type::BaseModel
2878
+ # @!method initialize
2879
+ # Not returned. Present if and only if `return_outcome` is `not_returned`.
2880
+ end
2881
+
2696
2882
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerDamagedOrDefectiveMerchandise#return_attempted
2697
2883
  class ReturnAttempted < Increase::Internal::Type::BaseModel
2698
2884
  # @!attribute attempt_explanation
@@ -2870,8 +3056,12 @@ module Increase
2870
3056
  # @!attribute not_returned
2871
3057
  # Not returned. Present if and only if `return_outcome` is `not_returned`.
2872
3058
  #
2873
- # @return [Object, nil]
2874
- required :not_returned, Increase::Internal::Type::Unknown, nil?: true
3059
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned, nil]
3060
+ required :not_returned,
3061
+ -> {
3062
+ Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned
3063
+ },
3064
+ nil?: true
2875
3065
 
2876
3066
  # @!attribute purchase_explanation
2877
3067
  # Purchase explanation.
@@ -2924,7 +3114,7 @@ module Increase
2924
3114
  #
2925
3115
  # @param misrepresentation_explanation [String] Misrepresentation explanation.
2926
3116
  #
2927
- # @param not_returned [Object, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
3117
+ # @param not_returned [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
2928
3118
  #
2929
3119
  # @param purchase_explanation [String] Purchase explanation.
2930
3120
  #
@@ -2952,6 +3142,12 @@ module Increase
2952
3142
  # @return [Array<Symbol>]
2953
3143
  end
2954
3144
 
3145
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation#not_returned
3146
+ class NotReturned < Increase::Internal::Type::BaseModel
3147
+ # @!method initialize
3148
+ # Not returned. Present if and only if `return_outcome` is `not_returned`.
3149
+ end
3150
+
2955
3151
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseMisrepresentation#return_attempted
2956
3152
  class ReturnAttempted < Increase::Internal::Type::BaseModel
2957
3153
  # @!attribute attempt_explanation
@@ -3419,8 +3615,12 @@ module Increase
3419
3615
  # No cancellation. Present if and only if `cancellation_outcome` is
3420
3616
  # `no_cancellation`.
3421
3617
  #
3422
- # @return [Object, nil]
3423
- required :no_cancellation, Increase::Internal::Type::Unknown, nil?: true
3618
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation, nil]
3619
+ required :no_cancellation,
3620
+ -> {
3621
+ Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation
3622
+ },
3623
+ nil?: true
3424
3624
 
3425
3625
  # @!attribute purchase_info_and_explanation
3426
3626
  # Purchase information and explanation.
@@ -3452,7 +3652,7 @@ module Increase
3452
3652
  #
3453
3653
  # @param merchant_resolution_attempted [Symbol, Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::MerchantResolutionAttempted] Merchant resolution attempted.
3454
3654
  #
3455
- # @param no_cancellation [Object, nil] No cancellation. Present if and only if `cancellation_outcome` is `no_cancellati
3655
+ # @param no_cancellation [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation, nil] No cancellation. Present if and only if `cancellation_outcome` is `no_cancellati
3456
3656
  #
3457
3657
  # @param purchase_info_and_explanation [String] Purchase information and explanation.
3458
3658
 
@@ -3509,8 +3709,12 @@ module Increase
3509
3709
  # @!attribute not_returned
3510
3710
  # Not returned. Present if and only if `return_outcome` is `not_returned`.
3511
3711
  #
3512
- # @return [Object, nil]
3513
- required :not_returned, Increase::Internal::Type::Unknown, nil?: true
3712
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned, nil]
3713
+ required :not_returned,
3714
+ -> {
3715
+ Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned
3716
+ },
3717
+ nil?: true
3514
3718
 
3515
3719
  # @!attribute return_attempted
3516
3720
  # Return attempted. Present if and only if `return_outcome` is `return_attempted`.
@@ -3548,7 +3752,7 @@ module Increase
3548
3752
  #
3549
3753
  # @param explanation [String] Explanation.
3550
3754
  #
3551
- # @param not_returned [Object, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
3755
+ # @param not_returned [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
3552
3756
  #
3553
3757
  # @param return_attempted [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::Delayed::ReturnAttempted, nil] Return attempted. Present if and only if `return_outcome` is `return_attempted`.
3554
3758
  #
@@ -3556,6 +3760,12 @@ module Increase
3556
3760
  #
3557
3761
  # @param returned [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::Delayed::Returned, nil] Returned. Present if and only if `return_outcome` is `returned`.
3558
3762
 
3763
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::Delayed#not_returned
3764
+ class NotReturned < Increase::Internal::Type::BaseModel
3765
+ # @!method initialize
3766
+ # Not returned. Present if and only if `return_outcome` is `not_returned`.
3767
+ end
3768
+
3559
3769
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived::Delayed#return_attempted
3560
3770
  class ReturnAttempted < Increase::Internal::Type::BaseModel
3561
3771
  # @!attribute attempted_at
@@ -3673,6 +3883,20 @@ module Increase
3673
3883
  # @!method self.values
3674
3884
  # @return [Array<Symbol>]
3675
3885
  end
3886
+
3887
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerMerchandiseNotReceived#no_cancellation
3888
+ class NoCancellation < Increase::Internal::Type::BaseModel
3889
+ # @!method initialize
3890
+ # No cancellation. Present if and only if `cancellation_outcome` is
3891
+ # `no_cancellation`.
3892
+ end
3893
+ end
3894
+
3895
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback#consumer_non_receipt_of_cash
3896
+ class ConsumerNonReceiptOfCash < Increase::Internal::Type::BaseModel
3897
+ # @!method initialize
3898
+ # Non-receipt of cash. Present if and only if `category` is
3899
+ # `consumer_non_receipt_of_cash`.
3676
3900
  end
3677
3901
 
3678
3902
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback#consumer_original_credit_transaction_not_accepted
@@ -3733,8 +3957,12 @@ module Increase
3733
3957
  # @!attribute not_returned
3734
3958
  # Not returned. Present if and only if `return_outcome` is `not_returned`.
3735
3959
  #
3736
- # @return [Object, nil]
3737
- required :not_returned, Increase::Internal::Type::Unknown, nil?: true
3960
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise::NotReturned, nil]
3961
+ required :not_returned,
3962
+ -> {
3963
+ Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise::NotReturned
3964
+ },
3965
+ nil?: true
3738
3966
 
3739
3967
  # @!attribute ongoing_negotiations
3740
3968
  # Ongoing negotiations. Exclude if there is no evidence of ongoing negotiations.
@@ -3797,7 +4025,7 @@ module Increase
3797
4025
  #
3798
4026
  # @param merchant_resolution_attempted [Symbol, Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise::MerchantResolutionAttempted] Merchant resolution attempted.
3799
4027
  #
3800
- # @param not_returned [Object, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
4028
+ # @param not_returned [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise::NotReturned, nil] Not returned. Present if and only if `return_outcome` is `not_returned`.
3801
4029
  #
3802
4030
  # @param ongoing_negotiations [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise::OngoingNegotiations, nil] Ongoing negotiations. Exclude if there is no evidence of ongoing negotiations.
3803
4031
  #
@@ -3827,6 +4055,12 @@ module Increase
3827
4055
  # @return [Array<Symbol>]
3828
4056
  end
3829
4057
 
4058
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise#not_returned
4059
+ class NotReturned < Increase::Internal::Type::BaseModel
4060
+ # @!method initialize
4061
+ # Not returned. Present if and only if `return_outcome` is `not_returned`.
4062
+ end
4063
+
3830
4064
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerQualityMerchandise#ongoing_negotiations
3831
4065
  class OngoingNegotiations < Increase::Internal::Type::BaseModel
3832
4066
  # @!attribute explanation
@@ -4492,8 +4726,12 @@ module Increase
4492
4726
  # No cancellation. Present if and only if `cancellation_outcome` is
4493
4727
  # `no_cancellation`.
4494
4728
  #
4495
- # @return [Object, nil]
4496
- required :no_cancellation, Increase::Internal::Type::Unknown, nil?: true
4729
+ # @return [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotReceived::NoCancellation, nil]
4730
+ required :no_cancellation,
4731
+ -> {
4732
+ Increase::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotReceived::NoCancellation
4733
+ },
4734
+ nil?: true
4497
4735
 
4498
4736
  # @!attribute purchase_info_and_explanation
4499
4737
  # Purchase information and explanation.
@@ -4519,7 +4757,7 @@ module Increase
4519
4757
  #
4520
4758
  # @param merchant_resolution_attempted [Symbol, Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotReceived::MerchantResolutionAttempted] Merchant resolution attempted.
4521
4759
  #
4522
- # @param no_cancellation [Object, nil] No cancellation. Present if and only if `cancellation_outcome` is `no_cancellati
4760
+ # @param no_cancellation [Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotReceived::NoCancellation, nil] No cancellation. Present if and only if `cancellation_outcome` is `no_cancellati
4523
4761
  #
4524
4762
  # @param purchase_info_and_explanation [String] Purchase information and explanation.
4525
4763
 
@@ -4595,6 +4833,13 @@ module Increase
4595
4833
  # @!method self.values
4596
4834
  # @return [Array<Symbol>]
4597
4835
  end
4836
+
4837
+ # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback::ConsumerServicesNotReceived#no_cancellation
4838
+ class NoCancellation < Increase::Internal::Type::BaseModel
4839
+ # @!method initialize
4840
+ # No cancellation. Present if and only if `cancellation_outcome` is
4841
+ # `no_cancellation`.
4842
+ end
4598
4843
  end
4599
4844
 
4600
4845
  # @see Increase::Models::CardDispute::Visa::UserSubmission::Chargeback#fraud