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
|
@@ -176,8 +176,9 @@ module Increase
|
|
|
176
176
|
# Non-receipt of cash. Required if and only if `category` is
|
|
177
177
|
# `consumer_non_receipt_of_cash`.
|
|
178
178
|
#
|
|
179
|
-
# @return [
|
|
180
|
-
optional :consumer_non_receipt_of_cash,
|
|
179
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerNonReceiptOfCash, nil]
|
|
180
|
+
optional :consumer_non_receipt_of_cash,
|
|
181
|
+
-> { Increase::CardDisputeCreateParams::Visa::ConsumerNonReceiptOfCash }
|
|
181
182
|
|
|
182
183
|
# @!attribute consumer_original_credit_transaction_not_accepted
|
|
183
184
|
# Original Credit Transaction (OCT) not accepted. Required if and only if
|
|
@@ -269,7 +270,7 @@ module Increase
|
|
|
269
270
|
#
|
|
270
271
|
# @param consumer_merchandise_not_received [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived] Merchandise not received. Required if and only if `category` is `consumer_mercha
|
|
271
272
|
#
|
|
272
|
-
# @param consumer_non_receipt_of_cash [
|
|
273
|
+
# @param consumer_non_receipt_of_cash [Increase::Models::CardDisputeCreateParams::Visa::ConsumerNonReceiptOfCash] Non-receipt of cash. Required if and only if `category` is `consumer_non_receipt
|
|
273
274
|
#
|
|
274
275
|
# @param consumer_original_credit_transaction_not_accepted [Increase::Models::CardDisputeCreateParams::Visa::ConsumerOriginalCreditTransactionNotAccepted] Original Credit Transaction (OCT) not accepted. Required if and only if `categor
|
|
275
276
|
#
|
|
@@ -426,8 +427,9 @@ module Increase
|
|
|
426
427
|
# @!attribute not_returned
|
|
427
428
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
428
429
|
#
|
|
429
|
-
# @return [
|
|
430
|
-
optional :not_returned,
|
|
430
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledMerchandise::NotReturned, nil]
|
|
431
|
+
optional :not_returned,
|
|
432
|
+
-> { Increase::CardDisputeCreateParams::Visa::ConsumerCanceledMerchandise::NotReturned }
|
|
431
433
|
|
|
432
434
|
# @!attribute return_attempted
|
|
433
435
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -461,7 +463,7 @@ module Increase
|
|
|
461
463
|
#
|
|
462
464
|
# @param cardholder_cancellation [Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledMerchandise::CardholderCancellation] Cardholder cancellation.
|
|
463
465
|
#
|
|
464
|
-
# @param not_returned [
|
|
466
|
+
# @param not_returned [Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledMerchandise::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
465
467
|
#
|
|
466
468
|
# @param return_attempted [Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledMerchandise::ReturnAttempted] Return attempted. Required if and only if `return_outcome` is `return_attempted`
|
|
467
469
|
#
|
|
@@ -574,6 +576,12 @@ module Increase
|
|
|
574
576
|
end
|
|
575
577
|
end
|
|
576
578
|
|
|
579
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledMerchandise#not_returned
|
|
580
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
581
|
+
# @!method initialize
|
|
582
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
583
|
+
end
|
|
584
|
+
|
|
577
585
|
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledMerchandise#return_attempted
|
|
578
586
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
579
587
|
# @!attribute attempt_explanation
|
|
@@ -873,14 +881,14 @@ module Increase
|
|
|
873
881
|
# Other service type explanation. Required if and only if `service_type` is
|
|
874
882
|
# `other`.
|
|
875
883
|
#
|
|
876
|
-
# @return [
|
|
877
|
-
optional :other, Increase::
|
|
884
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledServices::Other, nil]
|
|
885
|
+
optional :other, -> { Increase::CardDisputeCreateParams::Visa::ConsumerCanceledServices::Other }
|
|
878
886
|
|
|
879
887
|
# @!attribute timeshare
|
|
880
888
|
# Timeshare explanation. Required if and only if `service_type` is `timeshare`.
|
|
881
889
|
#
|
|
882
|
-
# @return [
|
|
883
|
-
optional :timeshare, Increase::
|
|
890
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledServices::Timeshare, nil]
|
|
891
|
+
optional :timeshare, -> { Increase::CardDisputeCreateParams::Visa::ConsumerCanceledServices::Timeshare }
|
|
884
892
|
|
|
885
893
|
# @!method initialize(cardholder_cancellation:, contracted_at:, merchant_resolution_attempted:, purchase_explanation:, service_type:, guaranteed_reservation: nil, other: nil, timeshare: nil)
|
|
886
894
|
# Some parameter documentations has been truncated, see
|
|
@@ -902,9 +910,9 @@ module Increase
|
|
|
902
910
|
#
|
|
903
911
|
# @param guaranteed_reservation [Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledServices::GuaranteedReservation] Guaranteed reservation explanation. Required if and only if `service_type` is `g
|
|
904
912
|
#
|
|
905
|
-
# @param other [
|
|
913
|
+
# @param other [Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledServices::Other] Other service type explanation. Required if and only if `service_type` is `other
|
|
906
914
|
#
|
|
907
|
-
# @param timeshare [
|
|
915
|
+
# @param timeshare [Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledServices::Timeshare] Timeshare explanation. Required if and only if `service_type` is `timeshare`.
|
|
908
916
|
|
|
909
917
|
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledServices#cardholder_cancellation
|
|
910
918
|
class CardholderCancellation < Increase::Internal::Type::BaseModel
|
|
@@ -1023,6 +1031,19 @@ module Increase
|
|
|
1023
1031
|
# @return [Array<Symbol>]
|
|
1024
1032
|
end
|
|
1025
1033
|
end
|
|
1034
|
+
|
|
1035
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledServices#other
|
|
1036
|
+
class Other < Increase::Internal::Type::BaseModel
|
|
1037
|
+
# @!method initialize
|
|
1038
|
+
# Other service type explanation. Required if and only if `service_type` is
|
|
1039
|
+
# `other`.
|
|
1040
|
+
end
|
|
1041
|
+
|
|
1042
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerCanceledServices#timeshare
|
|
1043
|
+
class Timeshare < Increase::Internal::Type::BaseModel
|
|
1044
|
+
# @!method initialize
|
|
1045
|
+
# Timeshare explanation. Required if and only if `service_type` is `timeshare`.
|
|
1046
|
+
end
|
|
1026
1047
|
end
|
|
1027
1048
|
|
|
1028
1049
|
# @see Increase::Models::CardDisputeCreateParams::Visa#consumer_counterfeit_merchandise
|
|
@@ -1118,8 +1139,9 @@ module Increase
|
|
|
1118
1139
|
# @!attribute not_returned
|
|
1119
1140
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1120
1141
|
#
|
|
1121
|
-
# @return [
|
|
1122
|
-
optional :not_returned,
|
|
1142
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerDamagedOrDefectiveMerchandise::NotReturned, nil]
|
|
1143
|
+
optional :not_returned,
|
|
1144
|
+
-> { Increase::CardDisputeCreateParams::Visa::ConsumerDamagedOrDefectiveMerchandise::NotReturned }
|
|
1123
1145
|
|
|
1124
1146
|
# @!attribute return_attempted
|
|
1125
1147
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -1152,7 +1174,7 @@ module Increase
|
|
|
1152
1174
|
#
|
|
1153
1175
|
# @param return_outcome [Symbol, Increase::Models::CardDisputeCreateParams::Visa::ConsumerDamagedOrDefectiveMerchandise::ReturnOutcome] Return outcome.
|
|
1154
1176
|
#
|
|
1155
|
-
# @param not_returned [
|
|
1177
|
+
# @param not_returned [Increase::Models::CardDisputeCreateParams::Visa::ConsumerDamagedOrDefectiveMerchandise::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1156
1178
|
#
|
|
1157
1179
|
# @param return_attempted [Increase::Models::CardDisputeCreateParams::Visa::ConsumerDamagedOrDefectiveMerchandise::ReturnAttempted] Return attempted. Required if and only if `return_outcome` is `return_attempted`
|
|
1158
1180
|
#
|
|
@@ -1193,6 +1215,12 @@ module Increase
|
|
|
1193
1215
|
# @return [Array<Symbol>]
|
|
1194
1216
|
end
|
|
1195
1217
|
|
|
1218
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerDamagedOrDefectiveMerchandise#not_returned
|
|
1219
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
1220
|
+
# @!method initialize
|
|
1221
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1222
|
+
end
|
|
1223
|
+
|
|
1196
1224
|
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerDamagedOrDefectiveMerchandise#return_attempted
|
|
1197
1225
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
1198
1226
|
# @!attribute attempt_explanation
|
|
@@ -1371,8 +1399,9 @@ module Increase
|
|
|
1371
1399
|
# @!attribute not_returned
|
|
1372
1400
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1373
1401
|
#
|
|
1374
|
-
# @return [
|
|
1375
|
-
optional :not_returned,
|
|
1402
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseMisrepresentation::NotReturned, nil]
|
|
1403
|
+
optional :not_returned,
|
|
1404
|
+
-> { Increase::CardDisputeCreateParams::Visa::ConsumerMerchandiseMisrepresentation::NotReturned }
|
|
1376
1405
|
|
|
1377
1406
|
# @!attribute return_attempted
|
|
1378
1407
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -1407,7 +1436,7 @@ module Increase
|
|
|
1407
1436
|
#
|
|
1408
1437
|
# @param return_outcome [Symbol, Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseMisrepresentation::ReturnOutcome] Return outcome.
|
|
1409
1438
|
#
|
|
1410
|
-
# @param not_returned [
|
|
1439
|
+
# @param not_returned [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseMisrepresentation::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1411
1440
|
#
|
|
1412
1441
|
# @param return_attempted [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseMisrepresentation::ReturnAttempted] Return attempted. Required if and only if `return_outcome` is `return_attempted`
|
|
1413
1442
|
#
|
|
@@ -1448,6 +1477,12 @@ module Increase
|
|
|
1448
1477
|
# @return [Array<Symbol>]
|
|
1449
1478
|
end
|
|
1450
1479
|
|
|
1480
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseMisrepresentation#not_returned
|
|
1481
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
1482
|
+
# @!method initialize
|
|
1483
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1484
|
+
end
|
|
1485
|
+
|
|
1451
1486
|
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseMisrepresentation#return_attempted
|
|
1452
1487
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
1453
1488
|
# @!attribute attempt_explanation
|
|
@@ -1886,8 +1921,9 @@ module Increase
|
|
|
1886
1921
|
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
1887
1922
|
# `no_cancellation`.
|
|
1888
1923
|
#
|
|
1889
|
-
# @return [
|
|
1890
|
-
optional :no_cancellation,
|
|
1924
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::NoCancellation, nil]
|
|
1925
|
+
optional :no_cancellation,
|
|
1926
|
+
-> { Increase::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::NoCancellation }
|
|
1891
1927
|
|
|
1892
1928
|
# @!method initialize(cancellation_outcome:, delivery_issue:, last_expected_receipt_at:, merchant_resolution_attempted:, purchase_info_and_explanation:, cardholder_cancellation_prior_to_expected_receipt: nil, delayed: nil, delivered_to_wrong_location: nil, merchant_cancellation: nil, no_cancellation: nil)
|
|
1893
1929
|
# Some parameter documentations has been truncated, see
|
|
@@ -1915,7 +1951,7 @@ module Increase
|
|
|
1915
1951
|
#
|
|
1916
1952
|
# @param merchant_cancellation [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::MerchantCancellation] Merchant cancellation. Required if and only if `cancellation_outcome` is `mercha
|
|
1917
1953
|
#
|
|
1918
|
-
# @param no_cancellation [
|
|
1954
|
+
# @param no_cancellation [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::NoCancellation] No cancellation. Required if and only if `cancellation_outcome` is `no_cancellat
|
|
1919
1955
|
|
|
1920
1956
|
# Cancellation outcome.
|
|
1921
1957
|
#
|
|
@@ -2009,8 +2045,9 @@ module Increase
|
|
|
2009
2045
|
# @!attribute not_returned
|
|
2010
2046
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2011
2047
|
#
|
|
2012
|
-
# @return [
|
|
2013
|
-
optional :not_returned,
|
|
2048
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::Delayed::NotReturned, nil]
|
|
2049
|
+
optional :not_returned,
|
|
2050
|
+
-> { Increase::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::Delayed::NotReturned }
|
|
2014
2051
|
|
|
2015
2052
|
# @!attribute return_attempted
|
|
2016
2053
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -2038,7 +2075,7 @@ module Increase
|
|
|
2038
2075
|
#
|
|
2039
2076
|
# @param return_outcome [Symbol, Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::Delayed::ReturnOutcome] Return outcome.
|
|
2040
2077
|
#
|
|
2041
|
-
# @param not_returned [
|
|
2078
|
+
# @param not_returned [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::Delayed::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2042
2079
|
#
|
|
2043
2080
|
# @param return_attempted [Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::Delayed::ReturnAttempted] Return attempted. Required if and only if `return_outcome` is `return_attempted`
|
|
2044
2081
|
#
|
|
@@ -2063,6 +2100,12 @@ module Increase
|
|
|
2063
2100
|
# @return [Array<Symbol>]
|
|
2064
2101
|
end
|
|
2065
2102
|
|
|
2103
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::Delayed#not_returned
|
|
2104
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
2105
|
+
# @!method initialize
|
|
2106
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2107
|
+
end
|
|
2108
|
+
|
|
2066
2109
|
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived::Delayed#return_attempted
|
|
2067
2110
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
2068
2111
|
# @!attribute attempted_at
|
|
@@ -2130,6 +2173,20 @@ module Increase
|
|
|
2130
2173
|
#
|
|
2131
2174
|
# @param canceled_at [Date] Canceled at.
|
|
2132
2175
|
end
|
|
2176
|
+
|
|
2177
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerMerchandiseNotReceived#no_cancellation
|
|
2178
|
+
class NoCancellation < Increase::Internal::Type::BaseModel
|
|
2179
|
+
# @!method initialize
|
|
2180
|
+
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
2181
|
+
# `no_cancellation`.
|
|
2182
|
+
end
|
|
2183
|
+
end
|
|
2184
|
+
|
|
2185
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa#consumer_non_receipt_of_cash
|
|
2186
|
+
class ConsumerNonReceiptOfCash < Increase::Internal::Type::BaseModel
|
|
2187
|
+
# @!method initialize
|
|
2188
|
+
# Non-receipt of cash. Required if and only if `category` is
|
|
2189
|
+
# `consumer_non_receipt_of_cash`.
|
|
2133
2190
|
end
|
|
2134
2191
|
|
|
2135
2192
|
# @see Increase::Models::CardDisputeCreateParams::Visa#consumer_original_credit_transaction_not_accepted
|
|
@@ -2209,8 +2266,9 @@ module Increase
|
|
|
2209
2266
|
# @!attribute not_returned
|
|
2210
2267
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2211
2268
|
#
|
|
2212
|
-
# @return [
|
|
2213
|
-
optional :not_returned,
|
|
2269
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerQualityMerchandise::NotReturned, nil]
|
|
2270
|
+
optional :not_returned,
|
|
2271
|
+
-> { Increase::CardDisputeCreateParams::Visa::ConsumerQualityMerchandise::NotReturned }
|
|
2214
2272
|
|
|
2215
2273
|
# @!attribute ongoing_negotiations
|
|
2216
2274
|
# Ongoing negotiations. Exclude if there is no evidence of ongoing negotiations.
|
|
@@ -2251,7 +2309,7 @@ module Increase
|
|
|
2251
2309
|
#
|
|
2252
2310
|
# @param return_outcome [Symbol, Increase::Models::CardDisputeCreateParams::Visa::ConsumerQualityMerchandise::ReturnOutcome] Return outcome.
|
|
2253
2311
|
#
|
|
2254
|
-
# @param not_returned [
|
|
2312
|
+
# @param not_returned [Increase::Models::CardDisputeCreateParams::Visa::ConsumerQualityMerchandise::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2255
2313
|
#
|
|
2256
2314
|
# @param ongoing_negotiations [Increase::Models::CardDisputeCreateParams::Visa::ConsumerQualityMerchandise::OngoingNegotiations] Ongoing negotiations. Exclude if there is no evidence of ongoing negotiations.
|
|
2257
2315
|
#
|
|
@@ -2294,6 +2352,12 @@ module Increase
|
|
|
2294
2352
|
# @return [Array<Symbol>]
|
|
2295
2353
|
end
|
|
2296
2354
|
|
|
2355
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerQualityMerchandise#not_returned
|
|
2356
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
2357
|
+
# @!method initialize
|
|
2358
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2359
|
+
end
|
|
2360
|
+
|
|
2297
2361
|
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerQualityMerchandise#ongoing_negotiations
|
|
2298
2362
|
class OngoingNegotiations < Increase::Internal::Type::BaseModel
|
|
2299
2363
|
# @!attribute explanation
|
|
@@ -2932,8 +2996,9 @@ module Increase
|
|
|
2932
2996
|
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
2933
2997
|
# `no_cancellation`.
|
|
2934
2998
|
#
|
|
2935
|
-
# @return [
|
|
2936
|
-
optional :no_cancellation,
|
|
2999
|
+
# @return [Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotReceived::NoCancellation, nil]
|
|
3000
|
+
optional :no_cancellation,
|
|
3001
|
+
-> { Increase::CardDisputeCreateParams::Visa::ConsumerServicesNotReceived::NoCancellation }
|
|
2937
3002
|
|
|
2938
3003
|
# @!method initialize(cancellation_outcome:, last_expected_receipt_at:, merchant_resolution_attempted:, purchase_info_and_explanation:, cardholder_cancellation_prior_to_expected_receipt: nil, merchant_cancellation: nil, no_cancellation: nil)
|
|
2939
3004
|
# Some parameter documentations has been truncated, see
|
|
@@ -2955,7 +3020,7 @@ module Increase
|
|
|
2955
3020
|
#
|
|
2956
3021
|
# @param merchant_cancellation [Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotReceived::MerchantCancellation] Merchant cancellation. Required if and only if `cancellation_outcome` is `mercha
|
|
2957
3022
|
#
|
|
2958
|
-
# @param no_cancellation [
|
|
3023
|
+
# @param no_cancellation [Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotReceived::NoCancellation] No cancellation. Required if and only if `cancellation_outcome` is `no_cancellat
|
|
2959
3024
|
|
|
2960
3025
|
# Cancellation outcome.
|
|
2961
3026
|
#
|
|
@@ -3029,6 +3094,13 @@ module Increase
|
|
|
3029
3094
|
#
|
|
3030
3095
|
# @param canceled_at [Date] Canceled at.
|
|
3031
3096
|
end
|
|
3097
|
+
|
|
3098
|
+
# @see Increase::Models::CardDisputeCreateParams::Visa::ConsumerServicesNotReceived#no_cancellation
|
|
3099
|
+
class NoCancellation < Increase::Internal::Type::BaseModel
|
|
3100
|
+
# @!method initialize
|
|
3101
|
+
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
3102
|
+
# `no_cancellation`.
|
|
3103
|
+
end
|
|
3032
3104
|
end
|
|
3033
3105
|
|
|
3034
3106
|
# @see Increase::Models::CardDisputeCreateParams::Visa#fraud
|
|
@@ -238,8 +238,9 @@ module Increase
|
|
|
238
238
|
# Non-receipt of cash. Required if and only if `category` is
|
|
239
239
|
# `consumer_non_receipt_of_cash`.
|
|
240
240
|
#
|
|
241
|
-
# @return [
|
|
242
|
-
optional :consumer_non_receipt_of_cash,
|
|
241
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerNonReceiptOfCash, nil]
|
|
242
|
+
optional :consumer_non_receipt_of_cash,
|
|
243
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerNonReceiptOfCash }
|
|
243
244
|
|
|
244
245
|
# @!attribute consumer_original_credit_transaction_not_accepted
|
|
245
246
|
# Original Credit Transaction (OCT) not accepted. Required if and only if
|
|
@@ -333,7 +334,7 @@ module Increase
|
|
|
333
334
|
#
|
|
334
335
|
# @param consumer_merchandise_not_received [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived] Merchandise not received. Required if and only if `category` is `consumer_mercha
|
|
335
336
|
#
|
|
336
|
-
# @param consumer_non_receipt_of_cash [
|
|
337
|
+
# @param consumer_non_receipt_of_cash [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerNonReceiptOfCash] Non-receipt of cash. Required if and only if `category` is `consumer_non_receipt
|
|
337
338
|
#
|
|
338
339
|
# @param consumer_original_credit_transaction_not_accepted [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerOriginalCreditTransactionNotAccepted] Original Credit Transaction (OCT) not accepted. Required if and only if `categor
|
|
339
340
|
#
|
|
@@ -490,8 +491,9 @@ module Increase
|
|
|
490
491
|
# @!attribute not_returned
|
|
491
492
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
492
493
|
#
|
|
493
|
-
# @return [
|
|
494
|
-
optional :not_returned,
|
|
494
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::NotReturned, nil]
|
|
495
|
+
optional :not_returned,
|
|
496
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::NotReturned }
|
|
495
497
|
|
|
496
498
|
# @!attribute return_attempted
|
|
497
499
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -526,7 +528,7 @@ module Increase
|
|
|
526
528
|
#
|
|
527
529
|
# @param cardholder_cancellation [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::CardholderCancellation] Cardholder cancellation.
|
|
528
530
|
#
|
|
529
|
-
# @param not_returned [
|
|
531
|
+
# @param not_returned [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
530
532
|
#
|
|
531
533
|
# @param return_attempted [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise::ReturnAttempted] Return attempted. Required if and only if `return_outcome` is `return_attempted`
|
|
532
534
|
#
|
|
@@ -639,6 +641,12 @@ module Increase
|
|
|
639
641
|
end
|
|
640
642
|
end
|
|
641
643
|
|
|
644
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise#not_returned
|
|
645
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
646
|
+
# @!method initialize
|
|
647
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
648
|
+
end
|
|
649
|
+
|
|
642
650
|
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledMerchandise#return_attempted
|
|
643
651
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
644
652
|
# @!attribute attempt_explanation
|
|
@@ -938,14 +946,16 @@ module Increase
|
|
|
938
946
|
# Other service type explanation. Required if and only if `service_type` is
|
|
939
947
|
# `other`.
|
|
940
948
|
#
|
|
941
|
-
# @return [
|
|
942
|
-
optional :other,
|
|
949
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Other, nil]
|
|
950
|
+
optional :other,
|
|
951
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Other }
|
|
943
952
|
|
|
944
953
|
# @!attribute timeshare
|
|
945
954
|
# Timeshare explanation. Required if and only if `service_type` is `timeshare`.
|
|
946
955
|
#
|
|
947
|
-
# @return [
|
|
948
|
-
optional :timeshare,
|
|
956
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Timeshare, nil]
|
|
957
|
+
optional :timeshare,
|
|
958
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Timeshare }
|
|
949
959
|
|
|
950
960
|
# @!method initialize(cardholder_cancellation:, contracted_at:, merchant_resolution_attempted:, purchase_explanation:, service_type:, guaranteed_reservation: nil, other: nil, timeshare: nil)
|
|
951
961
|
# Some parameter documentations has been truncated, see
|
|
@@ -967,9 +977,9 @@ module Increase
|
|
|
967
977
|
#
|
|
968
978
|
# @param guaranteed_reservation [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::GuaranteedReservation] Guaranteed reservation explanation. Required if and only if `service_type` is `g
|
|
969
979
|
#
|
|
970
|
-
# @param other [
|
|
980
|
+
# @param other [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Other] Other service type explanation. Required if and only if `service_type` is `other
|
|
971
981
|
#
|
|
972
|
-
# @param timeshare [
|
|
982
|
+
# @param timeshare [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices::Timeshare] Timeshare explanation. Required if and only if `service_type` is `timeshare`.
|
|
973
983
|
|
|
974
984
|
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices#cardholder_cancellation
|
|
975
985
|
class CardholderCancellation < Increase::Internal::Type::BaseModel
|
|
@@ -1088,6 +1098,19 @@ module Increase
|
|
|
1088
1098
|
# @return [Array<Symbol>]
|
|
1089
1099
|
end
|
|
1090
1100
|
end
|
|
1101
|
+
|
|
1102
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices#other
|
|
1103
|
+
class Other < Increase::Internal::Type::BaseModel
|
|
1104
|
+
# @!method initialize
|
|
1105
|
+
# Other service type explanation. Required if and only if `service_type` is
|
|
1106
|
+
# `other`.
|
|
1107
|
+
end
|
|
1108
|
+
|
|
1109
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerCanceledServices#timeshare
|
|
1110
|
+
class Timeshare < Increase::Internal::Type::BaseModel
|
|
1111
|
+
# @!method initialize
|
|
1112
|
+
# Timeshare explanation. Required if and only if `service_type` is `timeshare`.
|
|
1113
|
+
end
|
|
1091
1114
|
end
|
|
1092
1115
|
|
|
1093
1116
|
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback#consumer_counterfeit_merchandise
|
|
@@ -1183,8 +1206,9 @@ module Increase
|
|
|
1183
1206
|
# @!attribute not_returned
|
|
1184
1207
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1185
1208
|
#
|
|
1186
|
-
# @return [
|
|
1187
|
-
optional :not_returned,
|
|
1209
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned, nil]
|
|
1210
|
+
optional :not_returned,
|
|
1211
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned }
|
|
1188
1212
|
|
|
1189
1213
|
# @!attribute return_attempted
|
|
1190
1214
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -1217,7 +1241,7 @@ module Increase
|
|
|
1217
1241
|
#
|
|
1218
1242
|
# @param return_outcome [Symbol, Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::ReturnOutcome] Return outcome.
|
|
1219
1243
|
#
|
|
1220
|
-
# @param not_returned [
|
|
1244
|
+
# @param not_returned [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1221
1245
|
#
|
|
1222
1246
|
# @param return_attempted [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise::ReturnAttempted] Return attempted. Required if and only if `return_outcome` is `return_attempted`
|
|
1223
1247
|
#
|
|
@@ -1258,6 +1282,12 @@ module Increase
|
|
|
1258
1282
|
# @return [Array<Symbol>]
|
|
1259
1283
|
end
|
|
1260
1284
|
|
|
1285
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise#not_returned
|
|
1286
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
1287
|
+
# @!method initialize
|
|
1288
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1289
|
+
end
|
|
1290
|
+
|
|
1261
1291
|
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerDamagedOrDefectiveMerchandise#return_attempted
|
|
1262
1292
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
1263
1293
|
# @!attribute attempt_explanation
|
|
@@ -1436,8 +1466,9 @@ module Increase
|
|
|
1436
1466
|
# @!attribute not_returned
|
|
1437
1467
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1438
1468
|
#
|
|
1439
|
-
# @return [
|
|
1440
|
-
optional :not_returned,
|
|
1469
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned, nil]
|
|
1470
|
+
optional :not_returned,
|
|
1471
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned }
|
|
1441
1472
|
|
|
1442
1473
|
# @!attribute return_attempted
|
|
1443
1474
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -1472,7 +1503,7 @@ module Increase
|
|
|
1472
1503
|
#
|
|
1473
1504
|
# @param return_outcome [Symbol, Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::ReturnOutcome] Return outcome.
|
|
1474
1505
|
#
|
|
1475
|
-
# @param not_returned [
|
|
1506
|
+
# @param not_returned [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1476
1507
|
#
|
|
1477
1508
|
# @param return_attempted [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation::ReturnAttempted] Return attempted. Required if and only if `return_outcome` is `return_attempted`
|
|
1478
1509
|
#
|
|
@@ -1513,6 +1544,12 @@ module Increase
|
|
|
1513
1544
|
# @return [Array<Symbol>]
|
|
1514
1545
|
end
|
|
1515
1546
|
|
|
1547
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation#not_returned
|
|
1548
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
1549
|
+
# @!method initialize
|
|
1550
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
1551
|
+
end
|
|
1552
|
+
|
|
1516
1553
|
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseMisrepresentation#return_attempted
|
|
1517
1554
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
1518
1555
|
# @!attribute attempt_explanation
|
|
@@ -1952,8 +1989,9 @@ module Increase
|
|
|
1952
1989
|
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
1953
1990
|
# `no_cancellation`.
|
|
1954
1991
|
#
|
|
1955
|
-
# @return [
|
|
1956
|
-
optional :no_cancellation,
|
|
1992
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation, nil]
|
|
1993
|
+
optional :no_cancellation,
|
|
1994
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation }
|
|
1957
1995
|
|
|
1958
1996
|
# @!method initialize(cancellation_outcome:, delivery_issue:, last_expected_receipt_at:, merchant_resolution_attempted:, purchase_info_and_explanation:, cardholder_cancellation_prior_to_expected_receipt: nil, delayed: nil, delivered_to_wrong_location: nil, merchant_cancellation: nil, no_cancellation: nil)
|
|
1959
1997
|
# Some parameter documentations has been truncated, see
|
|
@@ -1981,7 +2019,7 @@ module Increase
|
|
|
1981
2019
|
#
|
|
1982
2020
|
# @param merchant_cancellation [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::MerchantCancellation] Merchant cancellation. Required if and only if `cancellation_outcome` is `mercha
|
|
1983
2021
|
#
|
|
1984
|
-
# @param no_cancellation [
|
|
2022
|
+
# @param no_cancellation [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::NoCancellation] No cancellation. Required if and only if `cancellation_outcome` is `no_cancellat
|
|
1985
2023
|
|
|
1986
2024
|
# Cancellation outcome.
|
|
1987
2025
|
#
|
|
@@ -2075,8 +2113,9 @@ module Increase
|
|
|
2075
2113
|
# @!attribute not_returned
|
|
2076
2114
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2077
2115
|
#
|
|
2078
|
-
# @return [
|
|
2079
|
-
optional :not_returned,
|
|
2116
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned, nil]
|
|
2117
|
+
optional :not_returned,
|
|
2118
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned }
|
|
2080
2119
|
|
|
2081
2120
|
# @!attribute return_attempted
|
|
2082
2121
|
# Return attempted. Required if and only if `return_outcome` is
|
|
@@ -2104,7 +2143,7 @@ module Increase
|
|
|
2104
2143
|
#
|
|
2105
2144
|
# @param return_outcome [Symbol, Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::ReturnOutcome] Return outcome.
|
|
2106
2145
|
#
|
|
2107
|
-
# @param not_returned [
|
|
2146
|
+
# @param not_returned [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2108
2147
|
#
|
|
2109
2148
|
# @param return_attempted [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed::ReturnAttempted] Return attempted. Required if and only if `return_outcome` is `return_attempted`
|
|
2110
2149
|
#
|
|
@@ -2129,6 +2168,12 @@ module Increase
|
|
|
2129
2168
|
# @return [Array<Symbol>]
|
|
2130
2169
|
end
|
|
2131
2170
|
|
|
2171
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed#not_returned
|
|
2172
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
2173
|
+
# @!method initialize
|
|
2174
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2175
|
+
end
|
|
2176
|
+
|
|
2132
2177
|
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived::Delayed#return_attempted
|
|
2133
2178
|
class ReturnAttempted < Increase::Internal::Type::BaseModel
|
|
2134
2179
|
# @!attribute attempted_at
|
|
@@ -2196,6 +2241,20 @@ module Increase
|
|
|
2196
2241
|
#
|
|
2197
2242
|
# @param canceled_at [Date] Canceled at.
|
|
2198
2243
|
end
|
|
2244
|
+
|
|
2245
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerMerchandiseNotReceived#no_cancellation
|
|
2246
|
+
class NoCancellation < Increase::Internal::Type::BaseModel
|
|
2247
|
+
# @!method initialize
|
|
2248
|
+
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
2249
|
+
# `no_cancellation`.
|
|
2250
|
+
end
|
|
2251
|
+
end
|
|
2252
|
+
|
|
2253
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback#consumer_non_receipt_of_cash
|
|
2254
|
+
class ConsumerNonReceiptOfCash < Increase::Internal::Type::BaseModel
|
|
2255
|
+
# @!method initialize
|
|
2256
|
+
# Non-receipt of cash. Required if and only if `category` is
|
|
2257
|
+
# `consumer_non_receipt_of_cash`.
|
|
2199
2258
|
end
|
|
2200
2259
|
|
|
2201
2260
|
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback#consumer_original_credit_transaction_not_accepted
|
|
@@ -2275,8 +2334,9 @@ module Increase
|
|
|
2275
2334
|
# @!attribute not_returned
|
|
2276
2335
|
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2277
2336
|
#
|
|
2278
|
-
# @return [
|
|
2279
|
-
optional :not_returned,
|
|
2337
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::NotReturned, nil]
|
|
2338
|
+
optional :not_returned,
|
|
2339
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::NotReturned }
|
|
2280
2340
|
|
|
2281
2341
|
# @!attribute ongoing_negotiations
|
|
2282
2342
|
# Ongoing negotiations. Exclude if there is no evidence of ongoing negotiations.
|
|
@@ -2318,7 +2378,7 @@ module Increase
|
|
|
2318
2378
|
#
|
|
2319
2379
|
# @param return_outcome [Symbol, Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::ReturnOutcome] Return outcome.
|
|
2320
2380
|
#
|
|
2321
|
-
# @param not_returned [
|
|
2381
|
+
# @param not_returned [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::NotReturned] Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2322
2382
|
#
|
|
2323
2383
|
# @param ongoing_negotiations [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise::OngoingNegotiations] Ongoing negotiations. Exclude if there is no evidence of ongoing negotiations.
|
|
2324
2384
|
#
|
|
@@ -2361,6 +2421,12 @@ module Increase
|
|
|
2361
2421
|
# @return [Array<Symbol>]
|
|
2362
2422
|
end
|
|
2363
2423
|
|
|
2424
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise#not_returned
|
|
2425
|
+
class NotReturned < Increase::Internal::Type::BaseModel
|
|
2426
|
+
# @!method initialize
|
|
2427
|
+
# Not returned. Required if and only if `return_outcome` is `not_returned`.
|
|
2428
|
+
end
|
|
2429
|
+
|
|
2364
2430
|
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerQualityMerchandise#ongoing_negotiations
|
|
2365
2431
|
class OngoingNegotiations < Increase::Internal::Type::BaseModel
|
|
2366
2432
|
# @!attribute explanation
|
|
@@ -2999,8 +3065,9 @@ module Increase
|
|
|
2999
3065
|
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
3000
3066
|
# `no_cancellation`.
|
|
3001
3067
|
#
|
|
3002
|
-
# @return [
|
|
3003
|
-
optional :no_cancellation,
|
|
3068
|
+
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::NoCancellation, nil]
|
|
3069
|
+
optional :no_cancellation,
|
|
3070
|
+
-> { Increase::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::NoCancellation }
|
|
3004
3071
|
|
|
3005
3072
|
# @!method initialize(cancellation_outcome:, last_expected_receipt_at:, merchant_resolution_attempted:, purchase_info_and_explanation:, cardholder_cancellation_prior_to_expected_receipt: nil, merchant_cancellation: nil, no_cancellation: nil)
|
|
3006
3073
|
# Some parameter documentations has been truncated, see
|
|
@@ -3022,7 +3089,7 @@ module Increase
|
|
|
3022
3089
|
#
|
|
3023
3090
|
# @param merchant_cancellation [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::MerchantCancellation] Merchant cancellation. Required if and only if `cancellation_outcome` is `mercha
|
|
3024
3091
|
#
|
|
3025
|
-
# @param no_cancellation [
|
|
3092
|
+
# @param no_cancellation [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived::NoCancellation] No cancellation. Required if and only if `cancellation_outcome` is `no_cancellat
|
|
3026
3093
|
|
|
3027
3094
|
# Cancellation outcome.
|
|
3028
3095
|
#
|
|
@@ -3096,6 +3163,13 @@ module Increase
|
|
|
3096
3163
|
#
|
|
3097
3164
|
# @param canceled_at [Date] Canceled at.
|
|
3098
3165
|
end
|
|
3166
|
+
|
|
3167
|
+
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback::ConsumerServicesNotReceived#no_cancellation
|
|
3168
|
+
class NoCancellation < Increase::Internal::Type::BaseModel
|
|
3169
|
+
# @!method initialize
|
|
3170
|
+
# No cancellation. Required if and only if `cancellation_outcome` is
|
|
3171
|
+
# `no_cancellation`.
|
|
3172
|
+
end
|
|
3099
3173
|
end
|
|
3100
3174
|
|
|
3101
3175
|
# @see Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa::Chargeback#fraud
|