Class: Increase::Models::CardDispute::Visa::NetworkEvent

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/increase/models/card_dispute.rb

Defined Under Namespace

Modules: Category Classes: AttachmentFile, ChargebackAccepted, ChargebackSubmitted, ChargebackTimedOut, MerchantPrearbitrationDeclineSubmitted, MerchantPrearbitrationReceived, MerchantPrearbitrationTimedOut, Represented, RepresentmentTimedOut, UserPrearbitrationAccepted, UserPrearbitrationDeclined, UserPrearbitrationSubmitted, UserPrearbitrationTimedOut, UserWithdrawalSubmitted

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initializeObject

A Card Dispute User Pre-Arbitration Timed Out Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `user_prearbitration_timed_out`. Contains the details specific to a user prearbitration timed out Visa Card Dispute Network Event, which represents that the merchant has timed out responding to the user’s prearbitration request.



272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
# File 'lib/increase/models/card_dispute.rb', line 272

class NetworkEvent < Increase::Internal::Type::BaseModel
  # @!attribute attachment_files
  #   The files attached to the Visa Card Dispute User Submission.
  #
  #   @return [Array<Increase::Models::CardDispute::Visa::NetworkEvent::AttachmentFile>]
  required :attachment_files,
           -> { Increase::Internal::Type::ArrayOf[Increase::CardDispute::Visa::NetworkEvent::AttachmentFile] }

  # @!attribute category
  #   The category of the user submission. We may add additional possible values for
  #   this enum over time; your application should be able to handle such additions
  #   gracefully.
  #
  #   @return [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::Category]
  required :category, enum: -> { Increase::CardDispute::Visa::NetworkEvent::Category }

  # @!attribute chargeback_accepted
  #   A Card Dispute Chargeback Accepted Visa Network Event object. This field will be
  #   present in the JSON response if and only if `category` is equal to
  #   `chargeback_accepted`. Contains the details specific to a chargeback accepted
  #   Visa Card Dispute Network Event, which represents that a chargeback has been
  #   accepted by the merchant.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackAccepted, nil]
  required :chargeback_accepted,
           -> { Increase::CardDispute::Visa::NetworkEvent::ChargebackAccepted },
           nil?: true

  # @!attribute chargeback_submitted
  #   A Card Dispute Chargeback Submitted Visa Network Event object. This field will
  #   be present in the JSON response if and only if `category` is equal to
  #   `chargeback_submitted`. Contains the details specific to a chargeback submitted
  #   Visa Card Dispute Network Event, which represents that a chargeback has been
  #   submitted to the network.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackSubmitted, nil]
  required :chargeback_submitted,
           -> { Increase::CardDispute::Visa::NetworkEvent::ChargebackSubmitted },
           nil?: true

  # @!attribute chargeback_timed_out
  #   A Card Dispute Chargeback Timed Out Visa Network Event object. This field will
  #   be present in the JSON response if and only if `category` is equal to
  #   `chargeback_timed_out`. Contains the details specific to a chargeback timed out
  #   Visa Card Dispute Network Event, which represents that the chargeback has timed
  #   out in the user's favor.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackTimedOut, nil]
  required :chargeback_timed_out,
           -> { Increase::CardDispute::Visa::NetworkEvent::ChargebackTimedOut },
           nil?: true

  # @!attribute created_at
  #   The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
  #   the Visa Card Dispute Network Event was created.
  #
  #   @return [Time]
  required :created_at, Time

  # @!attribute dispute_financial_transaction_id
  #   The dispute financial transaction that resulted from the network event, if any.
  #
  #   @return [String, nil]
  required :dispute_financial_transaction_id, String, nil?: true

  # @!attribute merchant_prearbitration_decline_submitted
  #   A Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event
  #   object. This field will be present in the JSON response if and only if
  #   `category` is equal to `merchant_prearbitration_decline_submitted`. Contains the
  #   details specific to a merchant prearbitration decline submitted Visa Card
  #   Dispute Network Event, which represents that the user has declined the
  #   merchant's request for a prearbitration request decision in their favor.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted, nil]
  required :merchant_prearbitration_decline_submitted,
           -> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted },
           nil?: true

  # @!attribute merchant_prearbitration_received
  #   A Card Dispute Merchant Pre-Arbitration Received Visa Network Event object. This
  #   field will be present in the JSON response if and only if `category` is equal to
  #   `merchant_prearbitration_received`. Contains the details specific to a merchant
  #   prearbitration received Visa Card Dispute Network Event, which represents that
  #   the merchant has issued a prearbitration request in the user's favor.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived, nil]
  required :merchant_prearbitration_received,
           -> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived },
           nil?: true

  # @!attribute merchant_prearbitration_timed_out
  #   A Card Dispute Merchant Pre-Arbitration Timed Out Visa Network Event object.
  #   This field will be present in the JSON response if and only if `category` is
  #   equal to `merchant_prearbitration_timed_out`. Contains the details specific to a
  #   merchant prearbitration timed out Visa Card Dispute Network Event, which
  #   represents that the user has timed out responding to the merchant's
  #   prearbitration request.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationTimedOut, nil]
  required :merchant_prearbitration_timed_out,
           -> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationTimedOut },
           nil?: true

  # @!attribute represented
  #   A Card Dispute Re-presented Visa Network Event object. This field will be
  #   present in the JSON response if and only if `category` is equal to
  #   `represented`. Contains the details specific to a re-presented Visa Card Dispute
  #   Network Event, which represents that the merchant has declined the user's
  #   chargeback and has re-presented the payment.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::Represented, nil]
  required :represented, -> { Increase::CardDispute::Visa::NetworkEvent::Represented }, nil?: true

  # @!attribute representment_timed_out
  #   A Card Dispute Re-presentment Timed Out Visa Network Event object. This field
  #   will be present in the JSON response if and only if `category` is equal to
  #   `representment_timed_out`. Contains the details specific to a re-presentment
  #   time-out Visa Card Dispute Network Event, which represents that the user did not
  #   respond to the re-presentment by the merchant within the time limit.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::RepresentmentTimedOut, nil]
  required :representment_timed_out,
           -> { Increase::CardDispute::Visa::NetworkEvent::RepresentmentTimedOut },
           nil?: true

  # @!attribute user_prearbitration_accepted
  #   A Card Dispute User Pre-Arbitration Accepted Visa Network Event object. This
  #   field will be present in the JSON response if and only if `category` is equal to
  #   `user_prearbitration_accepted`. Contains the details specific to a user
  #   prearbitration accepted Visa Card Dispute Network Event, which represents that
  #   the merchant has accepted the user's prearbitration request in the user's favor.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationAccepted, nil]
  required :user_prearbitration_accepted,
           -> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationAccepted },
           nil?: true

  # @!attribute user_prearbitration_declined
  #   A Card Dispute User Pre-Arbitration Declined Visa Network Event object. This
  #   field will be present in the JSON response if and only if `category` is equal to
  #   `user_prearbitration_declined`. Contains the details specific to a user
  #   prearbitration declined Visa Card Dispute Network Event, which represents that
  #   the merchant has declined the user's prearbitration request.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationDeclined, nil]
  required :user_prearbitration_declined,
           -> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationDeclined },
           nil?: true

  # @!attribute user_prearbitration_submitted
  #   A Card Dispute User Pre-Arbitration Submitted Visa Network Event object. This
  #   field will be present in the JSON response if and only if `category` is equal to
  #   `user_prearbitration_submitted`. Contains the details specific to a user
  #   prearbitration submitted Visa Card Dispute Network Event, which represents that
  #   the user's request for prearbitration has been submitted to the network.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationSubmitted, nil]
  required :user_prearbitration_submitted,
           -> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationSubmitted },
           nil?: true

  # @!attribute user_prearbitration_timed_out
  #   A Card Dispute User Pre-Arbitration Timed Out Visa Network Event object. This
  #   field will be present in the JSON response if and only if `category` is equal to
  #   `user_prearbitration_timed_out`. Contains the details specific to a user
  #   prearbitration timed out Visa Card Dispute Network Event, which represents that
  #   the merchant has timed out responding to the user's prearbitration request.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationTimedOut, nil]
  required :user_prearbitration_timed_out,
           -> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationTimedOut },
           nil?: true

  # @!attribute user_withdrawal_submitted
  #   A Card Dispute User Withdrawal Submitted Visa Network Event object. This field
  #   will be present in the JSON response if and only if `category` is equal to
  #   `user_withdrawal_submitted`. Contains the details specific to a user withdrawal
  #   submitted Visa Card Dispute Network Event, which represents that the user's
  #   request to withdraw the dispute has been submitted to the network.
  #
  #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::UserWithdrawalSubmitted, nil]
  required :user_withdrawal_submitted,
           -> { Increase::CardDispute::Visa::NetworkEvent::UserWithdrawalSubmitted },
           nil?: true

  # @!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:)
  #   Some parameter documentations has been truncated, see
  #   {Increase::Models::CardDispute::Visa::NetworkEvent} for more details.
  #
  #   @param attachment_files [Array<Increase::Models::CardDispute::Visa::NetworkEvent::AttachmentFile>] The files attached to the Visa Card Dispute User Submission.
  #
  #   @param category [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::Category] The category of the user submission. We may add additional possible values for t
  #
  #   @param chargeback_accepted [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackAccepted, nil] A Card Dispute Chargeback Accepted Visa Network Event object. This field will be
  #
  #   @param chargeback_submitted [Increase::Models::CardDispute::Visa::NetworkEvent::ChargebackSubmitted, nil] A Card Dispute Chargeback Submitted Visa Network Event object. This field will b
  #
  #   @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
  #
  #   @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
  #
  #   @param dispute_financial_transaction_id [String, nil] The dispute financial transaction that resulted from the network event, if any.
  #
  #   @param merchant_prearbitration_decline_submitted [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted, nil] A Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event obj
  #
  #   @param merchant_prearbitration_received [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived, nil] A Card Dispute Merchant Pre-Arbitration Received Visa Network Event object. This
  #
  #   @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
  #
  #   @param represented [Increase::Models::CardDispute::Visa::NetworkEvent::Represented, nil] A Card Dispute Re-presented Visa Network Event object. This field will be presen
  #
  #   @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
  #
  #   @param user_prearbitration_accepted [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationAccepted, nil] A Card Dispute User Pre-Arbitration Accepted Visa Network Event object. This fie
  #
  #   @param user_prearbitration_declined [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationDeclined, nil] A Card Dispute User Pre-Arbitration Declined Visa Network Event object. This fie
  #
  #   @param user_prearbitration_submitted [Increase::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationSubmitted, nil] A Card Dispute User Pre-Arbitration Submitted Visa Network Event object. This fi
  #
  #   @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
  #
  #   @param user_withdrawal_submitted [Increase::Models::CardDispute::Visa::NetworkEvent::UserWithdrawalSubmitted, nil] A Card Dispute User Withdrawal Submitted Visa Network Event object. This field w

  class AttachmentFile < Increase::Internal::Type::BaseModel
    # @!attribute file_id
    #   The ID of the file attached to the Card Dispute.
    #
    #   @return [String]
    required :file_id, String

    # @!method initialize(file_id:)
    #   @param file_id [String] The ID of the file attached to the Card Dispute.
  end

  # The category of the user submission. We may add additional possible values for
  # this enum over time; your application should be able to handle such additions
  # gracefully.
  #
  # @see Increase::Models::CardDispute::Visa::NetworkEvent#category
  module Category
    extend Increase::Internal::Type::Enum

    # Card Dispute Chargeback Accepted Visa Network Event: details will be under the `chargeback_accepted` object.
    CHARGEBACK_ACCEPTED = :chargeback_accepted

    # Card Dispute Chargeback Submitted Visa Network Event: details will be under the `chargeback_submitted` object.
    CHARGEBACK_SUBMITTED = :chargeback_submitted

    # Card Dispute Chargeback Timed Out Visa Network Event: details will be under the `chargeback_timed_out` object.
    CHARGEBACK_TIMED_OUT = :chargeback_timed_out

    # Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event: details will be under the `merchant_prearbitration_decline_submitted` object.
    MERCHANT_PREARBITRATION_DECLINE_SUBMITTED = :merchant_prearbitration_decline_submitted

    # Card Dispute Merchant Pre-Arbitration Received Visa Network Event: details will be under the `merchant_prearbitration_received` object.
    MERCHANT_PREARBITRATION_RECEIVED = :merchant_prearbitration_received

    # Card Dispute Merchant Pre-Arbitration Timed Out Visa Network Event: details will be under the `merchant_prearbitration_timed_out` object.
    MERCHANT_PREARBITRATION_TIMED_OUT = :merchant_prearbitration_timed_out

    # Card Dispute Re-presented Visa Network Event: details will be under the `represented` object.
    REPRESENTED = :represented

    # Card Dispute Re-presentment Timed Out Visa Network Event: details will be under the `representment_timed_out` object.
    REPRESENTMENT_TIMED_OUT = :representment_timed_out

    # Card Dispute User Pre-Arbitration Accepted Visa Network Event: details will be under the `user_prearbitration_accepted` object.
    USER_PREARBITRATION_ACCEPTED = :user_prearbitration_accepted

    # Card Dispute User Pre-Arbitration Declined Visa Network Event: details will be under the `user_prearbitration_declined` object.
    USER_PREARBITRATION_DECLINED = :user_prearbitration_declined

    # Card Dispute User Pre-Arbitration Submitted Visa Network Event: details will be under the `user_prearbitration_submitted` object.
    USER_PREARBITRATION_SUBMITTED = :user_prearbitration_submitted

    # Card Dispute User Pre-Arbitration Timed Out Visa Network Event: details will be under the `user_prearbitration_timed_out` object.
    USER_PREARBITRATION_TIMED_OUT = :user_prearbitration_timed_out

    # Card Dispute User Withdrawal Submitted Visa Network Event: details will be under the `user_withdrawal_submitted` object.
    USER_WITHDRAWAL_SUBMITTED = :user_withdrawal_submitted

    # @!method self.values
    #   @return [Array<Symbol>]
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#chargeback_accepted
  class ChargebackAccepted < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute Chargeback Accepted Visa Network Event object. This field will be
    #   present in the JSON response if and only if `category` is equal to
    #   `chargeback_accepted`. Contains the details specific to a chargeback accepted
    #   Visa Card Dispute Network Event, which represents that a chargeback has been
    #   accepted by the merchant.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#chargeback_submitted
  class ChargebackSubmitted < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute Chargeback Submitted Visa Network Event object. This field will
    #   be present in the JSON response if and only if `category` is equal to
    #   `chargeback_submitted`. Contains the details specific to a chargeback submitted
    #   Visa Card Dispute Network Event, which represents that a chargeback has been
    #   submitted to the network.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#chargeback_timed_out
  class ChargebackTimedOut < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute Chargeback Timed Out Visa Network Event object. This field will
    #   be present in the JSON response if and only if `category` is equal to
    #   `chargeback_timed_out`. Contains the details specific to a chargeback timed out
    #   Visa Card Dispute Network Event, which represents that the chargeback has timed
    #   out in the user's favor.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#merchant_prearbitration_decline_submitted
  class MerchantPrearbitrationDeclineSubmitted < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event
    #   object. This field will be present in the JSON response if and only if
    #   `category` is equal to `merchant_prearbitration_decline_submitted`. Contains the
    #   details specific to a merchant prearbitration decline submitted Visa Card
    #   Dispute Network Event, which represents that the user has declined the
    #   merchant's request for a prearbitration request decision in their favor.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#merchant_prearbitration_received
  class MerchantPrearbitrationReceived < Increase::Internal::Type::BaseModel
    # @!attribute cardholder_no_longer_disputes
    #   Cardholder no longer disputes details. Present if and only if `reason` is
    #   `cardholder_no_longer_disputes`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CardholderNoLongerDisputes, nil]
    required :cardholder_no_longer_disputes,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CardholderNoLongerDisputes
             },
             nil?: true

    # @!attribute compelling_evidence
    #   Compelling evidence details. Present if and only if `reason` is
    #   `compelling_evidence`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CompellingEvidence, nil]
    required :compelling_evidence,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CompellingEvidence
             },
             nil?: true

    # @!attribute credit_or_reversal_processed
    #   Credit or reversal processed details. Present if and only if `reason` is
    #   `credit_or_reversal_processed`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CreditOrReversalProcessed, nil]
    required :credit_or_reversal_processed,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CreditOrReversalProcessed
             },
             nil?: true

    # @!attribute delayed_charge_transaction
    #   Delayed charge transaction details. Present if and only if `reason` is
    #   `delayed_charge_transaction`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::DelayedChargeTransaction, nil]
    required :delayed_charge_transaction,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::DelayedChargeTransaction
             },
             nil?: true

    # @!attribute evidence_of_imprint
    #   Evidence of imprint details. Present if and only if `reason` is
    #   `evidence_of_imprint`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::EvidenceOfImprint, nil]
    required :evidence_of_imprint,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::EvidenceOfImprint
             },
             nil?: true

    # @!attribute invalid_dispute
    #   Invalid dispute details. Present if and only if `reason` is `invalid_dispute`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::InvalidDispute, nil]
    required :invalid_dispute,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::InvalidDispute
             },
             nil?: true

    # @!attribute non_fiat_currency_or_non_fungible_token_received
    #   Non-fiat currency or non-fungible token received details. Present if and only if
    #   `reason` is `non_fiat_currency_or_non_fungible_token_received`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::NonFiatCurrencyOrNonFungibleTokenReceived, nil]
    required :non_fiat_currency_or_non_fungible_token_received,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::NonFiatCurrencyOrNonFungibleTokenReceived
             },
             nil?: true

    # @!attribute prior_undisputed_non_fraud_transactions
    #   Prior undisputed non-fraud transactions details. Present if and only if `reason`
    #   is `prior_undisputed_non_fraud_transactions`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::PriorUndisputedNonFraudTransactions, nil]
    required :prior_undisputed_non_fraud_transactions,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::PriorUndisputedNonFraudTransactions
             },
             nil?: true

    # @!attribute reason
    #   The reason the merchant re-presented the dispute.
    #
    #   @return [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::Reason]
    required :reason,
             enum: -> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::Reason }

    # @!method initialize(cardholder_no_longer_disputes:, compelling_evidence:, credit_or_reversal_processed:, delayed_charge_transaction:, evidence_of_imprint:, invalid_dispute:, non_fiat_currency_or_non_fungible_token_received:, prior_undisputed_non_fraud_transactions:, reason:)
    #   Some parameter documentations has been truncated, see
    #   {Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived}
    #   for more details.
    #
    #   A Card Dispute Merchant Pre-Arbitration Received Visa Network Event object. This
    #   field will be present in the JSON response if and only if `category` is equal to
    #   `merchant_prearbitration_received`. Contains the details specific to a merchant
    #   prearbitration received Visa Card Dispute Network Event, which represents that
    #   the merchant has issued a prearbitration request in the user's favor.
    #
    #   @param cardholder_no_longer_disputes [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CardholderNoLongerDisputes, nil] Cardholder no longer disputes details. Present if and only if `reason` is `cardh
    #
    #   @param compelling_evidence [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CompellingEvidence, nil] Compelling evidence details. Present if and only if `reason` is `compelling_evid
    #
    #   @param credit_or_reversal_processed [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CreditOrReversalProcessed, nil] Credit or reversal processed details. Present if and only if `reason` is `credit
    #
    #   @param delayed_charge_transaction [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::DelayedChargeTransaction, nil] Delayed charge transaction details. Present if and only if `reason` is
    #   `delayed\_
    #
    #   @param evidence_of_imprint [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::EvidenceOfImprint, nil] Evidence of imprint details. Present if and only if `reason` is `evidence_of_imp
    #
    #   @param invalid_dispute [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::InvalidDispute, nil] Invalid dispute details. Present if and only if `reason` is `invalid_dispute`.
    #
    #   @param non_fiat_currency_or_non_fungible_token_received [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::NonFiatCurrencyOrNonFungibleTokenReceived, nil] Non-fiat currency or non-fungible token received details. Present if and only if
    #
    #   @param prior_undisputed_non_fraud_transactions [Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::PriorUndisputedNonFraudTransactions, nil] Prior undisputed non-fraud transactions details. Present if and only if `reason`
    #
    #   @param reason [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::Reason] The reason the merchant re-presented the dispute.

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived#cardholder_no_longer_disputes
    class CardholderNoLongerDisputes < Increase::Internal::Type::BaseModel
      # @!attribute explanation
      #   Explanation for why the merchant believes the cardholder no longer disputes the
      #   transaction.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!method initialize(explanation:)
      #   Some parameter documentations has been truncated, see
      #   {Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CardholderNoLongerDisputes}
      #   for more details.
      #
      #   Cardholder no longer disputes details. Present if and only if `reason` is
      #   `cardholder_no_longer_disputes`.
      #
      #   @param explanation [String, nil] Explanation for why the merchant believes the cardholder no longer disputes the
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived#compelling_evidence
    class CompellingEvidence < Increase::Internal::Type::BaseModel
      # @!attribute category
      #   The category of compelling evidence provided by the merchant.
      #
      #   @return [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CompellingEvidence::Category]
      required :category,
               enum: -> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CompellingEvidence::Category }

      # @!attribute explanation
      #   Explanation of the compelling evidence provided by the merchant.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!method initialize(category:, explanation:)
      #   Compelling evidence details. Present if and only if `reason` is
      #   `compelling_evidence`.
      #
      #   @param category [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CompellingEvidence::Category] The category of compelling evidence provided by the merchant.
      #
      #   @param explanation [String, nil] Explanation of the compelling evidence provided by the merchant.

      # The category of compelling evidence provided by the merchant.
      #
      # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CompellingEvidence#category
      module Category
        extend Increase::Internal::Type::Enum

        # Authorized signer known by the cardholder.
        AUTHORIZED_SIGNER = :authorized_signer

        # Proof of delivery.
        DELIVERY = :delivery

        # Proof of delivery to cardholder at place of employment.
        DELIVERY_AT_PLACE_OF_EMPLOYMENT = :delivery_at_place_of_employment

        # Proof of digital goods download.
        DIGITAL_GOODS_DOWNLOAD = :digital_goods_download

        # Dynamic Currency Conversion actively chosen by cardholder.
        DYNAMIC_CURRENCY_CONVERSION_ACTIVELY_CHOSEN = :dynamic_currency_conversion_actively_chosen

        # Flight manifest with corresponding purchase itinerary record.
        FLIGHT_MANIFEST_AND_PURCHASE_ITINERARY = :flight_manifest_and_purchase_itinerary

        # Signer is member of cardholder's household.
        HOUSEHOLD_MEMBER_SIGNER = :household_member_signer

        # Legitimate spend across multiple payment types for same merchandise.
        LEGITIMATE_SPEND_ACROSS_PAYMENT_TYPES_FOR_SAME_MERCHANDISE =
          :legitimate_spend_across_payment_types_for_same_merchandise

        # Documentation to prove the cardholder is in possession of and/or using the merchandise.
        MERCHANDISE_USE = :merchandise_use

        # Passenger transport: proof ticket was received, scanned at gate or other transaction related to original (for example, frequent flyer miles.)
        PASSENGER_TRANSPORT_TICKET_USE = :passenger_transport_ticket_use

        # Recurring transaction with binding contract or previous undisputed recurring transactions and proof the cardholder is using the merchandise or service.
        RECURRING_TRANSACTION_WITH_BINDING_CONTRACT_OR_PREVIOUS_UNDISPUTED_TRANSACTION =
          :recurring_transaction_with_binding_contract_or_previous_undisputed_transaction

        # Signed delivery form, or copy of/details of identification from cardholder as proof goods were picked up at merchant location.
        SIGNED_DELIVERY_OR_PICKUP_FORM = :signed_delivery_or_pickup_form

        # Signed Mail Order/Phone Order form.
        SIGNED_MAIL_ORDER_PHONE_ORDER_FORM = :signed_mail_order_phone_order_form

        # Travel & Expense: loyalty transactions related to purchase.
        TRAVEL_AND_EXPENSE_LOYALTY_TRANSACTION = :travel_and_expense_loyalty_transaction

        # Travel & Expense: subsequent purchases made throughout service period.
        TRAVEL_AND_EXPENSE_SUBSEQUENT_PURCHASE = :travel_and_expense_subsequent_purchase

        # @!method self.values
        #   @return [Array<Symbol>]
      end
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived#credit_or_reversal_processed
    class CreditOrReversalProcessed < Increase::Internal::Type::BaseModel
      # @!attribute amount
      #   The amount of the credit or reversal in the minor unit of its currency. For
      #   dollars, for example, this is cents.
      #
      #   @return [Integer]
      required :amount, Integer

      # @!attribute currency
      #   The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the credit or
      #   reversal's currency.
      #
      #   @return [String]
      required :currency, String

      # @!attribute explanation
      #   Explanation for why the merchant believes the credit or reversal was processed.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!attribute processed_at
      #   The date the credit or reversal was processed.
      #
      #   @return [Date]
      required :processed_at, Date

      # @!method initialize(amount:, currency:, explanation:, processed_at:)
      #   Some parameter documentations has been truncated, see
      #   {Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::CreditOrReversalProcessed}
      #   for more details.
      #
      #   Credit or reversal processed details. Present if and only if `reason` is
      #   `credit_or_reversal_processed`.
      #
      #   @param amount [Integer] The amount of the credit or reversal in the minor unit of its currency. For doll
      #
      #   @param currency [String] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the credit or re
      #
      #   @param explanation [String, nil] Explanation for why the merchant believes the credit or reversal was processed.
      #
      #   @param processed_at [Date] The date the credit or reversal was processed.
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived#delayed_charge_transaction
    class DelayedChargeTransaction < Increase::Internal::Type::BaseModel
      # @!attribute explanation
      #   Additional details about the delayed charge transaction.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!method initialize(explanation:)
      #   Delayed charge transaction details. Present if and only if `reason` is
      #   `delayed_charge_transaction`.
      #
      #   @param explanation [String, nil] Additional details about the delayed charge transaction.
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived#evidence_of_imprint
    class EvidenceOfImprint < Increase::Internal::Type::BaseModel
      # @!attribute explanation
      #   Explanation of the evidence of imprint.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!method initialize(explanation:)
      #   Evidence of imprint details. Present if and only if `reason` is
      #   `evidence_of_imprint`.
      #
      #   @param explanation [String, nil] Explanation of the evidence of imprint.
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived#invalid_dispute
    class InvalidDispute < Increase::Internal::Type::BaseModel
      # @!attribute explanation
      #   Explanation for why the dispute is considered invalid by the merchant.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!attribute reason
      #   The reason a merchant considers the dispute invalid.
      #
      #   @return [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::InvalidDispute::Reason]
      required :reason,
               enum: -> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::InvalidDispute::Reason }

      # @!method initialize(explanation:, reason:)
      #   Invalid dispute details. Present if and only if `reason` is `invalid_dispute`.
      #
      #   @param explanation [String, nil] Explanation for why the dispute is considered invalid by the merchant.
      #
      #   @param reason [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::InvalidDispute::Reason] The reason a merchant considers the dispute invalid.

      # The reason a merchant considers the dispute invalid.
      #
      # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::InvalidDispute#reason
      module Reason
        extend Increase::Internal::Type::Enum

        # Other.
        OTHER = :other

        # Special authorization procedures followed.
        SPECIAL_AUTHORIZATION_PROCEDURES_FOLLOWED = :special_authorization_procedures_followed

        # @!method self.values
        #   @return [Array<Symbol>]
      end
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived#non_fiat_currency_or_non_fungible_token_received
    class NonFiatCurrencyOrNonFungibleTokenReceived < Increase::Internal::Type::BaseModel
      # @!attribute blockchain_transaction_hash
      #   Blockchain transaction hash.
      #
      #   @return [String]
      required :blockchain_transaction_hash, String

      # @!attribute destination_wallet_address
      #   Destination wallet address.
      #
      #   @return [String]
      required :destination_wallet_address, String

      # @!attribute prior_approved_transactions
      #   Prior approved transactions.
      #
      #   @return [String, nil]
      required :prior_approved_transactions, String, nil?: true

      # @!method initialize(blockchain_transaction_hash:, destination_wallet_address:, prior_approved_transactions:)
      #   Non-fiat currency or non-fungible token received details. Present if and only if
      #   `reason` is `non_fiat_currency_or_non_fungible_token_received`.
      #
      #   @param blockchain_transaction_hash [String] Blockchain transaction hash.
      #
      #   @param destination_wallet_address [String] Destination wallet address.
      #
      #   @param prior_approved_transactions [String, nil] Prior approved transactions.
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived#prior_undisputed_non_fraud_transactions
    class PriorUndisputedNonFraudTransactions < Increase::Internal::Type::BaseModel
      # @!attribute explanation
      #   Explanation of the prior undisputed non-fraud transactions provided by the
      #   merchant.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!method initialize(explanation:)
      #   Some parameter documentations has been truncated, see
      #   {Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived::PriorUndisputedNonFraudTransactions}
      #   for more details.
      #
      #   Prior undisputed non-fraud transactions details. Present if and only if `reason`
      #   is `prior_undisputed_non_fraud_transactions`.
      #
      #   @param explanation [String, nil] Explanation of the prior undisputed non-fraud transactions provided by the merch
    end

    # The reason the merchant re-presented the dispute.
    #
    # @see Increase::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived#reason
    module Reason
      extend Increase::Internal::Type::Enum

      # Cardholder no longer disputes the transaction.
      CARDHOLDER_NO_LONGER_DISPUTES = :cardholder_no_longer_disputes

      # Compelling evidence.
      COMPELLING_EVIDENCE = :compelling_evidence

      # Credit or reversal was processed.
      CREDIT_OR_REVERSAL_PROCESSED = :credit_or_reversal_processed

      # Delayed charge transaction.
      DELAYED_CHARGE_TRANSACTION = :delayed_charge_transaction

      # Evidence of imprint.
      EVIDENCE_OF_IMPRINT = :evidence_of_imprint

      # Invalid dispute.
      INVALID_DISPUTE = :invalid_dispute

      # Non-fiat currency or non-fungible token was received by the cardholder.
      NON_FIAT_CURRENCY_OR_NON_FUNGIBLE_TOKEN_RECEIVED = :non_fiat_currency_or_non_fungible_token_received

      # Prior undisputed non-fraud transactions.
      PRIOR_UNDISPUTED_NON_FRAUD_TRANSACTIONS = :prior_undisputed_non_fraud_transactions

      # @!method self.values
      #   @return [Array<Symbol>]
    end
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#merchant_prearbitration_timed_out
  class MerchantPrearbitrationTimedOut < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute Merchant Pre-Arbitration Timed Out Visa Network Event object.
    #   This field will be present in the JSON response if and only if `category` is
    #   equal to `merchant_prearbitration_timed_out`. Contains the details specific to a
    #   merchant prearbitration timed out Visa Card Dispute Network Event, which
    #   represents that the user has timed out responding to the merchant's
    #   prearbitration request.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#represented
  class Represented < Increase::Internal::Type::BaseModel
    # @!attribute cardholder_no_longer_disputes
    #   Cardholder no longer disputes details. Present if and only if `reason` is
    #   `cardholder_no_longer_disputes`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes, nil]
    required :cardholder_no_longer_disputes,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes
             },
             nil?: true

    # @!attribute credit_or_reversal_processed
    #   Credit or reversal processed details. Present if and only if `reason` is
    #   `credit_or_reversal_processed`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed, nil]
    required :credit_or_reversal_processed,
             -> { Increase::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed },
             nil?: true

    # @!attribute invalid_dispute
    #   Invalid dispute details. Present if and only if `reason` is `invalid_dispute`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute, nil]
    required :invalid_dispute,
             -> { Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute },
             nil?: true

    # @!attribute non_fiat_currency_or_non_fungible_token_as_described
    #   Non-fiat currency or non-fungible token as described details. Present if and
    #   only if `reason` is `non_fiat_currency_or_non_fungible_token_as_described`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed, nil]
    required :non_fiat_currency_or_non_fungible_token_as_described,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenAsDescribed
             },
             nil?: true

    # @!attribute non_fiat_currency_or_non_fungible_token_received
    #   Non-fiat currency or non-fungible token received details. Present if and only if
    #   `reason` is `non_fiat_currency_or_non_fungible_token_received`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived, nil]
    required :non_fiat_currency_or_non_fungible_token_received,
             -> {
               Increase::CardDispute::Visa::NetworkEvent::Represented::NonFiatCurrencyOrNonFungibleTokenReceived
             },
             nil?: true

    # @!attribute proof_of_cash_disbursement
    #   Proof of cash disbursement details. Present if and only if `reason` is
    #   `proof_of_cash_disbursement`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement, nil]
    required :proof_of_cash_disbursement,
             -> { Increase::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement },
             nil?: true

    # @!attribute reason
    #   The reason the merchant re-presented the dispute.
    #
    #   @return [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::Represented::Reason]
    required :reason, enum: -> { Increase::CardDispute::Visa::NetworkEvent::Represented::Reason }

    # @!attribute reversal_issued
    #   Reversal issued by merchant details. Present if and only if `reason` is
    #   `reversal_issued`.
    #
    #   @return [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::ReversalIssued, nil]
    required :reversal_issued,
             -> { Increase::CardDispute::Visa::NetworkEvent::Represented::ReversalIssued },
             nil?: true

    # @!method initialize(cardholder_no_longer_disputes:, credit_or_reversal_processed:, invalid_dispute:, non_fiat_currency_or_non_fungible_token_as_described:, non_fiat_currency_or_non_fungible_token_received:, proof_of_cash_disbursement:, reason:, reversal_issued:)
    #   Some parameter documentations has been truncated, see
    #   {Increase::Models::CardDispute::Visa::NetworkEvent::Represented} for more
    #   details.
    #
    #   A Card Dispute Re-presented Visa Network Event object. This field will be
    #   present in the JSON response if and only if `category` is equal to
    #   `represented`. Contains the details specific to a re-presented Visa Card Dispute
    #   Network Event, which represents that the merchant has declined the user's
    #   chargeback and has re-presented the payment.
    #
    #   @param cardholder_no_longer_disputes [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes, nil] Cardholder no longer disputes details. Present if and only if `reason` is `cardh
    #
    #   @param credit_or_reversal_processed [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed, nil] Credit or reversal processed details. Present if and only if `reason` is `credit
    #
    #   @param invalid_dispute [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute, nil] Invalid dispute details. Present if and only if `reason` is `invalid_dispute`.
    #
    #   @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
    #
    #   @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
    #
    #   @param proof_of_cash_disbursement [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement, nil] Proof of cash disbursement details. Present if and only if `reason` is `proof_of
    #
    #   @param reason [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::Represented::Reason] The reason the merchant re-presented the dispute.
    #
    #   @param reversal_issued [Increase::Models::CardDispute::Visa::NetworkEvent::Represented::ReversalIssued, nil] Reversal issued by merchant details. Present if and only if `reason` is `reversa

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#cardholder_no_longer_disputes
    class CardholderNoLongerDisputes < Increase::Internal::Type::BaseModel
      # @!attribute explanation
      #   Explanation for why the merchant believes the cardholder no longer disputes the
      #   transaction.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!method initialize(explanation:)
      #   Some parameter documentations has been truncated, see
      #   {Increase::Models::CardDispute::Visa::NetworkEvent::Represented::CardholderNoLongerDisputes}
      #   for more details.
      #
      #   Cardholder no longer disputes details. Present if and only if `reason` is
      #   `cardholder_no_longer_disputes`.
      #
      #   @param explanation [String, nil] Explanation for why the merchant believes the cardholder no longer disputes the
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#credit_or_reversal_processed
    class CreditOrReversalProcessed < Increase::Internal::Type::BaseModel
      # @!attribute amount
      #   The amount of the credit or reversal in the minor unit of its currency. For
      #   dollars, for example, this is cents.
      #
      #   @return [Integer]
      required :amount, Integer

      # @!attribute currency
      #   The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the credit or
      #   reversal's currency.
      #
      #   @return [String]
      required :currency, String

      # @!attribute explanation
      #   Explanation for why the merchant believes the credit or reversal was processed.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!attribute processed_at
      #   The date the credit or reversal was processed.
      #
      #   @return [Date]
      required :processed_at, Date

      # @!method initialize(amount:, currency:, explanation:, processed_at:)
      #   Some parameter documentations has been truncated, see
      #   {Increase::Models::CardDispute::Visa::NetworkEvent::Represented::CreditOrReversalProcessed}
      #   for more details.
      #
      #   Credit or reversal processed details. Present if and only if `reason` is
      #   `credit_or_reversal_processed`.
      #
      #   @param amount [Integer] The amount of the credit or reversal in the minor unit of its currency. For doll
      #
      #   @param currency [String] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the credit or re
      #
      #   @param explanation [String, nil] Explanation for why the merchant believes the credit or reversal was processed.
      #
      #   @param processed_at [Date] The date the credit or reversal was processed.
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#invalid_dispute
    class InvalidDispute < Increase::Internal::Type::BaseModel
      # @!attribute explanation
      #   Explanation for why the dispute is considered invalid by the merchant.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!attribute reason
      #   The reason a merchant considers the dispute invalid.
      #
      #   @return [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute::Reason]
      required :reason,
               enum: -> { Increase::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute::Reason }

      # @!method initialize(explanation:, reason:)
      #   Invalid dispute details. Present if and only if `reason` is `invalid_dispute`.
      #
      #   @param explanation [String, nil] Explanation for why the dispute is considered invalid by the merchant.
      #
      #   @param reason [Symbol, Increase::Models::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute::Reason] The reason a merchant considers the dispute invalid.

      # The reason a merchant considers the dispute invalid.
      #
      # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented::InvalidDispute#reason
      module Reason
        extend Increase::Internal::Type::Enum

        # Automatic Teller Machine (ATM) transaction proof provided.
        AUTOMATIC_TELLER_MACHINE_TRANSACTION_PROOF_PROVIDED =
          :automatic_teller_machine_transaction_proof_provided

        # Balance of partial prepayment not paid.
        BALANCE_OF_PARTIAL_PREPAYMENT_NOT_PAID = :balance_of_partial_prepayment_not_paid

        # Cardholder canceled before expected receipt date of the merchandise.
        CARDHOLDER_CANCELED_BEFORE_EXPECTED_MERCHANDISE_RECEIPT_DATE =
          :cardholder_canceled_before_expected_merchandise_receipt_date

        # Cardholder canceled before expected receipt date of the services.
        CARDHOLDER_CANCELED_BEFORE_EXPECTED_SERVICES_RECEIPT_DATE =
          :cardholder_canceled_before_expected_services_receipt_date

        # Cardholder canceled on a different date than claimed.
        CARDHOLDER_CANCELED_DIFFERENT_DATE = :cardholder_canceled_different_date

        # Cardholder received  did not cancel according to policy.
        CARDHOLDER_DID_NOT_CANCEL_ACCORDING_TO_POLICY = :cardholder_did_not_cancel_according_to_policy

        # Cardholder received the merchandise.
        CARDHOLDER_RECEIVED_MERCHANDISE = :cardholder_received_merchandise

        # Country code is correct.
        COUNTRY_CODE_CORRECT = :country_code_correct

        # Credit was processed correctly.
        CREDIT_PROCESSED_CORRECTLY = :credit_processed_correctly

        # Currency is correct.
        CURRENCY_CORRECT = :currency_correct

        # Dispute is for quality.
        DISPUTE_IS_FOR_QUALITY = :dispute_is_for_quality

        # Dispute is for Visa Cash Back transaction portion.
        DISPUTE_IS_FOR_VISA_CASH_BACK_TRANSACTION_PORTION = :dispute_is_for_visa_cash_back_transaction_portion

        # Disputed amount is Value Added Tax (VAT).
        DISPUTED_AMOUNT_IS_VALUE_ADDED_TAX = :disputed_amount_is_value_added_tax

        # Disputed amount is Value Added Tax (VAT) but no credit receipt was provided by the cardholder.
        DISPUTED_AMOUNT_IS_VALUE_ADDED_TAX_NO_CREDIT_RECEIPT_PROVIDED =
          :disputed_amount_is_value_added_tax_no_credit_receipt_provided

        # Limited return or cancellation policy was properly disclosed.
        LIMITED_RETURN_OR_CANCELLATION_POLICY_PROPERLY_DISCLOSED =
          :limited_return_or_cancellation_policy_properly_disclosed

        # Merchandise held at cardholder customs agency.
        MERCHANDISE_HELD_AT_CARDHOLDER_CUSTOMS_AGENCY = :merchandise_held_at_cardholder_customs_agency

        # Merchandise matches the merchant's description.
        MERCHANDISE_MATCHES_DESCRIPTION = :merchandise_matches_description

        # Merchandise is not counterfeit.
        MERCHANDISE_NOT_COUNTERFEIT = :merchandise_not_counterfeit

        # Merchandise is not damaged.
        MERCHANDISE_NOT_DAMAGED = :merchandise_not_damaged

        # Merchandise is not defective.
        MERCHANDISE_NOT_DEFECTIVE = :merchandise_not_defective

        # Merchandise was provided prior to the cancellation date.
        MERCHANDISE_PROVIDED_PRIOR_TO_CANCELLATION_DATE = :merchandise_provided_prior_to_cancellation_date

        # Merchandise quality matches the merchant's description.
        MERCHANDISE_QUALITY_MATCHES_DESCRIPTION = :merchandise_quality_matches_description

        # Merchandise was not attempted returned to the merchant.
        MERCHANDISE_RETURN_NOT_ATTEMPTED = :merchandise_return_not_attempted

        # Merchant was not notified of the closed account.
        MERCHANT_NOT_NOTIFIED_OF_CLOSED_ACCOUNT = :merchant_not_notified_of_closed_account

        # Name on manifest of departed flight matches name on purchased itinerary.
        NAME_ON_FLIGHT_MANIFEST_MATCHES_PURCHASE = :name_on_flight_manifest_matches_purchase

        # No credit receipt was provided by the cardholder.
        NO_CREDIT_RECEIPT_PROVIDED = :no_credit_receipt_provided

        # Other.
        OTHER = :other

        # The claimed processing error did not occur.
        PROCESSING_ERROR_INCORRECT = :processing_error_incorrect

        # Returned merchandise held at customs agency outside the merchant's country.
        RETURNED_MECHANDISE_HELD_AT_CUSTOMS_AGENCY_OUTSIDE_MERCHANT_COUNTRY =
          :returned_mechandise_held_at_customs_agency_outside_merchant_country

        # Services match the merchant's description.
        SERVICES_MATCH_DESCRIPTION = :services_match_description

        # Services were provided prior to the cancellation date.
        SERVICES_PROVIDED_PRIOR_TO_CANCELLATION_DATE = :services_provided_prior_to_cancellation_date

        # Services were used after the cancellation date and prior to the dispute submission date.
        SERVICES_USED_AFTER_CANCELLATION_DATE = :services_used_after_cancellation_date

        # Terms of service were not misrepresented.
        TERMS_OF_SERVICE_NOT_MISREPRESENTED = :terms_of_service_not_misrepresented

        # Transaction code is correct.
        TRANSACTION_CODE_CORRECT = :transaction_code_correct

        # @!method self.values
        #   @return [Array<Symbol>]
      end
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#non_fiat_currency_or_non_fungible_token_as_described
    class NonFiatCurrencyOrNonFungibleTokenAsDescribed < Increase::Internal::Type::BaseModel
      # @!method initialize
      #   Non-fiat currency or non-fungible token as described details. Present if and
      #   only if `reason` is `non_fiat_currency_or_non_fungible_token_as_described`.
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#non_fiat_currency_or_non_fungible_token_received
    class NonFiatCurrencyOrNonFungibleTokenReceived < Increase::Internal::Type::BaseModel
      # @!attribute blockchain_transaction_hash
      #   Blockchain transaction hash.
      #
      #   @return [String]
      required :blockchain_transaction_hash, String

      # @!attribute destination_wallet_address
      #   Destination wallet address.
      #
      #   @return [String]
      required :destination_wallet_address, String

      # @!attribute prior_approved_transactions
      #   Prior approved transactions.
      #
      #   @return [String, nil]
      required :prior_approved_transactions, String, nil?: true

      # @!method initialize(blockchain_transaction_hash:, destination_wallet_address:, prior_approved_transactions:)
      #   Non-fiat currency or non-fungible token received details. Present if and only if
      #   `reason` is `non_fiat_currency_or_non_fungible_token_received`.
      #
      #   @param blockchain_transaction_hash [String] Blockchain transaction hash.
      #
      #   @param destination_wallet_address [String] Destination wallet address.
      #
      #   @param prior_approved_transactions [String, nil] Prior approved transactions.
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#proof_of_cash_disbursement
    class ProofOfCashDisbursement < Increase::Internal::Type::BaseModel
      # @!attribute explanation
      #   Explanation for why the merchant believes the evidence provides proof of cash
      #   disbursement.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!method initialize(explanation:)
      #   Some parameter documentations has been truncated, see
      #   {Increase::Models::CardDispute::Visa::NetworkEvent::Represented::ProofOfCashDisbursement}
      #   for more details.
      #
      #   Proof of cash disbursement details. Present if and only if `reason` is
      #   `proof_of_cash_disbursement`.
      #
      #   @param explanation [String, nil] Explanation for why the merchant believes the evidence provides proof of cash di
    end

    # The reason the merchant re-presented the dispute.
    #
    # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#reason
    module Reason
      extend Increase::Internal::Type::Enum

      # Cardholder no longer disputes the transaction.
      CARDHOLDER_NO_LONGER_DISPUTES = :cardholder_no_longer_disputes

      # Credit or reversal was processed.
      CREDIT_OR_REVERSAL_PROCESSED = :credit_or_reversal_processed

      # Invalid dispute.
      INVALID_DISPUTE = :invalid_dispute

      # Non-fiat currency or non-fungible token is as described by the merchant.
      NON_FIAT_CURRENCY_OR_NON_FUNGIBLE_TOKEN_AS_DESCRIBED =
        :non_fiat_currency_or_non_fungible_token_as_described

      # Non-fiat currency or non-fungible token was received by the cardholder.
      NON_FIAT_CURRENCY_OR_NON_FUNGIBLE_TOKEN_RECEIVED = :non_fiat_currency_or_non_fungible_token_received

      # Proof of cash disbursement provided.
      PROOF_OF_CASH_DISBURSEMENT = :proof_of_cash_disbursement

      # Reversal issued by merchant.
      REVERSAL_ISSUED = :reversal_issued

      # @!method self.values
      #   @return [Array<Symbol>]
    end

    # @see Increase::Models::CardDispute::Visa::NetworkEvent::Represented#reversal_issued
    class ReversalIssued < Increase::Internal::Type::BaseModel
      # @!attribute explanation
      #   Explanation of the reversal issued by the merchant.
      #
      #   @return [String, nil]
      required :explanation, String, nil?: true

      # @!method initialize(explanation:)
      #   Reversal issued by merchant details. Present if and only if `reason` is
      #   `reversal_issued`.
      #
      #   @param explanation [String, nil] Explanation of the reversal issued by the merchant.
    end
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#representment_timed_out
  class RepresentmentTimedOut < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute Re-presentment Timed Out Visa Network Event object. This field
    #   will be present in the JSON response if and only if `category` is equal to
    #   `representment_timed_out`. Contains the details specific to a re-presentment
    #   time-out Visa Card Dispute Network Event, which represents that the user did not
    #   respond to the re-presentment by the merchant within the time limit.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_prearbitration_accepted
  class UserPrearbitrationAccepted < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute User Pre-Arbitration Accepted Visa Network Event object. This
    #   field will be present in the JSON response if and only if `category` is equal to
    #   `user_prearbitration_accepted`. Contains the details specific to a user
    #   prearbitration accepted Visa Card Dispute Network Event, which represents that
    #   the merchant has accepted the user's prearbitration request in the user's favor.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_prearbitration_declined
  class UserPrearbitrationDeclined < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute User Pre-Arbitration Declined Visa Network Event object. This
    #   field will be present in the JSON response if and only if `category` is equal to
    #   `user_prearbitration_declined`. Contains the details specific to a user
    #   prearbitration declined Visa Card Dispute Network Event, which represents that
    #   the merchant has declined the user's prearbitration request.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_prearbitration_submitted
  class UserPrearbitrationSubmitted < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute User Pre-Arbitration Submitted Visa Network Event object. This
    #   field will be present in the JSON response if and only if `category` is equal to
    #   `user_prearbitration_submitted`. Contains the details specific to a user
    #   prearbitration submitted Visa Card Dispute Network Event, which represents that
    #   the user's request for prearbitration has been submitted to the network.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_prearbitration_timed_out
  class UserPrearbitrationTimedOut < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute User Pre-Arbitration Timed Out Visa Network Event object. This
    #   field will be present in the JSON response if and only if `category` is equal to
    #   `user_prearbitration_timed_out`. Contains the details specific to a user
    #   prearbitration timed out Visa Card Dispute Network Event, which represents that
    #   the merchant has timed out responding to the user's prearbitration request.
  end

  # @see Increase::Models::CardDispute::Visa::NetworkEvent#user_withdrawal_submitted
  class UserWithdrawalSubmitted < Increase::Internal::Type::BaseModel
    # @!method initialize
    #   A Card Dispute User Withdrawal Submitted Visa Network Event object. This field
    #   will be present in the JSON response if and only if `category` is equal to
    #   `user_withdrawal_submitted`. Contains the details specific to a user withdrawal
    #   submitted Visa Card Dispute Network Event, which represents that the user's
    #   request to withdraw the dispute has been submitted to the network.
  end
