increase 1.170.0 → 1.171.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/card_dispute.rb +10 -1
- data/lib/increase/models/card_dispute_create_params.rb +10 -1
- data/lib/increase/models/card_dispute_submit_user_submission_params.rb +10 -1
- data/lib/increase/resources/card_disputes.rb +6 -2
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_dispute.rbi +10 -0
- data/rbi/increase/models/card_dispute_create_params.rbi +13 -0
- data/rbi/increase/models/card_dispute_submit_user_submission_params.rbi +13 -0
- data/rbi/increase/resources/card_disputes.rbi +8 -0
- data/sig/increase/models/card_dispute.rbs +5 -0
- data/sig/increase/models/card_dispute_create_params.rbs +7 -0
- data/sig/increase/models/card_dispute_submit_user_submission_params.rbs +7 -0
- data/sig/increase/resources/card_disputes.rbs +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf479961e101c6eb36453f95deedb7882d423857ef53e400994ba8fb510720b0
|
|
4
|
+
data.tar.gz: c0d4a15b9864b7bace063191707936cde539ca8da84a888c57ad6eb3e88656cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64d64411025bdcc02e66f392f81d416f2e89fa2a4e0446b34c94181e36ffce9bc629adc254099beb9e2a6a86e553c734fc69e7db00ccb1b9691989ec7a8fbf4e
|
|
7
|
+
data.tar.gz: fbf30813d6b66bbbb705ec6fef5529e0c2030fe5e189dc8749d3b3426c89a68d8399656f1c4c9ca1de43b2d42b90818659b2931dfdf7242f421e57a92c9a9178
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.171.0 (2026-01-05)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.170.0...v1.171.0](https://github.com/Increase/increase-ruby/compare/v1.170.0...v1.171.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([e98ec1a](https://github.com/Increase/increase-ruby/commit/e98ec1aa3cefbfe4f8afea6a893b6d0c11123b58))
|
|
10
|
+
|
|
3
11
|
## 1.170.0 (2026-01-01)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.169.0...v1.170.0](https://github.com/Increase/increase-ruby/compare/v1.169.0...v1.170.0)
|
data/README.md
CHANGED
|
@@ -1576,6 +1576,13 @@ module Increase
|
|
|
1576
1576
|
# @return [Time]
|
|
1577
1577
|
required :created_at, Time
|
|
1578
1578
|
|
|
1579
|
+
# @!attribute explanation
|
|
1580
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
1581
|
+
# user submission. This field is not sent directly to the card networks.
|
|
1582
|
+
#
|
|
1583
|
+
# @return [String, nil]
|
|
1584
|
+
required :explanation, String, nil?: true
|
|
1585
|
+
|
|
1579
1586
|
# @!attribute further_information_requested_at
|
|
1580
1587
|
# The date and time at which Increase requested further information from the user
|
|
1581
1588
|
# for the Visa Card Dispute.
|
|
@@ -1625,7 +1632,7 @@ module Increase
|
|
|
1625
1632
|
-> { Increase::CardDispute::Visa::UserSubmission::UserPrearbitration },
|
|
1626
1633
|
nil?: true
|
|
1627
1634
|
|
|
1628
|
-
# @!method initialize(accepted_at:, amount:, attachment_files:, category:, chargeback:, created_at:, further_information_requested_at:, further_information_requested_reason:, merchant_prearbitration_decline:, status:, updated_at:, user_prearbitration:)
|
|
1635
|
+
# @!method initialize(accepted_at:, amount:, attachment_files:, category:, chargeback:, created_at:, explanation:, further_information_requested_at:, further_information_requested_reason:, merchant_prearbitration_decline:, status:, updated_at:, user_prearbitration:)
|
|
1629
1636
|
# Some parameter documentations has been truncated, see
|
|
1630
1637
|
# {Increase::Models::CardDispute::Visa::UserSubmission} for more details.
|
|
1631
1638
|
#
|
|
@@ -1641,6 +1648,8 @@ module Increase
|
|
|
1641
1648
|
#
|
|
1642
1649
|
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
|
|
1643
1650
|
#
|
|
1651
|
+
# @param explanation [String, nil] The free-form explanation provided to Increase to provide more context for the u
|
|
1652
|
+
#
|
|
1644
1653
|
# @param further_information_requested_at [Time, nil] The date and time at which Increase requested further information from the user
|
|
1645
1654
|
#
|
|
1646
1655
|
# @param further_information_requested_reason [String, nil] The reason for Increase requesting further information from the user for the Vis
|
|
@@ -37,6 +37,13 @@ module Increase
|
|
|
37
37
|
optional :attachment_files,
|
|
38
38
|
-> { Increase::Internal::Type::ArrayOf[Increase::CardDisputeCreateParams::AttachmentFile] }
|
|
39
39
|
|
|
40
|
+
# @!attribute explanation
|
|
41
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
42
|
+
# user submission. This field is not sent directly to the card networks.
|
|
43
|
+
#
|
|
44
|
+
# @return [String, nil]
|
|
45
|
+
optional :explanation, String
|
|
46
|
+
|
|
40
47
|
# @!attribute visa
|
|
41
48
|
# The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
42
49
|
# is `visa`.
|
|
@@ -44,7 +51,7 @@ module Increase
|
|
|
44
51
|
# @return [Increase::Models::CardDisputeCreateParams::Visa, nil]
|
|
45
52
|
optional :visa, -> { Increase::CardDisputeCreateParams::Visa }
|
|
46
53
|
|
|
47
|
-
# @!method initialize(disputed_transaction_id:, network:, amount: nil, attachment_files: nil, visa: nil, request_options: {})
|
|
54
|
+
# @!method initialize(disputed_transaction_id:, network:, amount: nil, attachment_files: nil, explanation: nil, visa: nil, request_options: {})
|
|
48
55
|
# Some parameter documentations has been truncated, see
|
|
49
56
|
# {Increase::Models::CardDisputeCreateParams} for more details.
|
|
50
57
|
#
|
|
@@ -56,6 +63,8 @@ module Increase
|
|
|
56
63
|
#
|
|
57
64
|
# @param attachment_files [Array<Increase::Models::CardDisputeCreateParams::AttachmentFile>] The files to be attached to the initial dispute submission.
|
|
58
65
|
#
|
|
66
|
+
# @param explanation [String] The free-form explanation provided to Increase to provide more context for the u
|
|
67
|
+
#
|
|
59
68
|
# @param visa [Increase::Models::CardDisputeCreateParams::Visa] The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
60
69
|
#
|
|
61
70
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
@@ -30,6 +30,13 @@ module Increase
|
|
|
30
30
|
optional :attachment_files,
|
|
31
31
|
-> { Increase::Internal::Type::ArrayOf[Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile] }
|
|
32
32
|
|
|
33
|
+
# @!attribute explanation
|
|
34
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
35
|
+
# user submission. This field is not sent directly to the card networks.
|
|
36
|
+
#
|
|
37
|
+
# @return [String, nil]
|
|
38
|
+
optional :explanation, String
|
|
39
|
+
|
|
33
40
|
# @!attribute visa
|
|
34
41
|
# The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
35
42
|
# is `visa`.
|
|
@@ -37,7 +44,7 @@ module Increase
|
|
|
37
44
|
# @return [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa, nil]
|
|
38
45
|
optional :visa, -> { Increase::CardDisputeSubmitUserSubmissionParams::Visa }
|
|
39
46
|
|
|
40
|
-
# @!method initialize(network:, amount: nil, attachment_files: nil, visa: nil, request_options: {})
|
|
47
|
+
# @!method initialize(network:, amount: nil, attachment_files: nil, explanation: nil, visa: nil, request_options: {})
|
|
41
48
|
# Some parameter documentations has been truncated, see
|
|
42
49
|
# {Increase::Models::CardDisputeSubmitUserSubmissionParams} for more details.
|
|
43
50
|
#
|
|
@@ -47,6 +54,8 @@ module Increase
|
|
|
47
54
|
#
|
|
48
55
|
# @param attachment_files [Array<Increase::Models::CardDisputeSubmitUserSubmissionParams::AttachmentFile>] The files to be attached to the user submission.
|
|
49
56
|
#
|
|
57
|
+
# @param explanation [String] The free-form explanation provided to Increase to provide more context for the u
|
|
58
|
+
#
|
|
50
59
|
# @param visa [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa] The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
51
60
|
#
|
|
52
61
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
@@ -8,7 +8,7 @@ module Increase
|
|
|
8
8
|
#
|
|
9
9
|
# Create a Card Dispute
|
|
10
10
|
#
|
|
11
|
-
# @overload create(disputed_transaction_id:, network:, amount: nil, attachment_files: nil, visa: nil, request_options: {})
|
|
11
|
+
# @overload create(disputed_transaction_id:, network:, amount: nil, attachment_files: nil, explanation: nil, visa: nil, request_options: {})
|
|
12
12
|
#
|
|
13
13
|
# @param disputed_transaction_id [String] The Transaction you wish to dispute. This Transaction must have a `source_type`
|
|
14
14
|
#
|
|
@@ -18,6 +18,8 @@ module Increase
|
|
|
18
18
|
#
|
|
19
19
|
# @param attachment_files [Array<Increase::Models::CardDisputeCreateParams::AttachmentFile>] The files to be attached to the initial dispute submission.
|
|
20
20
|
#
|
|
21
|
+
# @param explanation [String] The free-form explanation provided to Increase to provide more context for the u
|
|
22
|
+
#
|
|
21
23
|
# @param visa [Increase::Models::CardDisputeCreateParams::Visa] The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
22
24
|
#
|
|
23
25
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
|
@@ -95,7 +97,7 @@ module Increase
|
|
|
95
97
|
#
|
|
96
98
|
# Submit a User Submission for a Card Dispute
|
|
97
99
|
#
|
|
98
|
-
# @overload submit_user_submission(card_dispute_id, network:, amount: nil, attachment_files: nil, visa: nil, request_options: {})
|
|
100
|
+
# @overload submit_user_submission(card_dispute_id, network:, amount: nil, attachment_files: nil, explanation: nil, visa: nil, request_options: {})
|
|
99
101
|
#
|
|
100
102
|
# @param card_dispute_id [String] The identifier of the Card Dispute to submit a user submission for.
|
|
101
103
|
#
|
|
@@ -105,6 +107,8 @@ module Increase
|
|
|
105
107
|
#
|
|
106
108
|
# @param attachment_files [Array<Increase::Models::CardDisputeSubmitUserSubmissionParams::AttachmentFile>] The files to be attached to the user submission.
|
|
107
109
|
#
|
|
110
|
+
# @param explanation [String] The free-form explanation provided to Increase to provide more context for the u
|
|
111
|
+
#
|
|
108
112
|
# @param visa [Increase::Models::CardDisputeSubmitUserSubmissionParams::Visa] The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
109
113
|
#
|
|
110
114
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
data/lib/increase/version.rb
CHANGED
|
@@ -3256,6 +3256,11 @@ module Increase
|
|
|
3256
3256
|
sig { returns(Time) }
|
|
3257
3257
|
attr_accessor :created_at
|
|
3258
3258
|
|
|
3259
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
3260
|
+
# user submission. This field is not sent directly to the card networks.
|
|
3261
|
+
sig { returns(T.nilable(String)) }
|
|
3262
|
+
attr_accessor :explanation
|
|
3263
|
+
|
|
3259
3264
|
# The date and time at which Increase requested further information from the user
|
|
3260
3265
|
# for the Visa Card Dispute.
|
|
3261
3266
|
sig { returns(T.nilable(Time)) }
|
|
@@ -3340,6 +3345,7 @@ module Increase
|
|
|
3340
3345
|
Increase::CardDispute::Visa::UserSubmission::Chargeback::OrHash
|
|
3341
3346
|
),
|
|
3342
3347
|
created_at: Time,
|
|
3348
|
+
explanation: T.nilable(String),
|
|
3343
3349
|
further_information_requested_at: T.nilable(Time),
|
|
3344
3350
|
further_information_requested_reason: T.nilable(String),
|
|
3345
3351
|
merchant_prearbitration_decline:
|
|
@@ -3376,6 +3382,9 @@ module Increase
|
|
|
3376
3382
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
3377
3383
|
# the Visa Card Dispute User Submission was created.
|
|
3378
3384
|
created_at:,
|
|
3385
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
3386
|
+
# user submission. This field is not sent directly to the card networks.
|
|
3387
|
+
explanation:,
|
|
3379
3388
|
# The date and time at which Increase requested further information from the user
|
|
3380
3389
|
# for the Visa Card Dispute.
|
|
3381
3390
|
further_information_requested_at:,
|
|
@@ -3416,6 +3425,7 @@ module Increase
|
|
|
3416
3425
|
Increase::CardDispute::Visa::UserSubmission::Chargeback
|
|
3417
3426
|
),
|
|
3418
3427
|
created_at: Time,
|
|
3428
|
+
explanation: T.nilable(String),
|
|
3419
3429
|
further_information_requested_at: T.nilable(Time),
|
|
3420
3430
|
further_information_requested_reason: T.nilable(String),
|
|
3421
3431
|
merchant_prearbitration_decline:
|
|
@@ -47,6 +47,14 @@ module Increase
|
|
|
47
47
|
end
|
|
48
48
|
attr_writer :attachment_files
|
|
49
49
|
|
|
50
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
51
|
+
# user submission. This field is not sent directly to the card networks.
|
|
52
|
+
sig { returns(T.nilable(String)) }
|
|
53
|
+
attr_reader :explanation
|
|
54
|
+
|
|
55
|
+
sig { params(explanation: String).void }
|
|
56
|
+
attr_writer :explanation
|
|
57
|
+
|
|
50
58
|
# The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
51
59
|
# is `visa`.
|
|
52
60
|
sig { returns(T.nilable(Increase::CardDisputeCreateParams::Visa)) }
|
|
@@ -62,6 +70,7 @@ module Increase
|
|
|
62
70
|
amount: Integer,
|
|
63
71
|
attachment_files:
|
|
64
72
|
T::Array[Increase::CardDisputeCreateParams::AttachmentFile::OrHash],
|
|
73
|
+
explanation: String,
|
|
65
74
|
visa: Increase::CardDisputeCreateParams::Visa::OrHash,
|
|
66
75
|
request_options: Increase::RequestOptions::OrHash
|
|
67
76
|
).returns(T.attached_class)
|
|
@@ -80,6 +89,9 @@ module Increase
|
|
|
80
89
|
amount: nil,
|
|
81
90
|
# The files to be attached to the initial dispute submission.
|
|
82
91
|
attachment_files: nil,
|
|
92
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
93
|
+
# user submission. This field is not sent directly to the card networks.
|
|
94
|
+
explanation: nil,
|
|
83
95
|
# The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
84
96
|
# is `visa`.
|
|
85
97
|
visa: nil,
|
|
@@ -95,6 +107,7 @@ module Increase
|
|
|
95
107
|
amount: Integer,
|
|
96
108
|
attachment_files:
|
|
97
109
|
T::Array[Increase::CardDisputeCreateParams::AttachmentFile],
|
|
110
|
+
explanation: String,
|
|
98
111
|
visa: Increase::CardDisputeCreateParams::Visa,
|
|
99
112
|
request_options: Increase::RequestOptions
|
|
100
113
|
}
|
|
@@ -55,6 +55,14 @@ module Increase
|
|
|
55
55
|
end
|
|
56
56
|
attr_writer :attachment_files
|
|
57
57
|
|
|
58
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
59
|
+
# user submission. This field is not sent directly to the card networks.
|
|
60
|
+
sig { returns(T.nilable(String)) }
|
|
61
|
+
attr_reader :explanation
|
|
62
|
+
|
|
63
|
+
sig { params(explanation: String).void }
|
|
64
|
+
attr_writer :explanation
|
|
65
|
+
|
|
58
66
|
# The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
59
67
|
# is `visa`.
|
|
60
68
|
sig do
|
|
@@ -80,6 +88,7 @@ module Increase
|
|
|
80
88
|
T::Array[
|
|
81
89
|
Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile::OrHash
|
|
82
90
|
],
|
|
91
|
+
explanation: String,
|
|
83
92
|
visa: Increase::CardDisputeSubmitUserSubmissionParams::Visa::OrHash,
|
|
84
93
|
request_options: Increase::RequestOptions::OrHash
|
|
85
94
|
).returns(T.attached_class)
|
|
@@ -95,6 +104,9 @@ module Increase
|
|
|
95
104
|
amount: nil,
|
|
96
105
|
# The files to be attached to the user submission.
|
|
97
106
|
attachment_files: nil,
|
|
107
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
108
|
+
# user submission. This field is not sent directly to the card networks.
|
|
109
|
+
explanation: nil,
|
|
98
110
|
# The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
99
111
|
# is `visa`.
|
|
100
112
|
visa: nil,
|
|
@@ -112,6 +124,7 @@ module Increase
|
|
|
112
124
|
T::Array[
|
|
113
125
|
Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile
|
|
114
126
|
],
|
|
127
|
+
explanation: String,
|
|
115
128
|
visa: Increase::CardDisputeSubmitUserSubmissionParams::Visa,
|
|
116
129
|
request_options: Increase::RequestOptions
|
|
117
130
|
}
|
|
@@ -11,6 +11,7 @@ module Increase
|
|
|
11
11
|
amount: Integer,
|
|
12
12
|
attachment_files:
|
|
13
13
|
T::Array[Increase::CardDisputeCreateParams::AttachmentFile::OrHash],
|
|
14
|
+
explanation: String,
|
|
14
15
|
visa: Increase::CardDisputeCreateParams::Visa::OrHash,
|
|
15
16
|
request_options: Increase::RequestOptions::OrHash
|
|
16
17
|
).returns(Increase::CardDispute)
|
|
@@ -29,6 +30,9 @@ module Increase
|
|
|
29
30
|
amount: nil,
|
|
30
31
|
# The files to be attached to the initial dispute submission.
|
|
31
32
|
attachment_files: nil,
|
|
33
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
34
|
+
# user submission. This field is not sent directly to the card networks.
|
|
35
|
+
explanation: nil,
|
|
32
36
|
# The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
33
37
|
# is `visa`.
|
|
34
38
|
visa: nil,
|
|
@@ -89,6 +93,7 @@ module Increase
|
|
|
89
93
|
T::Array[
|
|
90
94
|
Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile::OrHash
|
|
91
95
|
],
|
|
96
|
+
explanation: String,
|
|
92
97
|
visa: Increase::CardDisputeSubmitUserSubmissionParams::Visa::OrHash,
|
|
93
98
|
request_options: Increase::RequestOptions::OrHash
|
|
94
99
|
).returns(Increase::CardDispute)
|
|
@@ -106,6 +111,9 @@ module Increase
|
|
|
106
111
|
amount: nil,
|
|
107
112
|
# The files to be attached to the user submission.
|
|
108
113
|
attachment_files: nil,
|
|
114
|
+
# The free-form explanation provided to Increase to provide more context for the
|
|
115
|
+
# user submission. This field is not sent directly to the card networks.
|
|
116
|
+
explanation: nil,
|
|
109
117
|
# The Visa-specific parameters for the dispute. Required if and only if `network`
|
|
110
118
|
# is `visa`.
|
|
111
119
|
visa: nil,
|
|
@@ -1150,6 +1150,7 @@ module Increase
|
|
|
1150
1150
|
category: Increase::Models::CardDispute::Visa::UserSubmission::category,
|
|
1151
1151
|
chargeback: Increase::CardDispute::Visa::UserSubmission::Chargeback?,
|
|
1152
1152
|
created_at: Time,
|
|
1153
|
+
explanation: String?,
|
|
1153
1154
|
further_information_requested_at: Time?,
|
|
1154
1155
|
further_information_requested_reason: String?,
|
|
1155
1156
|
merchant_prearbitration_decline: Increase::CardDispute::Visa::UserSubmission::MerchantPrearbitrationDecline?,
|
|
@@ -1171,6 +1172,8 @@ module Increase
|
|
|
1171
1172
|
|
|
1172
1173
|
attr_accessor created_at: Time
|
|
1173
1174
|
|
|
1175
|
+
attr_accessor explanation: String?
|
|
1176
|
+
|
|
1174
1177
|
attr_accessor further_information_requested_at: Time?
|
|
1175
1178
|
|
|
1176
1179
|
attr_accessor further_information_requested_reason: String?
|
|
@@ -1190,6 +1193,7 @@ module Increase
|
|
|
1190
1193
|
category: Increase::Models::CardDispute::Visa::UserSubmission::category,
|
|
1191
1194
|
chargeback: Increase::CardDispute::Visa::UserSubmission::Chargeback?,
|
|
1192
1195
|
created_at: Time,
|
|
1196
|
+
explanation: String?,
|
|
1193
1197
|
further_information_requested_at: Time?,
|
|
1194
1198
|
further_information_requested_reason: String?,
|
|
1195
1199
|
merchant_prearbitration_decline: Increase::CardDispute::Visa::UserSubmission::MerchantPrearbitrationDecline?,
|
|
@@ -1205,6 +1209,7 @@ module Increase
|
|
|
1205
1209
|
category: Increase::Models::CardDispute::Visa::UserSubmission::category,
|
|
1206
1210
|
chargeback: Increase::CardDispute::Visa::UserSubmission::Chargeback?,
|
|
1207
1211
|
created_at: Time,
|
|
1212
|
+
explanation: String?,
|
|
1208
1213
|
further_information_requested_at: Time?,
|
|
1209
1214
|
further_information_requested_reason: String?,
|
|
1210
1215
|
merchant_prearbitration_decline: Increase::CardDispute::Visa::UserSubmission::MerchantPrearbitrationDecline?,
|
|
@@ -6,6 +6,7 @@ module Increase
|
|
|
6
6
|
network: Increase::Models::CardDisputeCreateParams::network,
|
|
7
7
|
amount: Integer,
|
|
8
8
|
attachment_files: ::Array[Increase::CardDisputeCreateParams::AttachmentFile],
|
|
9
|
+
explanation: String,
|
|
9
10
|
visa: Increase::CardDisputeCreateParams::Visa
|
|
10
11
|
}
|
|
11
12
|
& Increase::Internal::Type::request_parameters
|
|
@@ -28,6 +29,10 @@ module Increase
|
|
|
28
29
|
::Array[Increase::CardDisputeCreateParams::AttachmentFile]
|
|
29
30
|
) -> ::Array[Increase::CardDisputeCreateParams::AttachmentFile]
|
|
30
31
|
|
|
32
|
+
attr_reader explanation: String?
|
|
33
|
+
|
|
34
|
+
def explanation=: (String) -> String
|
|
35
|
+
|
|
31
36
|
attr_reader visa: Increase::CardDisputeCreateParams::Visa?
|
|
32
37
|
|
|
33
38
|
def visa=: (
|
|
@@ -39,6 +44,7 @@ module Increase
|
|
|
39
44
|
network: Increase::Models::CardDisputeCreateParams::network,
|
|
40
45
|
?amount: Integer,
|
|
41
46
|
?attachment_files: ::Array[Increase::CardDisputeCreateParams::AttachmentFile],
|
|
47
|
+
?explanation: String,
|
|
42
48
|
?visa: Increase::CardDisputeCreateParams::Visa,
|
|
43
49
|
?request_options: Increase::request_opts
|
|
44
50
|
) -> void
|
|
@@ -48,6 +54,7 @@ module Increase
|
|
|
48
54
|
network: Increase::Models::CardDisputeCreateParams::network,
|
|
49
55
|
amount: Integer,
|
|
50
56
|
attachment_files: ::Array[Increase::CardDisputeCreateParams::AttachmentFile],
|
|
57
|
+
explanation: String,
|
|
51
58
|
visa: Increase::CardDisputeCreateParams::Visa,
|
|
52
59
|
request_options: Increase::RequestOptions
|
|
53
60
|
}
|
|
@@ -5,6 +5,7 @@ module Increase
|
|
|
5
5
|
network: Increase::Models::CardDisputeSubmitUserSubmissionParams::network,
|
|
6
6
|
amount: Integer,
|
|
7
7
|
attachment_files: ::Array[Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile],
|
|
8
|
+
explanation: String,
|
|
8
9
|
visa: Increase::CardDisputeSubmitUserSubmissionParams::Visa
|
|
9
10
|
}
|
|
10
11
|
& Increase::Internal::Type::request_parameters
|
|
@@ -25,6 +26,10 @@ module Increase
|
|
|
25
26
|
::Array[Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile]
|
|
26
27
|
) -> ::Array[Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile]
|
|
27
28
|
|
|
29
|
+
attr_reader explanation: String?
|
|
30
|
+
|
|
31
|
+
def explanation=: (String) -> String
|
|
32
|
+
|
|
28
33
|
attr_reader visa: Increase::CardDisputeSubmitUserSubmissionParams::Visa?
|
|
29
34
|
|
|
30
35
|
def visa=: (
|
|
@@ -35,6 +40,7 @@ module Increase
|
|
|
35
40
|
network: Increase::Models::CardDisputeSubmitUserSubmissionParams::network,
|
|
36
41
|
?amount: Integer,
|
|
37
42
|
?attachment_files: ::Array[Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile],
|
|
43
|
+
?explanation: String,
|
|
38
44
|
?visa: Increase::CardDisputeSubmitUserSubmissionParams::Visa,
|
|
39
45
|
?request_options: Increase::request_opts
|
|
40
46
|
) -> void
|
|
@@ -43,6 +49,7 @@ module Increase
|
|
|
43
49
|
network: Increase::Models::CardDisputeSubmitUserSubmissionParams::network,
|
|
44
50
|
amount: Integer,
|
|
45
51
|
attachment_files: ::Array[Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile],
|
|
52
|
+
explanation: String,
|
|
46
53
|
visa: Increase::CardDisputeSubmitUserSubmissionParams::Visa,
|
|
47
54
|
request_options: Increase::RequestOptions
|
|
48
55
|
}
|
|
@@ -6,6 +6,7 @@ module Increase
|
|
|
6
6
|
network: Increase::Models::CardDisputeCreateParams::network,
|
|
7
7
|
?amount: Integer,
|
|
8
8
|
?attachment_files: ::Array[Increase::CardDisputeCreateParams::AttachmentFile],
|
|
9
|
+
?explanation: String,
|
|
9
10
|
?visa: Increase::CardDisputeCreateParams::Visa,
|
|
10
11
|
?request_options: Increase::request_opts
|
|
11
12
|
) -> Increase::CardDispute
|
|
@@ -29,6 +30,7 @@ module Increase
|
|
|
29
30
|
network: Increase::Models::CardDisputeSubmitUserSubmissionParams::network,
|
|
30
31
|
?amount: Integer,
|
|
31
32
|
?attachment_files: ::Array[Increase::CardDisputeSubmitUserSubmissionParams::AttachmentFile],
|
|
33
|
+
?explanation: String,
|
|
32
34
|
?visa: Increase::CardDisputeSubmitUserSubmissionParams::Visa,
|
|
33
35
|
?request_options: Increase::request_opts
|
|
34
36
|
) -> Increase::CardDispute
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.171.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|