increase 1.126.0 → 1.128.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/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 +32 -33
- 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/resources/exports.rb +1 -1
- data/lib/increase/version.rb +1 -1
- 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 +90 -53
- 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/resources/exports.rbi +1 -1
- 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 +29 -27
- 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/resources/exports.rbs +1 -1
- metadata +1 -1
|
@@ -46,40 +46,50 @@ module Increase
|
|
|
46
46
|
type visa =
|
|
47
47
|
{
|
|
48
48
|
action: Increase::Models::Simulations::CardDisputeActionParams::Visa::action,
|
|
49
|
-
accept_chargeback:
|
|
50
|
-
accept_user_submission:
|
|
51
|
-
decline_user_prearbitration:
|
|
52
|
-
receive_merchant_prearbitration:
|
|
53
|
-
represent:
|
|
49
|
+
accept_chargeback: Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback,
|
|
50
|
+
accept_user_submission: Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission,
|
|
51
|
+
decline_user_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration,
|
|
52
|
+
receive_merchant_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration,
|
|
53
|
+
represent: Increase::Simulations::CardDisputeActionParams::Visa::Represent,
|
|
54
54
|
request_further_information: Increase::Simulations::CardDisputeActionParams::Visa::RequestFurtherInformation,
|
|
55
|
-
time_out_chargeback:
|
|
56
|
-
time_out_merchant_prearbitration:
|
|
57
|
-
time_out_representment:
|
|
58
|
-
time_out_user_prearbitration:
|
|
55
|
+
time_out_chargeback: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback,
|
|
56
|
+
time_out_merchant_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration,
|
|
57
|
+
time_out_representment: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment,
|
|
58
|
+
time_out_user_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
class Visa < Increase::Internal::Type::BaseModel
|
|
62
62
|
attr_accessor action: Increase::Models::Simulations::CardDisputeActionParams::Visa::action
|
|
63
63
|
|
|
64
|
-
attr_reader accept_chargeback:
|
|
64
|
+
attr_reader accept_chargeback: Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback?
|
|
65
65
|
|
|
66
|
-
def accept_chargeback=: (
|
|
66
|
+
def accept_chargeback=: (
|
|
67
|
+
Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback
|
|
68
|
+
) -> Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback
|
|
67
69
|
|
|
68
|
-
attr_reader accept_user_submission:
|
|
70
|
+
attr_reader accept_user_submission: Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission?
|
|
69
71
|
|
|
70
|
-
def accept_user_submission=: (
|
|
72
|
+
def accept_user_submission=: (
|
|
73
|
+
Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission
|
|
74
|
+
) -> Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission
|
|
71
75
|
|
|
72
|
-
attr_reader decline_user_prearbitration:
|
|
76
|
+
attr_reader decline_user_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration?
|
|
73
77
|
|
|
74
|
-
def decline_user_prearbitration=: (
|
|
78
|
+
def decline_user_prearbitration=: (
|
|
79
|
+
Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration
|
|
80
|
+
) -> Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration
|
|
75
81
|
|
|
76
|
-
attr_reader receive_merchant_prearbitration:
|
|
82
|
+
attr_reader receive_merchant_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration?
|
|
77
83
|
|
|
78
|
-
def receive_merchant_prearbitration=: (
|
|
84
|
+
def receive_merchant_prearbitration=: (
|
|
85
|
+
Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration
|
|
86
|
+
) -> Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration
|
|
79
87
|
|
|
80
|
-
attr_reader represent:
|
|
88
|
+
attr_reader represent: Increase::Simulations::CardDisputeActionParams::Visa::Represent?
|
|
81
89
|
|
|
82
|
-
def represent=: (
|
|
90
|
+
def represent=: (
|
|
91
|
+
Increase::Simulations::CardDisputeActionParams::Visa::Represent
|
|
92
|
+
) -> Increase::Simulations::CardDisputeActionParams::Visa::Represent
|
|
83
93
|
|
|
84
94
|
attr_reader request_further_information: Increase::Simulations::CardDisputeActionParams::Visa::RequestFurtherInformation?
|
|
85
95
|
|
|
@@ -87,48 +97,56 @@ module Increase
|
|
|
87
97
|
Increase::Simulations::CardDisputeActionParams::Visa::RequestFurtherInformation
|
|
88
98
|
) -> Increase::Simulations::CardDisputeActionParams::Visa::RequestFurtherInformation
|
|
89
99
|
|
|
90
|
-
attr_reader time_out_chargeback:
|
|
100
|
+
attr_reader time_out_chargeback: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback?
|
|
91
101
|
|
|
92
|
-
def time_out_chargeback=: (
|
|
102
|
+
def time_out_chargeback=: (
|
|
103
|
+
Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback
|
|
104
|
+
) -> Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback
|
|
93
105
|
|
|
94
|
-
attr_reader time_out_merchant_prearbitration:
|
|
106
|
+
attr_reader time_out_merchant_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration?
|
|
95
107
|
|
|
96
|
-
def time_out_merchant_prearbitration=: (
|
|
108
|
+
def time_out_merchant_prearbitration=: (
|
|
109
|
+
Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration
|
|
110
|
+
) -> Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration
|
|
97
111
|
|
|
98
|
-
attr_reader time_out_representment:
|
|
112
|
+
attr_reader time_out_representment: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment?
|
|
99
113
|
|
|
100
|
-
def time_out_representment=: (
|
|
114
|
+
def time_out_representment=: (
|
|
115
|
+
Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment
|
|
116
|
+
) -> Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment
|
|
101
117
|
|
|
102
|
-
attr_reader time_out_user_prearbitration:
|
|
118
|
+
attr_reader time_out_user_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration?
|
|
103
119
|
|
|
104
|
-
def time_out_user_prearbitration=: (
|
|
120
|
+
def time_out_user_prearbitration=: (
|
|
121
|
+
Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration
|
|
122
|
+
) -> Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration
|
|
105
123
|
|
|
106
124
|
def initialize: (
|
|
107
125
|
action: Increase::Models::Simulations::CardDisputeActionParams::Visa::action,
|
|
108
|
-
?accept_chargeback:
|
|
109
|
-
?accept_user_submission:
|
|
110
|
-
?decline_user_prearbitration:
|
|
111
|
-
?receive_merchant_prearbitration:
|
|
112
|
-
?represent:
|
|
126
|
+
?accept_chargeback: Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback,
|
|
127
|
+
?accept_user_submission: Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission,
|
|
128
|
+
?decline_user_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration,
|
|
129
|
+
?receive_merchant_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration,
|
|
130
|
+
?represent: Increase::Simulations::CardDisputeActionParams::Visa::Represent,
|
|
113
131
|
?request_further_information: Increase::Simulations::CardDisputeActionParams::Visa::RequestFurtherInformation,
|
|
114
|
-
?time_out_chargeback:
|
|
115
|
-
?time_out_merchant_prearbitration:
|
|
116
|
-
?time_out_representment:
|
|
117
|
-
?time_out_user_prearbitration:
|
|
132
|
+
?time_out_chargeback: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback,
|
|
133
|
+
?time_out_merchant_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration,
|
|
134
|
+
?time_out_representment: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment,
|
|
135
|
+
?time_out_user_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration
|
|
118
136
|
) -> void
|
|
119
137
|
|
|
120
138
|
def to_hash: -> {
|
|
121
139
|
action: Increase::Models::Simulations::CardDisputeActionParams::Visa::action,
|
|
122
|
-
accept_chargeback:
|
|
123
|
-
accept_user_submission:
|
|
124
|
-
decline_user_prearbitration:
|
|
125
|
-
receive_merchant_prearbitration:
|
|
126
|
-
represent:
|
|
140
|
+
accept_chargeback: Increase::Simulations::CardDisputeActionParams::Visa::AcceptChargeback,
|
|
141
|
+
accept_user_submission: Increase::Simulations::CardDisputeActionParams::Visa::AcceptUserSubmission,
|
|
142
|
+
decline_user_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::DeclineUserPrearbitration,
|
|
143
|
+
receive_merchant_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::ReceiveMerchantPrearbitration,
|
|
144
|
+
represent: Increase::Simulations::CardDisputeActionParams::Visa::Represent,
|
|
127
145
|
request_further_information: Increase::Simulations::CardDisputeActionParams::Visa::RequestFurtherInformation,
|
|
128
|
-
time_out_chargeback:
|
|
129
|
-
time_out_merchant_prearbitration:
|
|
130
|
-
time_out_representment:
|
|
131
|
-
time_out_user_prearbitration:
|
|
146
|
+
time_out_chargeback: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutChargeback,
|
|
147
|
+
time_out_merchant_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutMerchantPrearbitration,
|
|
148
|
+
time_out_representment: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutRepresentment,
|
|
149
|
+
time_out_user_prearbitration: Increase::Simulations::CardDisputeActionParams::Visa::TimeOutUserPrearbitration
|
|
132
150
|
}
|
|
133
151
|
|
|
134
152
|
type action =
|
|
@@ -179,6 +197,46 @@ module Increase
|
|
|
179
197
|
def self?.values: -> ::Array[Increase::Models::Simulations::CardDisputeActionParams::Visa::action]
|
|
180
198
|
end
|
|
181
199
|
|
|
200
|
+
type accept_chargeback = { }
|
|
201
|
+
|
|
202
|
+
class AcceptChargeback < Increase::Internal::Type::BaseModel
|
|
203
|
+
def initialize: -> void
|
|
204
|
+
|
|
205
|
+
def to_hash: -> { }
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
type accept_user_submission = { }
|
|
209
|
+
|
|
210
|
+
class AcceptUserSubmission < Increase::Internal::Type::BaseModel
|
|
211
|
+
def initialize: -> void
|
|
212
|
+
|
|
213
|
+
def to_hash: -> { }
|
|
214
|
+
end
|
|
215
|
+
|
|
216
|
+
type decline_user_prearbitration = { }
|
|
217
|
+
|
|
218
|
+
class DeclineUserPrearbitration < Increase::Internal::Type::BaseModel
|
|
219
|
+
def initialize: -> void
|
|
220
|
+
|
|
221
|
+
def to_hash: -> { }
|
|
222
|
+
end
|
|
223
|
+
|
|
224
|
+
type receive_merchant_prearbitration = { }
|
|
225
|
+
|
|
226
|
+
class ReceiveMerchantPrearbitration < Increase::Internal::Type::BaseModel
|
|
227
|
+
def initialize: -> void
|
|
228
|
+
|
|
229
|
+
def to_hash: -> { }
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
type represent = { }
|
|
233
|
+
|
|
234
|
+
class Represent < Increase::Internal::Type::BaseModel
|
|
235
|
+
def initialize: -> void
|
|
236
|
+
|
|
237
|
+
def to_hash: -> { }
|
|
238
|
+
end
|
|
239
|
+
|
|
182
240
|
type request_further_information = { reason: String }
|
|
183
241
|
|
|
184
242
|
class RequestFurtherInformation < Increase::Internal::Type::BaseModel
|
|
@@ -188,6 +246,38 @@ module Increase
|
|
|
188
246
|
|
|
189
247
|
def to_hash: -> { reason: String }
|
|
190
248
|
end
|
|
249
|
+
|
|
250
|
+
type time_out_chargeback = { }
|
|
251
|
+
|
|
252
|
+
class TimeOutChargeback < Increase::Internal::Type::BaseModel
|
|
253
|
+
def initialize: -> void
|
|
254
|
+
|
|
255
|
+
def to_hash: -> { }
|
|
256
|
+
end
|
|
257
|
+
|
|
258
|
+
type time_out_merchant_prearbitration = { }
|
|
259
|
+
|
|
260
|
+
class TimeOutMerchantPrearbitration < Increase::Internal::Type::BaseModel
|
|
261
|
+
def initialize: -> void
|
|
262
|
+
|
|
263
|
+
def to_hash: -> { }
|
|
264
|
+
end
|
|
265
|
+
|
|
266
|
+
type time_out_representment = { }
|
|
267
|
+
|
|
268
|
+
class TimeOutRepresentment < Increase::Internal::Type::BaseModel
|
|
269
|
+
def initialize: -> void
|
|
270
|
+
|
|
271
|
+
def to_hash: -> { }
|
|
272
|
+
end
|
|
273
|
+
|
|
274
|
+
type time_out_user_prearbitration = { }
|
|
275
|
+
|
|
276
|
+
class TimeOutUserPrearbitration < Increase::Internal::Type::BaseModel
|
|
277
|
+
def initialize: -> void
|
|
278
|
+
|
|
279
|
+
def to_hash: -> { }
|
|
280
|
+
end
|
|
191
281
|
end
|
|
192
282
|
end
|
|
193
283
|
end
|
|
@@ -137,7 +137,7 @@ module Increase
|
|
|
137
137
|
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
|
138
138
|
interest_payment: Increase::Transaction::Source::InterestPayment?,
|
|
139
139
|
internal_source: Increase::Transaction::Source::InternalSource?,
|
|
140
|
-
other:
|
|
140
|
+
other: Increase::Transaction::Source::Other?,
|
|
141
141
|
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
|
142
142
|
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
|
143
143
|
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
|
@@ -208,7 +208,7 @@ module Increase
|
|
|
208
208
|
|
|
209
209
|
attr_accessor internal_source: Increase::Transaction::Source::InternalSource?
|
|
210
210
|
|
|
211
|
-
attr_accessor other:
|
|
211
|
+
attr_accessor other: Increase::Transaction::Source::Other?
|
|
212
212
|
|
|
213
213
|
attr_accessor real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?
|
|
214
214
|
|
|
@@ -252,7 +252,7 @@ module Increase
|
|
|
252
252
|
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
|
253
253
|
interest_payment: Increase::Transaction::Source::InterestPayment?,
|
|
254
254
|
internal_source: Increase::Transaction::Source::InternalSource?,
|
|
255
|
-
other:
|
|
255
|
+
other: Increase::Transaction::Source::Other?,
|
|
256
256
|
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
|
257
257
|
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
|
258
258
|
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
|
@@ -292,7 +292,7 @@ module Increase
|
|
|
292
292
|
inbound_wire_transfer_reversal: Increase::Transaction::Source::InboundWireTransferReversal?,
|
|
293
293
|
interest_payment: Increase::Transaction::Source::InterestPayment?,
|
|
294
294
|
internal_source: Increase::Transaction::Source::InternalSource?,
|
|
295
|
-
other:
|
|
295
|
+
other: Increase::Transaction::Source::Other?,
|
|
296
296
|
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
|
297
297
|
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
|
298
298
|
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
|
@@ -1295,26 +1295,26 @@ module Increase
|
|
|
1295
1295
|
type network_details =
|
|
1296
1296
|
{
|
|
1297
1297
|
category: Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category,
|
|
1298
|
-
pulse:
|
|
1298
|
+
pulse: Increase::Transaction::Source::CardFinancial::NetworkDetails::Pulse?,
|
|
1299
1299
|
visa: Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa?
|
|
1300
1300
|
}
|
|
1301
1301
|
|
|
1302
1302
|
class NetworkDetails < Increase::Internal::Type::BaseModel
|
|
1303
1303
|
attr_accessor category: Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category
|
|
1304
1304
|
|
|
1305
|
-
attr_accessor pulse:
|
|
1305
|
+
attr_accessor pulse: Increase::Transaction::Source::CardFinancial::NetworkDetails::Pulse?
|
|
1306
1306
|
|
|
1307
1307
|
attr_accessor visa: Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa?
|
|
1308
1308
|
|
|
1309
1309
|
def initialize: (
|
|
1310
1310
|
category: Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category,
|
|
1311
|
-
pulse:
|
|
1311
|
+
pulse: Increase::Transaction::Source::CardFinancial::NetworkDetails::Pulse?,
|
|
1312
1312
|
visa: Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa?
|
|
1313
1313
|
) -> void
|
|
1314
1314
|
|
|
1315
1315
|
def to_hash: -> {
|
|
1316
1316
|
category: Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category,
|
|
1317
|
-
pulse:
|
|
1317
|
+
pulse: Increase::Transaction::Source::CardFinancial::NetworkDetails::Pulse?,
|
|
1318
1318
|
visa: Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa?
|
|
1319
1319
|
}
|
|
1320
1320
|
|
|
@@ -1332,6 +1332,14 @@ module Increase
|
|
|
1332
1332
|
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category]
|
|
1333
1333
|
end
|
|
1334
1334
|
|
|
1335
|
+
type pulse = { }
|
|
1336
|
+
|
|
1337
|
+
class Pulse < Increase::Internal::Type::BaseModel
|
|
1338
|
+
def initialize: -> void
|
|
1339
|
+
|
|
1340
|
+
def to_hash: -> { }
|
|
1341
|
+
end
|
|
1342
|
+
|
|
1335
1343
|
type visa =
|
|
1336
1344
|
{
|
|
1337
1345
|
electronic_commerce_indicator: Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Visa::electronic_commerce_indicator?,
|
|
@@ -5164,6 +5172,14 @@ module Increase
|
|
|
5164
5172
|
end
|
|
5165
5173
|
end
|
|
5166
5174
|
|
|
5175
|
+
type other = { }
|
|
5176
|
+
|
|
5177
|
+
class Other < Increase::Internal::Type::BaseModel
|
|
5178
|
+
def initialize: -> void
|
|
5179
|
+
|
|
5180
|
+
def to_hash: -> { }
|
|
5181
|
+
end
|
|
5182
|
+
|
|
5167
5183
|
type real_time_payments_transfer_acknowledgement =
|
|
5168
5184
|
{
|
|
5169
5185
|
amount: Integer,
|
|
@@ -9,7 +9,7 @@ module Increase
|
|
|
9
9
|
?bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
|
|
10
10
|
?entity_csv: Increase::ExportCreateParams::EntityCsv,
|
|
11
11
|
?transaction_csv: Increase::ExportCreateParams::TransactionCsv,
|
|
12
|
-
?vendor_csv:
|
|
12
|
+
?vendor_csv: Increase::ExportCreateParams::VendorCsv,
|
|
13
13
|
?request_options: Increase::request_opts
|
|
14
14
|
) -> Increase::Export
|
|
15
15
|
|