end

Instance Attribute Details

#attachment_filesArray<Increase::Models::CardDispute::Visa::NetworkEvent::AttachmentFile>

The files attached to the Visa Card Dispute User Submission.



277
278
# File 'lib/increase/models/card_dispute.rb', line 277

required :attachment_files,
-> { Increase::Internal::Type::ArrayOf[Increase::CardDispute::Visa::NetworkEvent::AttachmentFile] }

#categorySymbol, Increase::Models::CardDispute::Visa::NetworkEvent::Category

The category of the user submission. We may add additional possible values for this enum over time; your application should be able to handle such additions gracefully.



286
# File 'lib/increase/models/card_dispute.rb', line 286

required :category, enum: -> { Increase::CardDispute::Visa::NetworkEvent::Category }

#chargeback_acceptedIncrease::Models::CardDispute::Visa::NetworkEvent::ChargebackAccepted?

A Card Dispute Chargeback Accepted Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `chargeback_accepted`. Contains the details specific to a chargeback accepted Visa Card Dispute Network Event, which represents that a chargeback has been accepted by the merchant.



296
297
298
# File 'lib/increase/models/card_dispute.rb', line 296

required :chargeback_accepted,
-> { Increase::CardDispute::Visa::NetworkEvent::ChargebackAccepted },
nil?: true

