increase 1.127.0 → 1.129.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/README.md +1 -1
- data/lib/increase/internal/transport/base_client.rb +7 -1
- data/lib/increase/models/card_dispute.rb +311 -66
- data/lib/increase/models/card_dispute_create_params.rb +102 -30
- data/lib/increase/models/card_dispute_submit_user_submission_params.rb +104 -30
- data/lib/increase/models/card_payment.rb +60 -15
- data/lib/increase/models/declined_transaction.rb +21 -6
- data/lib/increase/models/export_create_params.rb +8 -3
- data/lib/increase/models/pending_transaction.rb +21 -6
- data/lib/increase/models/real_time_decision.rb +24 -6
- data/lib/increase/models/simulations/card_dispute_action_params.rb +97 -27
- data/lib/increase/models/transaction.rb +23 -6
- data/lib/increase/models/wire_drawdown_request.rb +3 -3
- data/lib/increase/models/wire_drawdown_request_list_params.rb +3 -3
- data/lib/increase/resources/exports.rb +1 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/internal/transport/base_client.rbi +5 -0
- data/rbi/increase/internal/type/base_model.rbi +8 -4
- data/rbi/increase/models/card_dispute.rbi +1038 -88
- data/rbi/increase/models/card_dispute_create_params.rbi +364 -40
- data/rbi/increase/models/card_dispute_submit_user_submission_params.rbi +364 -40
- data/rbi/increase/models/card_payment.rbi +211 -20
- data/rbi/increase/models/declined_transaction.rbi +78 -8
- data/rbi/increase/models/export_create_params.rbi +25 -4
- data/rbi/increase/models/pending_transaction.rbi +78 -8
- data/rbi/increase/models/real_time_decision.rbi +90 -8
- data/rbi/increase/models/simulations/card_dispute_action_params.rbi +333 -36
- data/rbi/increase/models/transaction.rbi +76 -8
- data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
- data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
- data/rbi/increase/resources/exports.rbi +1 -1
- data/sig/increase/internal/transport/base_client.rbs +2 -0
- data/sig/increase/models/card_dispute.rbs +264 -88
- data/sig/increase/models/card_dispute_create_params.rbs +150 -50
- data/sig/increase/models/card_dispute_submit_user_submission_params.rbs +150 -50
- data/sig/increase/models/card_payment.rbs +60 -20
- data/sig/increase/models/declined_transaction.rbs +24 -8
- data/sig/increase/models/export_create_params.rbs +15 -5
- data/sig/increase/models/pending_transaction.rbs +24 -8
- data/sig/increase/models/real_time_decision.rbs +24 -8
- data/sig/increase/models/simulations/card_dispute_action_params.rbs +135 -45
- data/sig/increase/models/transaction.rbs +24 -8
- data/sig/increase/models/wire_drawdown_request.rbs +4 -4
- data/sig/increase/models/wire_drawdown_request_list_params.rbs +4 -4
- data/sig/increase/resources/exports.rbs +1 -1
- metadata +2 -2
|
@@ -555,10 +555,21 @@ module Increase
|
|
|
555
555
|
|
|
556
556
|
# Non-receipt of cash. Required if and only if `category` is
|
|
557
557
|
# `consumer_non_receipt_of_cash`.
|
|
558
|
-
sig
|
|
558
|
+
sig do
|
|
559
|
+
returns(
|
|
560
|
+
T.nilable(
|
|
561
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerNonReceiptOfCash
|
|
562
|
+
)
|
|
563
|
+
)
|
|
564
|
+
end
|
|
559
565
|
attr_reader :consumer_non_receipt_of_cash
|
|
560
566
|
|
|
561
|
-
sig
|
|
567
|
+
sig do
|
|
568
|
+
params(
|
|
569
|
+
consumer_non_receipt_of_cash:
|
|
570
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerNonReceiptOfCash::OrHash
|
|
571
|
+
).void
|
|
572
|
+
end
|
|
562
573
|
attr_writer :consumer_non_receipt_of_cash
|
|
563
574
|
|
|
564
575
|
# Original Credit Transaction (OCT) not accepted. Required if and only if
|
|
@@ -737,7 +748,8 @@ module Increase
|
|
|
737
748
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotAsDescribed::OrHash,
|
|
738
749
|
consumer_merchandise_not_received:
|
|
739
750
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::OrHash,
|
|
740
|
-
consumer_non_receipt_of_cash:
|
|
751
|
+
consumer_non_receipt_of_cash:
|
|
752
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerNonReceiptOfCash::OrHash,
|
|
741
753
|
consumer_original_credit_transaction_not_accepted:
|
|
742
754
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerOriginalCreditTransactionNotAccepted::OrHash,
|
|
743
755
|
consumer_quality_merchandise:
|
|
@@ -841,7 +853,8 @@ module Increase
|
|
|
841
853
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotAsDescribed,
|
|
842
854
|
consumer_merchandise_not_received:
|
|
843
855
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived,
|
|
844
|
-
consumer_non_receipt_of_cash:
|
|
856
|
+
consumer_non_receipt_of_cash:
|
|
857
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerNonReceiptOfCash,
|
|
845
858
|
consumer_original_credit_transaction_not_accepted:
|
|
846
859
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerOriginalCreditTransactionNotAccepted,
|
|
847
860
|
consumer_quality_merchandise:
|
|
@@ -1160,10 +1173,21 @@ module Increase
|
|
|
1160
1173
|
attr_writer :cardholder_cancellation
|
|
1161
1174
|
|
|
1162
1175
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1163
|
-
sig
|
|
1176
|
+
sig do
|
|
1177
|
+
returns(
|
|
1178
|
+
T.nilable(
|
|
1179
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::NotReturned
|
|
1180
|
+
)
|
|
1181
|
+
)
|
|
1182
|
+
end
|
|
1164
1183
|
attr_reader :not_returned
|
|
1165
1184
|
|
|
1166
|
-
sig
|
|
1185
|
+
sig do
|
|
1186
|
+
params(
|
|
1187
|
+
not_returned:
|
|
1188
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::NotReturned::OrHash
|
|
1189
|
+
).void
|
|
1190
|
+
end
|
|
1167
1191
|
attr_writer :not_returned
|
|
1168
1192
|
|
|
1169
1193
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -1215,7 +1239,8 @@ module Increase
|
|
|
1215
1239
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::ReturnOutcome::OrSymbol,
|
|
1216
1240
|
cardholder_cancellation:
|
|
1217
1241
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::CardholderCancellation::OrHash,
|
|
1218
|
-
not_returned:
|
|
1242
|
+
not_returned:
|
|
1243
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::NotReturned::OrHash,
|
|
1219
1244
|
return_attempted:
|
|
1220
1245
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::ReturnAttempted::OrHash,
|
|
1221
1246
|
returned:
|
|
@@ -1254,7 +1279,8 @@ module Increase
|
|
|
1254
1279
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::ReturnOutcome::OrSymbol,
|
|
1255
1280
|
cardholder_cancellation:
|
|
1256
1281
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::CardholderCancellation,
|
|
1257
|
-
not_returned:
|
|
1282
|
+
not_returned:
|
|
1283
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::NotReturned,
|
|
1258
1284
|
return_attempted:
|
|
1259
1285
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::ReturnAttempted,
|
|
1260
1286
|
returned:
|
|
@@ -1496,6 +1522,25 @@ module Increase
|
|
|
1496
1522
|
end
|
|
1497
1523
|
end
|
|
1498
1524
|
|
|
1525
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
1526
|
+
OrHash =
|
|
1527
|
+
T.type_alias do
|
|
1528
|
+
T.any(
|
|
1529
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::NotReturned,
|
|
1530
|
+
Increase::Internal::AnyHash
|
|
1531
|
+
)
|
|
1532
|
+
end
|
|
1533
|
+
|
|
1534
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1535
|
+
sig { returns(T.attached_class) }
|
|
1536
|
+
def self.new
|
|
1537
|
+
end
|
|
1538
|
+
|
|
1539
|
+
sig { override.returns({}) }
|
|
1540
|
+
def to_hash
|
|
1541
|
+
end
|
|
1542
|
+
end
|
|
1543
|
+
|
|
1499
1544
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
1500
1545
|
OrHash =
|
|
1501
1546
|
T.type_alias do
|
|
@@ -2058,17 +2103,39 @@ module Increase
|
|
|
2058
2103
|
|
|
2059
2104
|
# Other service type explanation. Required if and only if `service_type` is
|
|
2060
2105
|
# `other`.
|
|
2061
|
-
sig
|
|
2106
|
+
sig do
|
|
2107
|
+
returns(
|
|
2108
|
+
T.nilable(
|
|
2109
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Other
|
|
2110
|
+
)
|
|
2111
|
+
)
|
|
2112
|
+
end
|
|
2062
2113
|
attr_reader :other
|
|
2063
2114
|
|
|
2064
|
-
sig
|
|
2115
|
+
sig do
|
|
2116
|
+
params(
|
|
2117
|
+
other:
|
|
2118
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Other::OrHash
|
|
2119
|
+
).void
|
|
2120
|
+
end
|
|
2065
2121
|
attr_writer :other
|
|
2066
2122
|
|
|
2067
2123
|
# Timeshare explanation. Required if and only if `service_type` is `timeshare`.
|
|
2068
|
-
sig
|
|
2124
|
+
sig do
|
|
2125
|
+
returns(
|
|
2126
|
+
T.nilable(
|
|
2127
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Timeshare
|
|
2128
|
+
)
|
|
2129
|
+
)
|
|
2130
|
+
end
|
|
2069
2131
|
attr_reader :timeshare
|
|
2070
2132
|
|
|
2071
|
-
sig
|
|
2133
|
+
sig do
|
|
2134
|
+
params(
|
|
2135
|
+
timeshare:
|
|
2136
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Timeshare::OrHash
|
|
2137
|
+
).void
|
|
2138
|
+
end
|
|
2072
2139
|
attr_writer :timeshare
|
|
2073
2140
|
|
|
2074
2141
|
# Canceled services. Required if and only if `category` is
|
|
@@ -2085,8 +2152,10 @@ module Increase
|
|
|
2085
2152
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::ServiceType::OrSymbol,
|
|
2086
2153
|
guaranteed_reservation:
|
|
2087
2154
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::GuaranteedReservation::OrHash,
|
|
2088
|
-
other:
|
|
2089
|
-
|
|
2155
|
+
other:
|
|
2156
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Other::OrHash,
|
|
2157
|
+
timeshare:
|
|
2158
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Timeshare::OrHash
|
|
2090
2159
|
).returns(T.attached_class)
|
|
2091
2160
|
end
|
|
2092
2161
|
def self.new(
|
|
@@ -2124,8 +2193,10 @@ module Increase
|
|
|
2124
2193
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::ServiceType::OrSymbol,
|
|
2125
2194
|
guaranteed_reservation:
|
|
2126
2195
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::GuaranteedReservation,
|
|
2127
|
-
other:
|
|
2128
|
-
|
|
2196
|
+
other:
|
|
2197
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Other,
|
|
2198
|
+
timeshare:
|
|
2199
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Timeshare
|
|
2129
2200
|
}
|
|
2130
2201
|
)
|
|
2131
2202
|
end
|
|
@@ -2398,6 +2469,45 @@ module Increase
|
|
|
2398
2469
|
end
|
|
2399
2470
|
end
|
|
2400
2471
|
end
|
|
2472
|
+
|
|
2473
|
+
class Other < Increase::Internal::Type::BaseModel
|
|
2474
|
+
OrHash =
|
|
2475
|
+
T.type_alias do
|
|
2476
|
+
T.any(
|
|
2477
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Other,
|
|
2478
|
+
Increase::Internal::AnyHash
|
|
2479
|
+
)
|
|
2480
|
+
end
|
|
2481
|
+
|
|
2482
|
+
# Other service type explanation. Required if and only if `service_type` is
|
|
2483
|
+
# `other`.
|
|
2484
|
+
sig { returns(T.attached_class) }
|
|
2485
|
+
def self.new
|
|
2486
|
+
end
|
|
2487
|
+
|
|
2488
|
+
sig { override.returns({}) }
|
|
2489
|
+
def to_hash
|
|
2490
|
+
end
|
|
2491
|
+
end
|
|
2492
|
+
|
|
2493
|
+
class Timeshare < Increase::Internal::Type::BaseModel
|
|
2494
|
+
OrHash =
|
|
2495
|
+
T.type_alias do
|
|
2496
|
+
T.any(
|
|
2497
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Timeshare,
|
|
2498
|
+
Increase::Internal::AnyHash
|
|
2499
|
+
)
|
|
2500
|
+
end
|
|
2501
|
+
|
|
2502
|
+
# Timeshare explanation. Required if and only if `service_type` is `timeshare`.
|
|
2503
|
+
sig { returns(T.attached_class) }
|
|
2504
|
+
def self.new
|
|
2505
|
+
end
|
|
2506
|
+
|
|
2507
|
+
sig { override.returns({}) }
|
|
2508
|
+
def to_hash
|
|
2509
|
+
end
|
|
2510
|
+
end
|
|
2401
2511
|
end
|
|
2402
2512
|
|
|
2403
2513
|
class ConsumerCounterfeitMerchandise < Increase::Internal::Type::BaseModel
|
|
@@ -2543,10 +2653,21 @@ module Increase
|
|
|
2543
2653
|
attr_accessor :return_outcome
|
|
2544
2654
|
|
|
2545
2655
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2546
|
-
sig
|
|
2656
|
+
sig do
|
|
2657
|
+
returns(
|
|
2658
|
+
T.nilable(
|
|
2659
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned
|
|
2660
|
+
)
|
|
2661
|
+
)
|
|
2662
|
+
end
|
|
2547
2663
|
attr_reader :not_returned
|
|
2548
2664
|
|
|
2549
|
-
sig
|
|
2665
|
+
sig do
|
|
2666
|
+
params(
|
|
2667
|
+
not_returned:
|
|
2668
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned::OrHash
|
|
2669
|
+
).void
|
|
2670
|
+
end
|
|
2550
2671
|
attr_writer :not_returned
|
|
2551
2672
|
|
|
2552
2673
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -2596,7 +2717,8 @@ module Increase
|
|
|
2596
2717
|
received_at: Date,
|
|
2597
2718
|
return_outcome:
|
|
2598
2719
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::ReturnOutcome::OrSymbol,
|
|
2599
|
-
not_returned:
|
|
2720
|
+
not_returned:
|
|
2721
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned::OrHash,
|
|
2600
2722
|
return_attempted:
|
|
2601
2723
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::ReturnAttempted::OrHash,
|
|
2602
2724
|
returned:
|
|
@@ -2631,7 +2753,8 @@ module Increase
|
|
|
2631
2753
|
received_at: Date,
|
|
2632
2754
|
return_outcome:
|
|
2633
2755
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::ReturnOutcome::OrSymbol,
|
|
2634
|
-
not_returned:
|
|
2756
|
+
not_returned:
|
|
2757
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned,
|
|
2635
2758
|
return_attempted:
|
|
2636
2759
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::ReturnAttempted,
|
|
2637
2760
|
returned:
|
|
@@ -2725,6 +2848,25 @@ module Increase
|
|
|
2725
2848
|
end
|
|
2726
2849
|
end
|
|
2727
2850
|
|
|
2851
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
2852
|
+
OrHash =
|
|
2853
|
+
T.type_alias do
|
|
2854
|
+
T.any(
|
|
2855
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned,
|
|
2856
|
+
Increase::Internal::AnyHash
|
|
2857
|
+
)
|
|
2858
|
+
end
|
|
2859
|
+
|
|
2860
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2861
|
+
sig { returns(T.attached_class) }
|
|
2862
|
+
def self.new
|
|
2863
|
+
end
|
|
2864
|
+
|
|
2865
|
+
sig { override.returns({}) }
|
|
2866
|
+
def to_hash
|
|
2867
|
+
end
|
|
2868
|
+
end
|
|
2869
|
+
|
|
2728
2870
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
2729
2871
|
OrHash =
|
|
2730
2872
|
T.type_alias do
|
|
@@ -3039,10 +3181,21 @@ module Increase
|
|
|
3039
3181
|
attr_accessor :return_outcome
|
|
3040
3182
|
|
|
3041
3183
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
3042
|
-
sig
|
|
3184
|
+
sig do
|
|
3185
|
+
returns(
|
|
3186
|
+
T.nilable(
|
|
3187
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned
|
|
3188
|
+
)
|
|
3189
|
+
)
|
|
3190
|
+
end
|
|
3043
3191
|
attr_reader :not_returned
|
|
3044
3192
|
|
|
3045
|
-
sig
|
|
3193
|
+
sig do
|
|
3194
|
+
params(
|
|
3195
|
+
not_returned:
|
|
3196
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned::OrHash
|
|
3197
|
+
).void
|
|
3198
|
+
end
|
|
3046
3199
|
attr_writer :not_returned
|
|
3047
3200
|
|
|
3048
3201
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -3093,7 +3246,8 @@ module Increase
|
|
|
3093
3246
|
received_at: Date,
|
|
3094
3247
|
return_outcome:
|
|
3095
3248
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::ReturnOutcome::OrSymbol,
|
|
3096
|
-
not_returned:
|
|
3249
|
+
not_returned:
|
|
3250
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned::OrHash,
|
|
3097
3251
|
return_attempted:
|
|
3098
3252
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::ReturnAttempted::OrHash,
|
|
3099
3253
|
returned:
|
|
@@ -3131,7 +3285,8 @@ module Increase
|
|
|
3131
3285
|
received_at: Date,
|
|
3132
3286
|
return_outcome:
|
|
3133
3287
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::ReturnOutcome::OrSymbol,
|
|
3134
|
-
not_returned:
|
|
3288
|
+
not_returned:
|
|
3289
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned,
|
|
3135
3290
|
return_attempted:
|
|
3136
3291
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::ReturnAttempted,
|
|
3137
3292
|
returned:
|
|
@@ -3225,6 +3380,25 @@ module Increase
|
|
|
3225
3380
|
end
|
|
3226
3381
|
end
|
|
3227
3382
|
|
|
3383
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
3384
|
+
OrHash =
|
|
3385
|
+
T.type_alias do
|
|
3386
|
+
T.any(
|
|
3387
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned,
|
|
3388
|
+
Increase::Internal::AnyHash
|
|
3389
|
+
)
|
|
3390
|
+
end
|
|
3391
|
+
|
|
3392
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
3393
|
+
sig { returns(T.attached_class) }
|
|
3394
|
+
def self.new
|
|
3395
|
+
end
|
|
3396
|
+
|
|
3397
|
+
sig { override.returns({}) }
|
|
3398
|
+
def to_hash
|
|
3399
|
+
end
|
|
3400
|
+
end
|
|
3401
|
+
|
|
3228
3402
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
3229
3403
|
OrHash =
|
|
3230
3404
|
T.type_alias do
|
|
@@ -4085,10 +4259,21 @@ module Increase
|
|
|
4085
4259
|
|
|
4086
4260
|
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
4087
4261
|
# `no_cancellation`.
|
|
4088
|
-
sig
|
|
4262
|
+
sig do
|
|
4263
|
+
returns(
|
|
4264
|
+
T.nilable(
|
|
4265
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation
|
|
4266
|
+
)
|
|
4267
|
+
)
|
|
4268
|
+
end
|
|
4089
4269
|
attr_reader :no_cancellation
|
|
4090
4270
|
|
|
4091
|
-
sig
|
|
4271
|
+
sig do
|
|
4272
|
+
params(
|
|
4273
|
+
no_cancellation:
|
|
4274
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation::OrHash
|
|
4275
|
+
).void
|
|
4276
|
+
end
|
|
4092
4277
|
attr_writer :no_cancellation
|
|
4093
4278
|
|
|
4094
4279
|
# Merchandise not received. Required if and only if `category` is
|
|
@@ -4111,7 +4296,8 @@ module Increase
|
|
|
4111
4296
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::DeliveredToWrongLocation::OrHash,
|
|
4112
4297
|
merchant_cancellation:
|
|
4113
4298
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::MerchantCancellation::OrHash,
|
|
4114
|
-
no_cancellation:
|
|
4299
|
+
no_cancellation:
|
|
4300
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation::OrHash
|
|
4115
4301
|
).returns(T.attached_class)
|
|
4116
4302
|
end
|
|
4117
4303
|
def self.new(
|
|
@@ -4161,7 +4347,8 @@ module Increase
|
|
|
4161
4347
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::DeliveredToWrongLocation,
|
|
4162
4348
|
merchant_cancellation:
|
|
4163
4349
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::MerchantCancellation,
|
|
4164
|
-
no_cancellation:
|
|
4350
|
+
no_cancellation:
|
|
4351
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation
|
|
4165
4352
|
}
|
|
4166
4353
|
)
|
|
4167
4354
|
end
|
|
@@ -4351,10 +4538,21 @@ module Increase
|
|
|
4351
4538
|
attr_accessor :return_outcome
|
|
4352
4539
|
|
|
4353
4540
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
4354
|
-
sig
|
|
4541
|
+
sig do
|
|
4542
|
+
returns(
|
|
4543
|
+
T.nilable(
|
|
4544
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned
|
|
4545
|
+
)
|
|
4546
|
+
)
|
|
4547
|
+
end
|
|
4355
4548
|
attr_reader :not_returned
|
|
4356
4549
|
|
|
4357
|
-
sig
|
|
4550
|
+
sig do
|
|
4551
|
+
params(
|
|
4552
|
+
not_returned:
|
|
4553
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned::OrHash
|
|
4554
|
+
).void
|
|
4555
|
+
end
|
|
4358
4556
|
attr_writer :not_returned
|
|
4359
4557
|
|
|
4360
4558
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -4400,7 +4598,8 @@ module Increase
|
|
|
4400
4598
|
explanation: String,
|
|
4401
4599
|
return_outcome:
|
|
4402
4600
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::ReturnOutcome::OrSymbol,
|
|
4403
|
-
not_returned:
|
|
4601
|
+
not_returned:
|
|
4602
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned::OrHash,
|
|
4404
4603
|
return_attempted:
|
|
4405
4604
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::ReturnAttempted::OrHash,
|
|
4406
4605
|
returned:
|
|
@@ -4428,7 +4627,8 @@ module Increase
|
|
|
4428
4627
|
explanation: String,
|
|
4429
4628
|
return_outcome:
|
|
4430
4629
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::ReturnOutcome::OrSymbol,
|
|
4431
|
-
not_returned:
|
|
4630
|
+
not_returned:
|
|
4631
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned,
|
|
4432
4632
|
return_attempted:
|
|
4433
4633
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::ReturnAttempted,
|
|
4434
4634
|
returned:
|
|
@@ -4484,6 +4684,25 @@ module Increase
|
|
|
4484
4684
|
end
|
|
4485
4685
|
end
|
|
4486
4686
|
|
|
4687
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
4688
|
+
OrHash =
|
|
4689
|
+
T.type_alias do
|
|
4690
|
+
T.any(
|
|
4691
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned,
|
|
4692
|
+
Increase::Internal::AnyHash
|
|
4693
|
+
)
|
|
4694
|
+
end
|
|
4695
|
+
|
|
4696
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
4697
|
+
sig { returns(T.attached_class) }
|
|
4698
|
+
def self.new
|
|
4699
|
+
end
|
|
4700
|
+
|
|
4701
|
+
sig { override.returns({}) }
|
|
4702
|
+
def to_hash
|
|
4703
|
+
end
|
|
4704
|
+
end
|
|
4705
|
+
|
|
4487
4706
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
4488
4707
|
OrHash =
|
|
4489
4708
|
T.type_alias do
|
|
@@ -4606,6 +4825,46 @@ module Increase
|
|
|
4606
4825
|
def to_hash
|
|
4607
4826
|
end
|
|
4608
4827
|
end
|
|
4828
|
+
|
|
4829
|
+
class NoCancellation < Increase::Internal::Type::BaseModel
|
|
4830
|
+
OrHash =
|
|
4831
|
+
T.type_alias do
|
|
4832
|
+
T.any(
|
|
4833
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation,
|
|
4834
|
+
Increase::Internal::AnyHash
|
|
4835
|
+
)
|
|
4836
|
+
end
|
|
4837
|
+
|
|
4838
|
+
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
4839
|
+
# `no_cancellation`.
|
|
4840
|
+
sig { returns(T.attached_class) }
|
|
4841
|
+
def self.new
|
|
4842
|
+
end
|
|
4843
|
+
|
|
4844
|
+
sig { override.returns({}) }
|
|
4845
|
+
def to_hash
|
|
4846
|
+
end
|
|
4847
|
+
end
|
|
4848
|
+
end
|
|
4849
|
+
|
|
4850
|
+
class ConsumerNonReceiptOfCash < Increase::Internal::Type::BaseModel
|
|
4851
|
+
OrHash =
|
|
4852
|
+
T.type_alias do
|
|
4853
|
+
T.any(
|
|
4854
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerNonReceiptOfCash,
|
|
4855
|
+
Increase::Internal::AnyHash
|
|
4856
|
+
)
|
|
4857
|
+
end
|
|
4858
|
+
|
|
4859
|
+
# Non-receipt of cash. Required if and only if `category` is
|
|
4860
|
+
# `consumer_non_receipt_of_cash`.
|
|
4861
|
+
sig { returns(T.attached_class) }
|
|
4862
|
+
def self.new
|
|
4863
|
+
end
|
|
4864
|
+
|
|
4865
|
+
sig { override.returns({}) }
|
|
4866
|
+
def to_hash
|
|
4867
|
+
end
|
|
4609
4868
|
end
|
|
4610
4869
|
|
|
4611
4870
|
class ConsumerOriginalCreditTransactionNotAccepted < Increase::Internal::Type::BaseModel
|
|
@@ -4735,10 +4994,21 @@ module Increase
|
|
|
4735
4994
|
attr_accessor :return_outcome
|
|
4736
4995
|
|
|
4737
4996
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
4738
|
-
sig
|
|
4997
|
+
sig do
|
|
4998
|
+
returns(
|
|
4999
|
+
T.nilable(
|
|
5000
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::NotReturned
|
|
5001
|
+
)
|
|
5002
|
+
)
|
|
5003
|
+
end
|
|
4739
5004
|
attr_reader :not_returned
|
|
4740
5005
|
|
|
4741
|
-
sig
|
|
5006
|
+
sig do
|
|
5007
|
+
params(
|
|
5008
|
+
not_returned:
|
|
5009
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::NotReturned::OrHash
|
|
5010
|
+
).void
|
|
5011
|
+
end
|
|
4742
5012
|
attr_writer :not_returned
|
|
4743
5013
|
|
|
4744
5014
|
# Ongoing negotiations. Exclude if there is no evidence of ongoing negotiations.
|
|
@@ -4807,7 +5077,8 @@ module Increase
|
|
|
4807
5077
|
received_at: Date,
|
|
4808
5078
|
return_outcome:
|
|
4809
5079
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::ReturnOutcome::OrSymbol,
|
|
4810
|
-
not_returned:
|
|
5080
|
+
not_returned:
|
|
5081
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::NotReturned::OrHash,
|
|
4811
5082
|
ongoing_negotiations:
|
|
4812
5083
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::OngoingNegotiations::OrHash,
|
|
4813
5084
|
return_attempted:
|
|
@@ -4849,7 +5120,8 @@ module Increase
|
|
|
4849
5120
|
received_at: Date,
|
|
4850
5121
|
return_outcome:
|
|
4851
5122
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::ReturnOutcome::OrSymbol,
|
|
4852
|
-
not_returned:
|
|
5123
|
+
not_returned:
|
|
5124
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::NotReturned,
|
|
4853
5125
|
ongoing_negotiations:
|
|
4854
5126
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::OngoingNegotiations,
|
|
4855
5127
|
return_attempted:
|
|
@@ -4945,6 +5217,25 @@ module Increase
|
|
|
4945
5217
|
end
|
|
4946
5218
|
end
|
|
4947
5219
|
|
|
5220
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
5221
|
+
OrHash =
|
|
5222
|
+
T.type_alias do
|
|
5223
|
+
T.any(
|
|
5224
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::NotReturned,
|
|
5225
|
+
Increase::Internal::AnyHash
|
|
5226
|
+
)
|
|
5227
|
+
end
|
|
5228
|
+
|
|
5229
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
5230
|
+
sig { returns(T.attached_class) }
|
|
5231
|
+
def self.new
|
|
5232
|
+
end
|
|
5233
|
+
|
|
5234
|
+
sig { override.returns({}) }
|
|
5235
|
+
def to_hash
|
|
5236
|
+
end
|
|
5237
|
+
end
|
|
5238
|
+
|
|
4948
5239
|
class OngoingNegotiations < Increase::Internal::Type::BaseModel
|
|
4949
5240
|
OrHash =
|
|
4950
5241
|
T.type_alias do
|
|
@@ -6201,10 +6492,21 @@ module Increase
|
|
|
6201
6492
|
|
|
6202
6493
|
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
6203
6494
|
# `no_cancellation`.
|
|
6204
|
-
sig
|
|
6495
|
+
sig do
|
|
6496
|
+
returns(
|
|
6497
|
+
T.nilable(
|
|
6498
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::NoCancellation
|
|
6499
|
+
)
|
|
6500
|
+
)
|
|
6501
|
+
end
|
|
6205
6502
|
attr_reader :no_cancellation
|
|
6206
6503
|
|
|
6207
|
-
sig
|
|
6504
|
+
sig do
|
|
6505
|
+
params(
|
|
6506
|
+
no_cancellation:
|
|
6507
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::NoCancellation::OrHash
|
|
6508
|
+
).void
|
|
6509
|
+
end
|
|
6208
6510
|
attr_writer :no_cancellation
|
|
6209
6511
|
|
|
6210
6512
|
# Services not received. Required if and only if `category` is
|
|
@@ -6221,7 +6523,8 @@ module Increase
|
|
|
6221
6523
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::CardholderCancellationPriorToExpectedReceipt::OrHash,
|
|
6222
6524
|
merchant_cancellation:
|
|
6223
6525
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::MerchantCancellation::OrHash,
|
|
6224
|
-
no_cancellation:
|
|
6526
|
+
no_cancellation:
|
|
6527
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::NoCancellation::OrHash
|
|
6225
6528
|
).returns(T.attached_class)
|
|
6226
6529
|
end
|
|
6227
6530
|
def self.new(
|
|
@@ -6258,7 +6561,8 @@ module Increase
|
|
|
6258
6561
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::CardholderCancellationPriorToExpectedReceipt,
|
|
6259
6562
|
merchant_cancellation:
|
|
6260
6563
|
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::MerchantCancellation,
|
|
6261
|
-
no_cancellation:
|
|
6564
|
+
no_cancellation:
|
|
6565
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::NoCancellation
|
|
6262
6566
|
}
|
|
6263
6567
|
)
|
|
6264
6568
|
end
|
|
@@ -6414,6 +6718,26 @@ module Increase
|
|
|
6414
6718
|
def to_hash
|
|
6415
6719
|
end
|
|
6416
6720
|
end
|
|
6721
|
+
|
|
6722
|
+
class NoCancellation < Increase::Internal::Type::BaseModel
|
|
6723
|
+
OrHash =
|
|
6724
|
+
T.type_alias do
|
|
6725
|
+
T.any(
|
|
6726
|
+
Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::NoCancellation,
|
|
6727
|
+
Increase::Internal::AnyHash
|
|
6728
|
+
)
|
|
6729
|
+
end
|
|
6730
|
+
|
|
6731
|
+
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
6732
|
+
# `no_cancellation`.
|
|
6733
|
+
sig { returns(T.attached_class) }
|
|
6734
|
+
def self.new
|
|
6735
|
+
end
|
|
6736
|
+
|
|
6737
|
+
sig { override.returns({}) }
|
|
6738
|
+
def to_hash
|
|
6739
|
+
end
|
|
6740
|
+
end
|
|
6417
6741
|
end
|
|
6418
6742
|
|
|
6419
6743
|
class Fraud < Increase::Internal::Type::BaseModel
|