increase 1.203.0 → 1.205.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/account_transfer.rb +25 -25
- data/lib/increase/models/ach_prenotification.rb +8 -8
- data/lib/increase/models/ach_transfer.rb +36 -36
- data/lib/increase/models/card_dispute.rb +79 -79
- data/lib/increase/models/card_payment.rb +82 -82
- data/lib/increase/models/card_push_transfer.rb +25 -25
- data/lib/increase/models/card_validation.rb +25 -25
- data/lib/increase/models/check_transfer.rb +25 -25
- data/lib/increase/models/declined_transaction.rb +53 -53
- data/lib/increase/models/fednow_transfer.rb +25 -25
- data/lib/increase/models/pending_transaction.rb +85 -85
- data/lib/increase/models/real_time_payments_transfer.rb +25 -25
- data/lib/increase/models/simulations/ach_transfer_return_params.rb +8 -8
- data/lib/increase/models/swift_transfer.rb +25 -25
- data/lib/increase/models/transaction.rb +181 -181
- data/lib/increase/models/wire_transfer.rb +28 -28
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_transfer.rbi +40 -40
- data/rbi/increase/models/ach_prenotification.rbi +8 -8
- data/rbi/increase/models/ach_transfer.rbi +50 -50
- data/rbi/increase/models/card_dispute.rbi +141 -141
- data/rbi/increase/models/card_payment.rbi +144 -144
- data/rbi/increase/models/card_push_transfer.rbi +40 -40
- data/rbi/increase/models/card_validation.rbi +40 -40
- data/rbi/increase/models/check_transfer.rbi +40 -40
- data/rbi/increase/models/declined_transaction.rbi +99 -99
- data/rbi/increase/models/fednow_transfer.rbi +40 -40
- data/rbi/increase/models/pending_transaction.rbi +163 -163
- data/rbi/increase/models/real_time_payments_transfer.rbi +44 -44
- data/rbi/increase/models/simulations/ach_transfer_return_params.rbi +8 -8
- data/rbi/increase/models/swift_transfer.rbi +40 -40
- data/rbi/increase/models/transaction.rbi +542 -542
- data/rbi/increase/models/wire_transfer.rbi +42 -42
- data/sig/increase/models/account_transfer.rbs +17 -17
- data/sig/increase/models/ach_prenotification.rbs +8 -8
- data/sig/increase/models/ach_transfer.rbs +27 -27
- data/sig/increase/models/card_dispute.rbs +56 -56
- data/sig/increase/models/card_payment.rbs +81 -81
- data/sig/increase/models/card_push_transfer.rbs +17 -17
- data/sig/increase/models/card_validation.rbs +17 -17
- data/sig/increase/models/check_transfer.rbs +17 -17
- data/sig/increase/models/declined_transaction.rbs +52 -52
- data/sig/increase/models/fednow_transfer.rbs +17 -17
- data/sig/increase/models/pending_transaction.rbs +92 -92
- data/sig/increase/models/real_time_payments_transfer.rbs +17 -17
- data/sig/increase/models/simulations/ach_transfer_return_params.rbs +8 -8
- data/sig/increase/models/swift_transfer.rbs +17 -17
- data/sig/increase/models/transaction.rbs +210 -210
- data/sig/increase/models/wire_transfer.rbs +19 -19
- metadata +2 -2
|
@@ -446,6 +446,15 @@ module Increase
|
|
|
446
446
|
end
|
|
447
447
|
attr_accessor :category
|
|
448
448
|
|
|
449
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
450
|
+
# the Visa Card Dispute Network Event was created.
|
|
451
|
+
sig { returns(Time) }
|
|
452
|
+
attr_accessor :created_at
|
|
453
|
+
|
|
454
|
+
# The dispute financial transaction that resulted from the network event, if any.
|
|
455
|
+
sig { returns(T.nilable(String)) }
|
|
456
|
+
attr_accessor :dispute_financial_transaction_id
|
|
457
|
+
|
|
449
458
|
# A Card Dispute Chargeback Accepted Visa Network Event object. This field will be
|
|
450
459
|
# present in the JSON response if and only if `category` is equal to
|
|
451
460
|
# `chargeback_accepted`. Contains the details specific to a chargeback accepted
|
|
@@ -518,15 +527,6 @@ module Increase
|
|
|
518
527
|
end
|
|
519
528
|
attr_writer :chargeback_timed_out
|
|
520
529
|
|
|
521
|
-
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
522
|
-
# the Visa Card Dispute Network Event was created.
|
|
523
|
-
sig { returns(Time) }
|
|
524
|
-
attr_accessor :created_at
|
|
525
|
-
|
|
526
|
-
# The dispute financial transaction that resulted from the network event, if any.
|
|
527
|
-
sig { returns(T.nilable(String)) }
|
|
528
|
-
attr_accessor :dispute_financial_transaction_id
|
|
529
|
-
|
|
530
530
|
# A Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event
|
|
531
531
|
# object. This field will be present in the JSON response if and only if
|
|
532
532
|
# `category` is equal to `merchant_prearbitration_decline_submitted`. Contains the
|
|
@@ -775,6 +775,8 @@ module Increase
|
|
|
775
775
|
],
|
|
776
776
|
category:
|
|
777
777
|
Increase::CardDispute::Visa::NetworkEvent::Category::OrSymbol,
|
|
778
|
+
created_at: Time,
|
|
779
|
+
dispute_financial_transaction_id: T.nilable(String),
|
|
778
780
|
chargeback_accepted:
|
|
779
781
|
T.nilable(
|
|
780
782
|
Increase::CardDispute::Visa::NetworkEvent::ChargebackAccepted::OrHash
|
|
@@ -787,8 +789,6 @@ module Increase
|
|
|
787
789
|
T.nilable(
|
|
788
790
|
Increase::CardDispute::Visa::NetworkEvent::ChargebackTimedOut::OrHash
|
|
789
791
|
),
|
|
790
|
-
created_at: Time,
|
|
791
|
-
dispute_financial_transaction_id: T.nilable(String),
|
|
792
792
|
merchant_prearbitration_decline_submitted:
|
|
793
793
|
T.nilable(
|
|
794
794
|
Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted::OrHash
|
|
@@ -838,91 +838,91 @@ module Increase
|
|
|
838
838
|
# this enum over time; your application should be able to handle such additions
|
|
839
839
|
# gracefully.
|
|
840
840
|
category:,
|
|
841
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
842
|
+
# the Visa Card Dispute Network Event was created.
|
|
843
|
+
created_at:,
|
|
844
|
+
# The dispute financial transaction that resulted from the network event, if any.
|
|
845
|
+
dispute_financial_transaction_id:,
|
|
841
846
|
# A Card Dispute Chargeback Accepted Visa Network Event object. This field will be
|
|
842
847
|
# present in the JSON response if and only if `category` is equal to
|
|
843
848
|
# `chargeback_accepted`. Contains the details specific to a chargeback accepted
|
|
844
849
|
# Visa Card Dispute Network Event, which represents that a chargeback has been
|
|
845
850
|
# accepted by the merchant.
|
|
846
|
-
chargeback_accepted
|
|
851
|
+
chargeback_accepted: nil,
|
|
847
852
|
# A Card Dispute Chargeback Submitted Visa Network Event object. This field will
|
|
848
853
|
# be present in the JSON response if and only if `category` is equal to
|
|
849
854
|
# `chargeback_submitted`. Contains the details specific to a chargeback submitted
|
|
850
855
|
# Visa Card Dispute Network Event, which represents that a chargeback has been
|
|
851
856
|
# submitted to the network.
|
|
852
|
-
chargeback_submitted
|
|
857
|
+
chargeback_submitted: nil,
|
|
853
858
|
# A Card Dispute Chargeback Timed Out Visa Network Event object. This field will
|
|
854
859
|
# be present in the JSON response if and only if `category` is equal to
|
|
855
860
|
# `chargeback_timed_out`. Contains the details specific to a chargeback timed out
|
|
856
861
|
# Visa Card Dispute Network Event, which represents that the chargeback has timed
|
|
857
862
|
# out in the user's favor.
|
|
858
|
-
chargeback_timed_out
|
|
859
|
-
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
860
|
-
# the Visa Card Dispute Network Event was created.
|
|
861
|
-
created_at:,
|
|
862
|
-
# The dispute financial transaction that resulted from the network event, if any.
|
|
863
|
-
dispute_financial_transaction_id:,
|
|
863
|
+
chargeback_timed_out: nil,
|
|
864
864
|
# A Card Dispute Merchant Pre-Arbitration Decline Submitted Visa Network Event
|
|
865
865
|
# object. This field will be present in the JSON response if and only if
|
|
866
866
|
# `category` is equal to `merchant_prearbitration_decline_submitted`. Contains the
|
|
867
867
|
# details specific to a merchant prearbitration decline submitted Visa Card
|
|
868
868
|
# Dispute Network Event, which represents that the user has declined the
|
|
869
869
|
# merchant's request for a prearbitration request decision in their favor.
|
|
870
|
-
merchant_prearbitration_decline_submitted
|
|
870
|
+
merchant_prearbitration_decline_submitted: nil,
|
|
871
871
|
# A Card Dispute Merchant Pre-Arbitration Received Visa Network Event object. This
|
|
872
872
|
# field will be present in the JSON response if and only if `category` is equal to
|
|
873
873
|
# `merchant_prearbitration_received`. Contains the details specific to a merchant
|
|
874
874
|
# prearbitration received Visa Card Dispute Network Event, which represents that
|
|
875
875
|
# the merchant has issued a prearbitration request in the user's favor.
|
|
876
|
-
merchant_prearbitration_received
|
|
876
|
+
merchant_prearbitration_received: nil,
|
|
877
877
|
# A Card Dispute Merchant Pre-Arbitration Timed Out Visa Network Event object.
|
|
878
878
|
# This field will be present in the JSON response if and only if `category` is
|
|
879
879
|
# equal to `merchant_prearbitration_timed_out`. Contains the details specific to a
|
|
880
880
|
# merchant prearbitration timed out Visa Card Dispute Network Event, which
|
|
881
881
|
# represents that the user has timed out responding to the merchant's
|
|
882
882
|
# prearbitration request.
|
|
883
|
-
merchant_prearbitration_timed_out
|
|
883
|
+
merchant_prearbitration_timed_out: nil,
|
|
884
884
|
# A Card Dispute Re-presented Visa Network Event object. This field will be
|
|
885
885
|
# present in the JSON response if and only if `category` is equal to
|
|
886
886
|
# `represented`. Contains the details specific to a re-presented Visa Card Dispute
|
|
887
887
|
# Network Event, which represents that the merchant has declined the user's
|
|
888
888
|
# chargeback and has re-presented the payment.
|
|
889
|
-
represented
|
|
889
|
+
represented: nil,
|
|
890
890
|
# A Card Dispute Re-presentment Timed Out Visa Network Event object. This field
|
|
891
891
|
# will be present in the JSON response if and only if `category` is equal to
|
|
892
892
|
# `representment_timed_out`. Contains the details specific to a re-presentment
|
|
893
893
|
# time-out Visa Card Dispute Network Event, which represents that the user did not
|
|
894
894
|
# respond to the re-presentment by the merchant within the time limit.
|
|
895
|
-
representment_timed_out
|
|
895
|
+
representment_timed_out: nil,
|
|
896
896
|
# A Card Dispute User Pre-Arbitration Accepted Visa Network Event object. This
|
|
897
897
|
# field will be present in the JSON response if and only if `category` is equal to
|
|
898
898
|
# `user_prearbitration_accepted`. Contains the details specific to a user
|
|
899
899
|
# prearbitration accepted Visa Card Dispute Network Event, which represents that
|
|
900
900
|
# the merchant has accepted the user's prearbitration request in the user's favor.
|
|
901
|
-
user_prearbitration_accepted
|
|
901
|
+
user_prearbitration_accepted: nil,
|
|
902
902
|
# A Card Dispute User Pre-Arbitration Declined Visa Network Event object. This
|
|
903
903
|
# field will be present in the JSON response if and only if `category` is equal to
|
|
904
904
|
# `user_prearbitration_declined`. Contains the details specific to a user
|
|
905
905
|
# prearbitration declined Visa Card Dispute Network Event, which represents that
|
|
906
906
|
# the merchant has declined the user's prearbitration request.
|
|
907
|
-
user_prearbitration_declined
|
|
907
|
+
user_prearbitration_declined: nil,
|
|
908
908
|
# A Card Dispute User Pre-Arbitration Submitted Visa Network Event object. This
|
|
909
909
|
# field will be present in the JSON response if and only if `category` is equal to
|
|
910
910
|
# `user_prearbitration_submitted`. Contains the details specific to a user
|
|
911
911
|
# prearbitration submitted Visa Card Dispute Network Event, which represents that
|
|
912
912
|
# the user's request for prearbitration has been submitted to the network.
|
|
913
|
-
user_prearbitration_submitted
|
|
913
|
+
user_prearbitration_submitted: nil,
|
|
914
914
|
# A Card Dispute User Pre-Arbitration Timed Out Visa Network Event object. This
|
|
915
915
|
# field will be present in the JSON response if and only if `category` is equal to
|
|
916
916
|
# `user_prearbitration_timed_out`. Contains the details specific to a user
|
|
917
917
|
# prearbitration timed out Visa Card Dispute Network Event, which represents that
|
|
918
918
|
# the merchant has timed out responding to the user's prearbitration request.
|
|
919
|
-
user_prearbitration_timed_out
|
|
919
|
+
user_prearbitration_timed_out: nil,
|
|
920
920
|
# A Card Dispute User Withdrawal Submitted Visa Network Event object. This field
|
|
921
921
|
# will be present in the JSON response if and only if `category` is equal to
|
|
922
922
|
# `user_withdrawal_submitted`. Contains the details specific to a user withdrawal
|
|
923
923
|
# submitted Visa Card Dispute Network Event, which represents that the user's
|
|
924
924
|
# request to withdraw the dispute has been submitted to the network.
|
|
925
|
-
user_withdrawal_submitted:
|
|
925
|
+
user_withdrawal_submitted: nil
|
|
926
926
|
)
|
|
927
927
|
end
|
|
928
928
|
|
|
@@ -935,6 +935,8 @@ module Increase
|
|
|
935
935
|
],
|
|
936
936
|
category:
|
|
937
937
|
Increase::CardDispute::Visa::NetworkEvent::Category::TaggedSymbol,
|
|
938
|
+
created_at: Time,
|
|
939
|
+
dispute_financial_transaction_id: T.nilable(String),
|
|
938
940
|
chargeback_accepted:
|
|
939
941
|
T.nilable(
|
|
940
942
|
Increase::CardDispute::Visa::NetworkEvent::ChargebackAccepted
|
|
@@ -947,8 +949,6 @@ module Increase
|
|
|
947
949
|
T.nilable(
|
|
948
950
|
Increase::CardDispute::Visa::NetworkEvent::ChargebackTimedOut
|
|
949
951
|
),
|
|
950
|
-
created_at: Time,
|
|
951
|
-
dispute_financial_transaction_id: T.nilable(String),
|
|
952
952
|
merchant_prearbitration_decline_submitted:
|
|
953
953
|
T.nilable(
|
|
954
954
|
Increase::CardDispute::Visa::NetworkEvent::MerchantPrearbitrationDeclineSubmitted
|
|
@@ -3247,6 +3247,39 @@ module Increase
|
|
|
3247
3247
|
end
|
|
3248
3248
|
attr_accessor :category
|
|
3249
3249
|
|
|
3250
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
3251
|
+
# the Visa Card Dispute User Submission was created.
|
|
3252
|
+
sig { returns(Time) }
|
|
3253
|
+
attr_accessor :created_at
|
|
3254
|
+
|
|
3255
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
3256
|
+
# user submission. This field is not sent directly to the card networks.
|
|
3257
|
+
sig { returns(T.nilable(String)) }
|
|
3258
|
+
attr_accessor :explanation
|
|
3259
|
+
|
|
3260
|
+
# The date and time at which Increase requested further information from the user
|
|
3261
|
+
# for the Visa Card Dispute.
|
|
3262
|
+
sig { returns(T.nilable(Time)) }
|
|
3263
|
+
attr_accessor :further_information_requested_at
|
|
3264
|
+
|
|
3265
|
+
# The reason for Increase requesting further information from the user for the
|
|
3266
|
+
# Visa Card Dispute.
|
|
3267
|
+
sig { returns(T.nilable(String)) }
|
|
3268
|
+
attr_accessor :further_information_requested_reason
|
|
3269
|
+
|
|
3270
|
+
# The status of the Visa Card Dispute User Submission.
|
|
3271
|
+
sig do
|
|
3272
|
+
returns(
|
|
3273
|
+
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
3274
|
+
)
|
|
3275
|
+
end
|
|
3276
|
+
attr_accessor :status
|
|
3277
|
+
|
|
3278
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
3279
|
+
# the Visa Card Dispute User Submission was updated.
|
|
3280
|
+
sig { returns(Time) }
|
|
3281
|
+
attr_accessor :updated_at
|
|
3282
|
+
|
|
3250
3283
|
# A Visa Card Dispute Chargeback User Submission Chargeback Details object. This
|
|
3251
3284
|
# field will be present in the JSON response if and only if `category` is equal to
|
|
3252
3285
|
# `chargeback`. Contains the details specific to a Visa chargeback User Submission
|
|
@@ -3268,26 +3301,6 @@ module Increase
|
|
|
3268
3301
|
end
|
|
3269
3302
|
attr_writer :chargeback
|
|
3270
3303
|
|
|
3271
|
-
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
3272
|
-
# the Visa Card Dispute User Submission was created.
|
|
3273
|
-
sig { returns(Time) }
|
|
3274
|
-
attr_accessor :created_at
|
|
3275
|
-
|
|
3276
|
-
# The free-form explanation provided to Increase to provide more context for the
|
|
3277
|
-
# user submission. This field is not sent directly to the card networks.
|
|
3278
|
-
sig { returns(T.nilable(String)) }
|
|
3279
|
-
attr_accessor :explanation
|
|
3280
|
-
|
|
3281
|
-
# The date and time at which Increase requested further information from the user
|
|
3282
|
-
# for the Visa Card Dispute.
|
|
3283
|
-
sig { returns(T.nilable(Time)) }
|
|
3284
|
-
attr_accessor :further_information_requested_at
|
|
3285
|
-
|
|
3286
|
-
# The reason for Increase requesting further information from the user for the
|
|
3287
|
-
# Visa Card Dispute.
|
|
3288
|
-
sig { returns(T.nilable(String)) }
|
|
3289
|
-
attr_accessor :further_information_requested_reason
|
|
3290
|
-
|
|
3291
3304
|
# A Visa Card Dispute Merchant Pre-Arbitration Decline User Submission object.
|
|
3292
3305
|
# This field will be present in the JSON response if and only if `category` is
|
|
3293
3306
|
# equal to `merchant_prearbitration_decline`. Contains the details specific to a
|
|
@@ -3311,19 +3324,6 @@ module Increase
|
|
|
3311
3324
|
end
|
|
3312
3325
|
attr_writer :merchant_prearbitration_decline
|
|
3313
3326
|
|
|
3314
|
-
# The status of the Visa Card Dispute User Submission.
|
|
3315
|
-
sig do
|
|
3316
|
-
returns(
|
|
3317
|
-
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
3318
|
-
)
|
|
3319
|
-
end
|
|
3320
|
-
attr_accessor :status
|
|
3321
|
-
|
|
3322
|
-
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
3323
|
-
# the Visa Card Dispute User Submission was updated.
|
|
3324
|
-
sig { returns(Time) }
|
|
3325
|
-
attr_accessor :updated_at
|
|
3326
|
-
|
|
3327
3327
|
# A Visa Card Dispute User-Initiated Pre-Arbitration User Submission object. This
|
|
3328
3328
|
# field will be present in the JSON response if and only if `category` is equal to
|
|
3329
3329
|
# `user_prearbitration`. Contains the details specific to a user-initiated
|
|
@@ -3357,21 +3357,21 @@ module Increase
|
|
|
3357
3357
|
],
|
|
3358
3358
|
category:
|
|
3359
3359
|
Increase::CardDispute::Visa::UserSubmission::Category::OrSymbol,
|
|
3360
|
-
chargeback:
|
|
3361
|
-
T.nilable(
|
|
3362
|
-
Increase::CardDispute::Visa::UserSubmission::Chargeback::OrHash
|
|
3363
|
-
),
|
|
3364
3360
|
created_at: Time,
|
|
3365
3361
|
explanation: T.nilable(String),
|
|
3366
3362
|
further_information_requested_at: T.nilable(Time),
|
|
3367
3363
|
further_information_requested_reason: T.nilable(String),
|
|
3364
|
+
status:
|
|
3365
|
+
Increase::CardDispute::Visa::UserSubmission::Status::OrSymbol,
|
|
3366
|
+
updated_at: Time,
|
|
3367
|
+
chargeback:
|
|
3368
|
+
T.nilable(
|
|
3369
|
+
Increase::CardDispute::Visa::UserSubmission::Chargeback::OrHash
|
|
3370
|
+
),
|
|
3368
3371
|
merchant_prearbitration_decline:
|
|
3369
3372
|
T.nilable(
|
|
3370
3373
|
Increase::CardDispute::Visa::UserSubmission::MerchantPrearbitrationDecline::OrHash
|
|
3371
3374
|
),
|
|
3372
|
-
status:
|
|
3373
|
-
Increase::CardDispute::Visa::UserSubmission::Status::OrSymbol,
|
|
3374
|
-
updated_at: Time,
|
|
3375
3375
|
user_prearbitration:
|
|
3376
3376
|
T.nilable(
|
|
3377
3377
|
Increase::CardDispute::Visa::UserSubmission::UserPrearbitration::OrHash
|
|
@@ -3391,11 +3391,6 @@ module Increase
|
|
|
3391
3391
|
# this enum over time; your application should be able to handle such additions
|
|
3392
3392
|
# gracefully.
|
|
3393
3393
|
category:,
|
|
3394
|
-
# A Visa Card Dispute Chargeback User Submission Chargeback Details object. This
|
|
3395
|
-
# field will be present in the JSON response if and only if `category` is equal to
|
|
3396
|
-
# `chargeback`. Contains the details specific to a Visa chargeback User Submission
|
|
3397
|
-
# for a Card Dispute.
|
|
3398
|
-
chargeback:,
|
|
3399
3394
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
3400
3395
|
# the Visa Card Dispute User Submission was created.
|
|
3401
3396
|
created_at:,
|
|
@@ -3408,21 +3403,26 @@ module Increase
|
|
|
3408
3403
|
# The reason for Increase requesting further information from the user for the
|
|
3409
3404
|
# Visa Card Dispute.
|
|
3410
3405
|
further_information_requested_reason:,
|
|
3411
|
-
# A Visa Card Dispute Merchant Pre-Arbitration Decline User Submission object.
|
|
3412
|
-
# This field will be present in the JSON response if and only if `category` is
|
|
3413
|
-
# equal to `merchant_prearbitration_decline`. Contains the details specific to a
|
|
3414
|
-
# merchant prearbitration decline Visa Card Dispute User Submission.
|
|
3415
|
-
merchant_prearbitration_decline:,
|
|
3416
3406
|
# The status of the Visa Card Dispute User Submission.
|
|
3417
3407
|
status:,
|
|
3418
3408
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
3419
3409
|
# the Visa Card Dispute User Submission was updated.
|
|
3420
3410
|
updated_at:,
|
|
3411
|
+
# A Visa Card Dispute Chargeback User Submission Chargeback Details object. This
|
|
3412
|
+
# field will be present in the JSON response if and only if `category` is equal to
|
|
3413
|
+
# `chargeback`. Contains the details specific to a Visa chargeback User Submission
|
|
3414
|
+
# for a Card Dispute.
|
|
3415
|
+
chargeback: nil,
|
|
3416
|
+
# A Visa Card Dispute Merchant Pre-Arbitration Decline User Submission object.
|
|
3417
|
+
# This field will be present in the JSON response if and only if `category` is
|
|
3418
|
+
# equal to `merchant_prearbitration_decline`. Contains the details specific to a
|
|
3419
|
+
# merchant prearbitration decline Visa Card Dispute User Submission.
|
|
3420
|
+
merchant_prearbitration_decline: nil,
|
|
3421
3421
|
# A Visa Card Dispute User-Initiated Pre-Arbitration User Submission object. This
|
|
3422
3422
|
# field will be present in the JSON response if and only if `category` is equal to
|
|
3423
3423
|
# `user_prearbitration`. Contains the details specific to a user-initiated
|
|
3424
3424
|
# pre-arbitration Visa Card Dispute User Submission.
|
|
3425
|
-
user_prearbitration:
|
|
3425
|
+
user_prearbitration: nil
|
|
3426
3426
|
)
|
|
3427
3427
|
end
|
|
3428
3428
|
|
|
@@ -3437,21 +3437,21 @@ module Increase
|
|
|
3437
3437
|
],
|
|
3438
3438
|
category:
|
|
3439
3439
|
Increase::CardDispute::Visa::UserSubmission::Category::TaggedSymbol,
|
|
3440
|
-
chargeback:
|
|
3441
|
-
T.nilable(
|
|
3442
|
-
Increase::CardDispute::Visa::UserSubmission::Chargeback
|
|
3443
|
-
),
|
|
3444
3440
|
created_at: Time,
|
|
3445
3441
|
explanation: T.nilable(String),
|
|
3446
3442
|
further_information_requested_at: T.nilable(Time),
|
|
3447
3443
|
further_information_requested_reason: T.nilable(String),
|
|
3444
|
+
status:
|
|
3445
|
+
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol,
|
|
3446
|
+
updated_at: Time,
|
|
3447
|
+
chargeback:
|
|
3448
|
+
T.nilable(
|
|
3449
|
+
Increase::CardDispute::Visa::UserSubmission::Chargeback
|
|
3450
|
+
),
|
|
3448
3451
|
merchant_prearbitration_decline:
|
|
3449
3452
|
T.nilable(
|
|
3450
3453
|
Increase::CardDispute::Visa::UserSubmission::MerchantPrearbitrationDecline
|
|
3451
3454
|
),
|
|
3452
|
-
status:
|
|
3453
|
-
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol,
|
|
3454
|
-
updated_at: Time,
|
|
3455
3455
|
user_prearbitration:
|
|
3456
3456
|
T.nilable(
|
|
3457
3457
|
Increase::CardDispute::Visa::UserSubmission::UserPrearbitration
|
|
@@ -3534,6 +3534,58 @@ module Increase
|
|
|
3534
3534
|
end
|
|
3535
3535
|
end
|
|
3536
3536
|
|
|
3537
|
+
# The status of the Visa Card Dispute User Submission.
|
|
3538
|
+
module Status
|
|
3539
|
+
extend Increase::Internal::Type::Enum
|
|
3540
|
+
|
|
3541
|
+
TaggedSymbol =
|
|
3542
|
+
T.type_alias do
|
|
3543
|
+
T.all(
|
|
3544
|
+
Symbol,
|
|
3545
|
+
Increase::CardDispute::Visa::UserSubmission::Status
|
|
3546
|
+
)
|
|
3547
|
+
end
|
|
3548
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
3549
|
+
|
|
3550
|
+
# The User Submission was abandoned.
|
|
3551
|
+
ABANDONED =
|
|
3552
|
+
T.let(
|
|
3553
|
+
:abandoned,
|
|
3554
|
+
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
3555
|
+
)
|
|
3556
|
+
|
|
3557
|
+
# The User Submission was accepted.
|
|
3558
|
+
ACCEPTED =
|
|
3559
|
+
T.let(
|
|
3560
|
+
:accepted,
|
|
3561
|
+
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
3562
|
+
)
|
|
3563
|
+
|
|
3564
|
+
# Further information is requested, please resubmit with the requested information.
|
|
3565
|
+
FURTHER_INFORMATION_REQUESTED =
|
|
3566
|
+
T.let(
|
|
3567
|
+
:further_information_requested,
|
|
3568
|
+
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
3569
|
+
)
|
|
3570
|
+
|
|
3571
|
+
# The User Submission is pending review.
|
|
3572
|
+
PENDING_REVIEWING =
|
|
3573
|
+
T.let(
|
|
3574
|
+
:pending_reviewing,
|
|
3575
|
+
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
3576
|
+
)
|
|
3577
|
+
|
|
3578
|
+
sig do
|
|
3579
|
+
override.returns(
|
|
3580
|
+
T::Array[
|
|
3581
|
+
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
3582
|
+
]
|
|
3583
|
+
)
|
|
3584
|
+
end
|
|
3585
|
+
def self.values
|
|
3586
|
+
end
|
|
3587
|
+
end
|
|
3588
|
+
|
|
3537
3589
|
class Chargeback < Increase::Internal::Type::BaseModel
|
|
3538
3590
|
OrHash =
|
|
3539
3591
|
T.type_alias do
|
|
@@ -10728,58 +10780,6 @@ module Increase
|
|
|
10728
10780
|
end
|
|
10729
10781
|
end
|
|
10730
10782
|
|
|
10731
|
-
# The status of the Visa Card Dispute User Submission.
|
|
10732
|
-
module Status
|
|
10733
|
-
extend Increase::Internal::Type::Enum
|
|
10734
|
-
|
|
10735
|
-
TaggedSymbol =
|
|
10736
|
-
T.type_alias do
|
|
10737
|
-
T.all(
|
|
10738
|
-
Symbol,
|
|
10739
|
-
Increase::CardDispute::Visa::UserSubmission::Status
|
|
10740
|
-
)
|
|
10741
|
-
end
|
|
10742
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
10743
|
-
|
|
10744
|
-
# The User Submission was abandoned.
|
|
10745
|
-
ABANDONED =
|
|
10746
|
-
T.let(
|
|
10747
|
-
:abandoned,
|
|
10748
|
-
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
10749
|
-
)
|
|
10750
|
-
|
|
10751
|
-
# The User Submission was accepted.
|
|
10752
|
-
ACCEPTED =
|
|
10753
|
-
T.let(
|
|
10754
|
-
:accepted,
|
|
10755
|
-
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
10756
|
-
)
|
|
10757
|
-
|
|
10758
|
-
# Further information is requested, please resubmit with the requested information.
|
|
10759
|
-
FURTHER_INFORMATION_REQUESTED =
|
|
10760
|
-
T.let(
|
|
10761
|
-
:further_information_requested,
|
|
10762
|
-
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
10763
|
-
)
|
|
10764
|
-
|
|
10765
|
-
# The User Submission is pending review.
|
|
10766
|
-
PENDING_REVIEWING =
|
|
10767
|
-
T.let(
|
|
10768
|
-
:pending_reviewing,
|
|
10769
|
-
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
10770
|
-
)
|
|
10771
|
-
|
|
10772
|
-
sig do
|
|
10773
|
-
override.returns(
|
|
10774
|
-
T::Array[
|
|
10775
|
-
Increase::CardDispute::Visa::UserSubmission::Status::TaggedSymbol
|
|
10776
|
-
]
|
|
10777
|
-
)
|
|
10778
|
-
end
|
|
10779
|
-
def self.values
|
|
10780
|
-
end
|
|
10781
|
-
end
|
|
10782
|
-
|
|
10783
10783
|
class UserPrearbitration < Increase::Internal::Type::BaseModel
|
|
10784
10784
|
OrHash =
|
|
10785
10785
|
T.type_alias do
|