#chargeback_submittedIncrease::Models::CardDispute::Visa::NetworkEvent::ChargebackSubmitted?

A Card Dispute Chargeback Submitted Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `chargeback_submitted`. Contains the details specific to a chargeback submitted Visa Card Dispute Network Event, which represents that a chargeback has been submitted to the network.



308
309
310
# File 'lib/increase/models/card_dispute.rb', line 308

required :chargeback_submitted,
-> { Increase::CardDispute::Visa::NetworkEvent::ChargebackSubmitted },
nil?: true

#chargeback_timed_outIncrease::Models::CardDispute::Visa::NetworkEvent::ChargebackTimedOut?

A Card Dispute Chargeback Timed Out Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `chargeback_timed_out`. Contains the details specific to a chargeback timed out Visa Card Dispute Network Event, which represents that the chargeback has timed out in the user’s favor.



320
321
322
# File 'lib/increase/models/card_dispute.rb', line 320

required :chargeback_timed_out,
-> { Increase::CardDispute::Visa::NetworkEvent::ChargebackTimedOut },
nil?: true

#created_atTime

The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the Visa Card Dispute Network Event was created.

Returns:

  • (Time)


329
# File 'lib/increase/models/card_dispute.rb', line 329

required :created_at, Time

#dispute_financial_transaction_idString?

The dispute financial transaction that resulted from the network event, if any.

Returns:

  • (String, nil)


335
# File 'lib/increase/models/card_dispute.rb', line 335

required :dispute_financial_transaction_id, String, nil?: true

#merchant_prearbitration_decline_submittedIncrease::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted?

A Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `merchant_prearbitration_decline_submitted`. Contains the details specific to a merchant prearbitration decline submitted Visa Card Dispute Network Event, which represents that the user has declined the merchant’s request for a prearbitration request decision in their favor.



346
347
348
# File 'lib/increase/models/card_dispute.rb', line 346

required :merchant_prearbitration_decline_submitted,
-> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted },
nil?: true

#merchant_prearbitration_receivedIncrease::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived?

A Card Dispute Merchant Pre-Arbitration Received Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `merchant_prearbitration_received`. Contains the details specific to a merchant prearbitration received Visa Card Dispute Network Event, which represents that the merchant has issued a prearbitration request in the user’s favor.



358
359
360
# File 'lib/increase/models/card_dispute.rb', line 358

required :merchant_prearbitration_received,
-> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationReceived },
nil?: true

#merchant_prearbitration_timed_outIncrease::Models::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationTimedOut?

A Card Dispute Merchant Pre-Arbitration Timed Out Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `merchant_prearbitration_timed_out`. Contains the details specific to a merchant prearbitration timed out Visa Card Dispute Network Event, which represents that the user has timed out responding to the merchant’s prearbitration request.



371
372
373
# File 'lib/increase/models/card_dispute.rb', line 371

required :merchant_prearbitration_timed_out,
-> { Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationTimedOut },
nil?: true

#representedIncrease::Models::CardDispute::Visa::NetworkEvent::Represented?

A Card Dispute Re-presented Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `represented`. Contains the details specific to a re-presented Visa Card Dispute Network Event, which represents that the merchant has declined the user’s chargeback and has re-presented the payment.



383
# File 'lib/increase/models/card_dispute.rb', line 383

required :represented, -> { Increase::CardDispute::Visa::NetworkEvent::Represented }, nil?: true

#representment_timed_outIncrease::Models::CardDispute::Visa::NetworkEvent::RepresentmentTimedOut?

A Card Dispute Re-presentment Timed Out Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `representment_timed_out`. Contains the details specific to a re-presentment time-out Visa Card Dispute Network Event, which represents that the user did not respond to the re-presentment by the merchant within the time limit.



393
394
395
# File 'lib/increase/models/card_dispute.rb', line 393

required :representment_timed_out,
-> { Increase::CardDispute::Visa::NetworkEvent::RepresentmentTimedOut },
nil?: true

#user_prearbitration_acceptedIncrease::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationAccepted?

A Card Dispute User Pre-Arbitration Accepted Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `user_prearbitration_accepted`. Contains the details specific to a user prearbitration accepted Visa Card Dispute Network Event, which represents that the merchant has accepted the user’s prearbitration request in the user’s favor.



405
406
407
# File 'lib/increase/models/card_dispute.rb', line 405

required :user_prearbitration_accepted,
-> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationAccepted },
nil?: true

#user_prearbitration_declinedIncrease::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationDeclined?

A Card Dispute User Pre-Arbitration Declined Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `user_prearbitration_declined`. Contains the details specific to a user prearbitration declined Visa Card Dispute Network Event, which represents that the merchant has declined the user’s prearbitration request.



417
418
419
# File 'lib/increase/models/card_dispute.rb', line 417

required :user_prearbitration_declined,
-> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationDeclined },
nil?: true

#user_prearbitration_submittedIncrease::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationSubmitted?

A Card Dispute User Pre-Arbitration Submitted Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `user_prearbitration_submitted`. Contains the details specific to a user prearbitration submitted Visa Card Dispute Network Event, which represents that the user’s request for prearbitration has been submitted to the network.



429
430
431
# File 'lib/increase/models/card_dispute.rb', line 429

required :user_prearbitration_submitted,
-> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationSubmitted },
nil?: true

#user_prearbitration_timed_outIncrease::Models::CardDispute::Visa::NetworkEvent::UserPrearbitrationTimedOut?

A Card Dispute User Pre-Arbitration Timed Out Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `user_prearbitration_timed_out`. Contains the details specific to a user prearbitration timed out Visa Card Dispute Network Event, which represents that the merchant has timed out responding to the user’s prearbitration request.



441
442
443
# File 'lib/increase/models/card_dispute.rb', line 441

required :user_prearbitration_timed_out,
-> { Increase::CardDispute::Visa::NetworkEvent::UserPrearbitrationTimedOut },
nil?: true

#user_withdrawal_submittedIncrease::Models::CardDispute::Visa::NetworkEvent::UserWithdrawalSubmitted?

A Card Dispute User Withdrawal Submitted Visa Network Event object. This field will be present in the JSON response if and only if ‘category` is equal to `user_withdrawal_submitted`. Contains the details specific to a user withdrawal submitted Visa Card Dispute Network Event, which represents that the user’s request to withdraw the dispute has been submitted to the network.



453
454
455
# File 'lib/increase/models/card_dispute.rb', line 453

required :user_withdrawal_submitted,
-> { Increase::CardDispute::Visa::NetworkEvent::UserWithdrawalSubmitted },
nil?: true

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/increase/models/card_dispute.rb', line 553