increase 1.107.1 → 1.108.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 +3 -0
- data/lib/increase/models/card_payment.rb +51 -3
- data/lib/increase/models/declined_transaction.rb +12 -1
- data/lib/increase/models/pending_transaction.rb +12 -1
- data/lib/increase/models/real_time_decision.rb +12 -1
- data/lib/increase/models/transaction.rb +18 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_dispute.rbi +3 -0
- data/rbi/increase/models/card_payment.rbi +80 -0
- data/rbi/increase/models/declined_transaction.rbi +15 -0
- data/rbi/increase/models/pending_transaction.rbi +15 -0
- data/rbi/increase/models/real_time_decision.rbi +15 -0
- data/rbi/increase/models/transaction.rbi +29 -0
- data/sig/increase/models/card_dispute.rbs +4 -1
- data/sig/increase/models/card_payment.rbs +47 -8
- data/sig/increase/models/declined_transaction.rbs +9 -1
- data/sig/increase/models/pending_transaction.rbs +9 -1
- data/sig/increase/models/real_time_decision.rbs +9 -1
- data/sig/increase/models/transaction.rbs +17 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11f9b5cf6df554d28915742a5d5bfeea40b3bb6c81092418e7073863ef13cd75
|
|
4
|
+
data.tar.gz: 40dec1ec769d828c79212abd22bbd25689a21e05071b4b12c8fb306986721aba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa6552c35023e9b07f58bc455520ac7ef64e9d11edfc2be93a32e56857f24ee2296ae1a25d6b1675662707b198b84717e037745ab7ed72fbbc2ed1db6f7942d0
|
|
7
|
+
data.tar.gz: adcec924c3d01550c3537417e36de0624d9ecffce3b6fa236e73eea4245a8a01fcfc8c3b56930d234ef7d59564172a49747a31e3b8458734c2aa7603c513d756
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.108.0 (2025-10-14)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.107.1...v1.108.0](https://github.com/Increase/increase-ruby/compare/v1.107.1...v1.108.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([6ccf3d0](https://github.com/Increase/increase-ruby/commit/6ccf3d06f86ceb38b2102577fa126fcb3be51015))
|
|
10
|
+
|
|
3
11
|
## 1.107.1 (2025-10-14)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.107.0...v1.107.1](https://github.com/Increase/increase-ruby/compare/v1.107.0...v1.107.1)
|
data/README.md
CHANGED
|
@@ -1321,6 +1321,12 @@ module Increase
|
|
|
1321
1321
|
required :category,
|
|
1322
1322
|
enum: -> { Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category }
|
|
1323
1323
|
|
|
1324
|
+
# @!attribute pulse
|
|
1325
|
+
# Fields specific to the `pulse` network.
|
|
1326
|
+
#
|
|
1327
|
+
# @return [Object, nil]
|
|
1328
|
+
required :pulse, Increase::Internal::Type::Unknown, nil?: true
|
|
1329
|
+
|
|
1324
1330
|
# @!attribute visa
|
|
1325
1331
|
# Fields specific to the `visa` network.
|
|
1326
1332
|
#
|
|
@@ -1331,11 +1337,13 @@ module Increase
|
|
|
1331
1337
|
},
|
|
1332
1338
|
nil?: true
|
|
1333
1339
|
|
|
1334
|
-
# @!method initialize(category:, visa:)
|
|
1340
|
+
# @!method initialize(category:, pulse:, visa:)
|
|
1335
1341
|
# Fields specific to the `network`.
|
|
1336
1342
|
#
|
|
1337
1343
|
# @param category [Symbol, Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Category] The payment network used to process this card authorization.
|
|
1338
1344
|
#
|
|
1345
|
+
# @param pulse [Object, nil] Fields specific to the `pulse` network.
|
|
1346
|
+
#
|
|
1339
1347
|
# @param visa [Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
|
|
1340
1348
|
|
|
1341
1349
|
# The payment network used to process this card authorization.
|
|
@@ -1347,6 +1355,9 @@ module Increase
|
|
|
1347
1355
|
# Visa
|
|
1348
1356
|
VISA = :visa
|
|
1349
1357
|
|
|
1358
|
+
# Pulse
|
|
1359
|
+
PULSE = :pulse
|
|
1360
|
+
|
|
1350
1361
|
# @!method self.values
|
|
1351
1362
|
# @return [Array<Symbol>]
|
|
1352
1363
|
end
|
|
@@ -1851,6 +1862,9 @@ module Increase
|
|
|
1851
1862
|
# Visa
|
|
1852
1863
|
VISA = :visa
|
|
1853
1864
|
|
|
1865
|
+
# Pulse
|
|
1866
|
+
PULSE = :pulse
|
|
1867
|
+
|
|
1854
1868
|
# @!method self.values
|
|
1855
1869
|
# @return [Array<Symbol>]
|
|
1856
1870
|
end
|
|
@@ -2568,6 +2582,12 @@ module Increase
|
|
|
2568
2582
|
# @return [Symbol, Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Category]
|
|
2569
2583
|
required :category, enum: -> { Increase::CardPayment::Element::CardDecline::NetworkDetails::Category }
|
|
2570
2584
|
|
|
2585
|
+
# @!attribute pulse
|
|
2586
|
+
# Fields specific to the `pulse` network.
|
|
2587
|
+
#
|
|
2588
|
+
# @return [Object, nil]
|
|
2589
|
+
required :pulse, Increase::Internal::Type::Unknown, nil?: true
|
|
2590
|
+
|
|
2571
2591
|
# @!attribute visa
|
|
2572
2592
|
# Fields specific to the `visa` network.
|
|
2573
2593
|
#
|
|
@@ -2578,11 +2598,13 @@ module Increase
|
|
|
2578
2598
|
},
|
|
2579
2599
|
nil?: true
|
|
2580
2600
|
|
|
2581
|
-
# @!method initialize(category:, visa:)
|
|
2601
|
+
# @!method initialize(category:, pulse:, visa:)
|
|
2582
2602
|
# Fields specific to the `network`.
|
|
2583
2603
|
#
|
|
2584
2604
|
# @param category [Symbol, Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Category] The payment network used to process this card authorization.
|
|
2585
2605
|
#
|
|
2606
|
+
# @param pulse [Object, nil] Fields specific to the `pulse` network.
|
|
2607
|
+
#
|
|
2586
2608
|
# @param visa [Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
|
|
2587
2609
|
|
|
2588
2610
|
# The payment network used to process this card authorization.
|
|
@@ -2594,6 +2616,9 @@ module Increase
|
|
|
2594
2616
|
# Visa
|
|
2595
2617
|
VISA = :visa
|
|
2596
2618
|
|
|
2619
|
+
# Pulse
|
|
2620
|
+
PULSE = :pulse
|
|
2621
|
+
|
|
2597
2622
|
# @!method self.values
|
|
2598
2623
|
# @return [Array<Symbol>]
|
|
2599
2624
|
end
|
|
@@ -3201,6 +3226,9 @@ module Increase
|
|
|
3201
3226
|
# Visa
|
|
3202
3227
|
VISA = :visa
|
|
3203
3228
|
|
|
3229
|
+
# Pulse
|
|
3230
|
+
PULSE = :pulse
|
|
3231
|
+
|
|
3204
3232
|
# @!method self.values
|
|
3205
3233
|
# @return [Array<Symbol>]
|
|
3206
3234
|
end
|
|
@@ -3819,6 +3847,9 @@ module Increase
|
|
|
3819
3847
|
# Visa
|
|
3820
3848
|
VISA = :visa
|
|
3821
3849
|
|
|
3850
|
+
# Pulse
|
|
3851
|
+
PULSE = :pulse
|
|
3852
|
+
|
|
3822
3853
|
# @!method self.values
|
|
3823
3854
|
# @return [Array<Symbol>]
|
|
3824
3855
|
end
|
|
@@ -5458,6 +5489,9 @@ module Increase
|
|
|
5458
5489
|
# Visa
|
|
5459
5490
|
VISA = :visa
|
|
5460
5491
|
|
|
5492
|
+
# Pulse
|
|
5493
|
+
PULSE = :pulse
|
|
5494
|
+
|
|
5461
5495
|
# @!method self.values
|
|
5462
5496
|
# @return [Array<Symbol>]
|
|
5463
5497
|
end
|
|
@@ -5910,6 +5944,9 @@ module Increase
|
|
|
5910
5944
|
# Visa
|
|
5911
5945
|
VISA = :visa
|
|
5912
5946
|
|
|
5947
|
+
# Pulse
|
|
5948
|
+
PULSE = :pulse
|
|
5949
|
+
|
|
5913
5950
|
# @!method self.values
|
|
5914
5951
|
# @return [Array<Symbol>]
|
|
5915
5952
|
end
|
|
@@ -7584,6 +7621,12 @@ module Increase
|
|
|
7584
7621
|
# @return [Symbol, Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Category]
|
|
7585
7622
|
required :category, enum: -> { Increase::CardPayment::Element::CardValidation::NetworkDetails::Category }
|
|
7586
7623
|
|
|
7624
|
+
# @!attribute pulse
|
|
7625
|
+
# Fields specific to the `pulse` network.
|
|
7626
|
+
#
|
|
7627
|
+
# @return [Object, nil]
|
|
7628
|
+
required :pulse, Increase::Internal::Type::Unknown, nil?: true
|
|
7629
|
+
|
|
7587
7630
|
# @!attribute visa
|
|
7588
7631
|
# Fields specific to the `visa` network.
|
|
7589
7632
|
#
|
|
@@ -7594,11 +7637,13 @@ module Increase
|
|
|
7594
7637
|
},
|
|
7595
7638
|
nil?: true
|
|
7596
7639
|
|
|
7597
|
-
# @!method initialize(category:, visa:)
|
|
7640
|
+
# @!method initialize(category:, pulse:, visa:)
|
|
7598
7641
|
# Fields specific to the `network`.
|
|
7599
7642
|
#
|
|
7600
7643
|
# @param category [Symbol, Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Category] The payment network used to process this card authorization.
|
|
7601
7644
|
#
|
|
7645
|
+
# @param pulse [Object, nil] Fields specific to the `pulse` network.
|
|
7646
|
+
#
|
|
7602
7647
|
# @param visa [Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
|
|
7603
7648
|
|
|
7604
7649
|
# The payment network used to process this card authorization.
|
|
@@ -7610,6 +7655,9 @@ module Increase
|
|
|
7610
7655
|
# Visa
|
|
7611
7656
|
VISA = :visa
|
|
7612
7657
|
|
|
7658
|
+
# Pulse
|
|
7659
|
+
PULSE = :pulse
|
|
7660
|
+
|
|
7613
7661
|
# @!method self.values
|
|
7614
7662
|
# @return [Array<Symbol>]
|
|
7615
7663
|
end
|
|
@@ -1142,6 +1142,12 @@ module Increase
|
|
|
1142
1142
|
required :category,
|
|
1143
1143
|
enum: -> { Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category }
|
|
1144
1144
|
|
|
1145
|
+
# @!attribute pulse
|
|
1146
|
+
# Fields specific to the `pulse` network.
|
|
1147
|
+
#
|
|
1148
|
+
# @return [Object, nil]
|
|
1149
|
+
required :pulse, Increase::Internal::Type::Unknown, nil?: true
|
|
1150
|
+
|
|
1145
1151
|
# @!attribute visa
|
|
1146
1152
|
# Fields specific to the `visa` network.
|
|
1147
1153
|
#
|
|
@@ -1150,11 +1156,13 @@ module Increase
|
|
|
1150
1156
|
-> { Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa },
|
|
1151
1157
|
nil?: true
|
|
1152
1158
|
|
|
1153
|
-
# @!method initialize(category:, visa:)
|
|
1159
|
+
# @!method initialize(category:, pulse:, visa:)
|
|
1154
1160
|
# Fields specific to the `network`.
|
|
1155
1161
|
#
|
|
1156
1162
|
# @param category [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category] The payment network used to process this card authorization.
|
|
1157
1163
|
#
|
|
1164
|
+
# @param pulse [Object, nil] Fields specific to the `pulse` network.
|
|
1165
|
+
#
|
|
1158
1166
|
# @param visa [Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
|
|
1159
1167
|
|
|
1160
1168
|
# The payment network used to process this card authorization.
|
|
@@ -1166,6 +1174,9 @@ module Increase
|
|
|
1166
1174
|
# Visa
|
|
1167
1175
|
VISA = :visa
|
|
1168
1176
|
|
|
1177
|
+
# Pulse
|
|
1178
|
+
PULSE = :pulse
|
|
1179
|
+
|
|
1169
1180
|
# @!method self.values
|
|
1170
1181
|
# @return [Array<Symbol>]
|
|
1171
1182
|
end
|
|
@@ -1180,6 +1180,12 @@ module Increase
|
|
|
1180
1180
|
required :category,
|
|
1181
1181
|
enum: -> { Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category }
|
|
1182
1182
|
|
|
1183
|
+
# @!attribute pulse
|
|
1184
|
+
# Fields specific to the `pulse` network.
|
|
1185
|
+
#
|
|
1186
|
+
# @return [Object, nil]
|
|
1187
|
+
required :pulse, Increase::Internal::Type::Unknown, nil?: true
|
|
1188
|
+
|
|
1183
1189
|
# @!attribute visa
|
|
1184
1190
|
# Fields specific to the `visa` network.
|
|
1185
1191
|
#
|
|
@@ -1188,11 +1194,13 @@ module Increase
|
|
|
1188
1194
|
-> { Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa },
|
|
1189
1195
|
nil?: true
|
|
1190
1196
|
|
|
1191
|
-
# @!method initialize(category:, visa:)
|
|
1197
|
+
# @!method initialize(category:, pulse:, visa:)
|
|
1192
1198
|
# Fields specific to the `network`.
|
|
1193
1199
|
#
|
|
1194
1200
|
# @param category [Symbol, Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category] The payment network used to process this card authorization.
|
|
1195
1201
|
#
|
|
1202
|
+
# @param pulse [Object, nil] Fields specific to the `pulse` network.
|
|
1203
|
+
#
|
|
1196
1204
|
# @param visa [Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
|
|
1197
1205
|
|
|
1198
1206
|
# The payment network used to process this card authorization.
|
|
@@ -1204,6 +1212,9 @@ module Increase
|
|
|
1204
1212
|
# Visa
|
|
1205
1213
|
VISA = :visa
|
|
1206
1214
|
|
|
1215
|
+
# Pulse
|
|
1216
|
+
PULSE = :pulse
|
|
1217
|
+
|
|
1207
1218
|
# @!method self.values
|
|
1208
1219
|
# @return [Array<Symbol>]
|
|
1209
1220
|
end
|
|
@@ -902,6 +902,12 @@ module Increase
|
|
|
902
902
|
# @return [Symbol, Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Category]
|
|
903
903
|
required :category, enum: -> { Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category }
|
|
904
904
|
|
|
905
|
+
# @!attribute pulse
|
|
906
|
+
# Fields specific to the `pulse` network.
|
|
907
|
+
#
|
|
908
|
+
# @return [Object, nil]
|
|
909
|
+
required :pulse, Increase::Internal::Type::Unknown, nil?: true
|
|
910
|
+
|
|
905
911
|
# @!attribute visa
|
|
906
912
|
# Fields specific to the `visa` network.
|
|
907
913
|
#
|
|
@@ -912,11 +918,13 @@ module Increase
|
|
|
912
918
|
},
|
|
913
919
|
nil?: true
|
|
914
920
|
|
|
915
|
-
# @!method initialize(category:, visa:)
|
|
921
|
+
# @!method initialize(category:, pulse:, visa:)
|
|
916
922
|
# Fields specific to the `network`.
|
|
917
923
|
#
|
|
918
924
|
# @param category [Symbol, Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Category] The payment network used to process this card authorization.
|
|
919
925
|
#
|
|
926
|
+
# @param pulse [Object, nil] Fields specific to the `pulse` network.
|
|
927
|
+
#
|
|
920
928
|
# @param visa [Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
|
|
921
929
|
|
|
922
930
|
# The payment network used to process this card authorization.
|
|
@@ -928,6 +936,9 @@ module Increase
|
|
|
928
936
|
# Visa
|
|
929
937
|
VISA = :visa
|
|
930
938
|
|
|
939
|
+
# Pulse
|
|
940
|
+
PULSE = :pulse
|
|
941
|
+
|
|
931
942
|
# @!method self.values
|
|
932
943
|
# @return [Array<Symbol>]
|
|
933
944
|
end
|
|
@@ -1192,6 +1192,9 @@ module Increase
|
|
|
1192
1192
|
# Visa: details will be under the `visa` object.
|
|
1193
1193
|
VISA = :visa
|
|
1194
1194
|
|
|
1195
|
+
# Pulse: details will be under the `pulse` object.
|
|
1196
|
+
PULSE = :pulse
|
|
1197
|
+
|
|
1195
1198
|
# @!method self.values
|
|
1196
1199
|
# @return [Array<Symbol>]
|
|
1197
1200
|
end
|
|
@@ -1962,6 +1965,12 @@ module Increase
|
|
|
1962
1965
|
# @return [Symbol, Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Category]
|
|
1963
1966
|
required :category, enum: -> { Increase::Transaction::Source::CardFinancial::NetworkDetails::Category }
|
|
1964
1967
|
|
|
1968
|
+
# @!attribute pulse
|
|
1969
|
+
# Fields specific to the `pulse` network.
|
|
1970
|
+
#
|
|
1971
|
+
# @return [Object, nil]
|
|
1972
|
+
required :pulse, Increase::Internal::Type::Unknown, nil?: true
|
|
1973
|
+
|
|
1965
1974
|
# @!attribute visa
|
|
1966
1975
|
# Fields specific to the `visa` network.
|
|
1967
1976
|
#
|
|
@@ -1972,11 +1981,13 @@ module Increase
|
|
|
1972
1981
|
},
|
|
1973
1982
|
nil?: true
|
|
1974
1983
|
|
|
1975
|
-
# @!method initialize(category:, visa:)
|
|
1984
|
+
# @!method initialize(category:, pulse:, visa:)
|
|
1976
1985
|
# Fields specific to the `network`.
|
|
1977
1986
|
#
|
|
1978
1987
|
# @param category [Symbol, Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Category] The payment network used to process this card authorization.
|
|
1979
1988
|
#
|
|
1989
|
+
# @param pulse [Object, nil] Fields specific to the `pulse` network.
|
|
1990
|
+
#
|
|
1980
1991
|
# @param visa [Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
|
|
1981
1992
|
|
|
1982
1993
|
# The payment network used to process this card authorization.
|
|
@@ -1988,6 +1999,9 @@ module Increase
|
|
|
1988
1999
|
# Visa
|
|
1989
2000
|
VISA = :visa
|
|
1990
2001
|
|
|
2002
|
+
# Pulse
|
|
2003
|
+
PULSE = :pulse
|
|
2004
|
+
|
|
1991
2005
|
# @!method self.values
|
|
1992
2006
|
# @return [Array<Symbol>]
|
|
1993
2007
|
end
|
|
@@ -4222,6 +4236,9 @@ module Increase
|
|
|
4222
4236
|
# Visa
|
|
4223
4237
|
VISA = :visa
|
|
4224
4238
|
|
|
4239
|
+
# Pulse
|
|
4240
|
+
PULSE = :pulse
|
|
4241
|
+
|
|
4225
4242
|
# @!method self.values
|
|
4226
4243
|
# @return [Array<Symbol>]
|
|
4227
4244
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -244,6 +244,9 @@ module Increase
|
|
|
244
244
|
# Visa: details will be under the `visa` object.
|
|
245
245
|
VISA = T.let(:visa, Increase::CardDispute::Network::TaggedSymbol)
|
|
246
246
|
|
|
247
|
+
# Pulse: details will be under the `pulse` object.
|
|
248
|
+
PULSE = T.let(:pulse, Increase::CardDispute::Network::TaggedSymbol)
|
|
249
|
+
|
|
247
250
|
sig do
|
|
248
251
|
override.returns(
|
|
249
252
|
T::Array[Increase::CardDispute::Network::TaggedSymbol]
|
|
@@ -2393,6 +2393,10 @@ module Increase
|
|
|
2393
2393
|
end
|
|
2394
2394
|
attr_accessor :category
|
|
2395
2395
|
|
|
2396
|
+
# Fields specific to the `pulse` network.
|
|
2397
|
+
sig { returns(T.nilable(T.anything)) }
|
|
2398
|
+
attr_accessor :pulse
|
|
2399
|
+
|
|
2396
2400
|
# Fields specific to the `visa` network.
|
|
2397
2401
|
sig do
|
|
2398
2402
|
returns(
|
|
@@ -2418,6 +2422,7 @@ module Increase
|
|
|
2418
2422
|
params(
|
|
2419
2423
|
category:
|
|
2420
2424
|
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::OrSymbol,
|
|
2425
|
+
pulse: T.nilable(T.anything),
|
|
2421
2426
|
visa:
|
|
2422
2427
|
T.nilable(
|
|
2423
2428
|
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::OrHash
|
|
@@ -2427,6 +2432,8 @@ module Increase
|
|
|
2427
2432
|
def self.new(
|
|
2428
2433
|
# The payment network used to process this card authorization.
|
|
2429
2434
|
category:,
|
|
2435
|
+
# Fields specific to the `pulse` network.
|
|
2436
|
+
pulse:,
|
|
2430
2437
|
# Fields specific to the `visa` network.
|
|
2431
2438
|
visa:
|
|
2432
2439
|
)
|
|
@@ -2437,6 +2444,7 @@ module Increase
|
|
|
2437
2444
|
{
|
|
2438
2445
|
category:
|
|
2439
2446
|
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::TaggedSymbol,
|
|
2447
|
+
pulse: T.nilable(T.anything),
|
|
2440
2448
|
visa:
|
|
2441
2449
|
T.nilable(
|
|
2442
2450
|
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa
|
|
@@ -2467,6 +2475,13 @@ module Increase
|
|
|
2467
2475
|
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::TaggedSymbol
|
|
2468
2476
|
)
|
|
2469
2477
|
|
|
2478
|
+
# Pulse
|
|
2479
|
+
PULSE =
|
|
2480
|
+
T.let(
|
|
2481
|
+
:pulse,
|
|
2482
|
+
Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::TaggedSymbol
|
|
2483
|
+
)
|
|
2484
|
+
|
|
2470
2485
|
sig do
|
|
2471
2486
|
override.returns(
|
|
2472
2487
|
T::Array[
|
|
@@ -3502,6 +3517,13 @@ module Increase
|
|
|
3502
3517
|
Increase::CardPayment::Element::CardAuthorizationExpiration::Network::TaggedSymbol
|
|
3503
3518
|
)
|
|
3504
3519
|
|
|
3520
|
+
# Pulse
|
|
3521
|
+
PULSE =
|
|
3522
|
+
T.let(
|
|
3523
|
+
:pulse,
|
|
3524
|
+
Increase::CardPayment::Element::CardAuthorizationExpiration::Network::TaggedSymbol
|
|
3525
|
+
)
|
|
3526
|
+
|
|
3505
3527
|
sig do
|
|
3506
3528
|
override.returns(
|
|
3507
3529
|
T::Array[
|
|
@@ -4782,6 +4804,10 @@ module Increase
|
|
|
4782
4804
|
end
|
|
4783
4805
|
attr_accessor :category
|
|
4784
4806
|
|
|
4807
|
+
# Fields specific to the `pulse` network.
|
|
4808
|
+
sig { returns(T.nilable(T.anything)) }
|
|
4809
|
+
attr_accessor :pulse
|
|
4810
|
+
|
|
4785
4811
|
# Fields specific to the `visa` network.
|
|
4786
4812
|
sig do
|
|
4787
4813
|
returns(
|
|
@@ -4807,6 +4833,7 @@ module Increase
|
|
|
4807
4833
|
params(
|
|
4808
4834
|
category:
|
|
4809
4835
|
Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::OrSymbol,
|
|
4836
|
+
pulse: T.nilable(T.anything),
|
|
4810
4837
|
visa:
|
|
4811
4838
|
T.nilable(
|
|
4812
4839
|
Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::OrHash
|
|
@@ -4816,6 +4843,8 @@ module Increase
|
|
|
4816
4843
|
def self.new(
|
|
4817
4844
|
# The payment network used to process this card authorization.
|
|
4818
4845
|
category:,
|
|
4846
|
+
# Fields specific to the `pulse` network.
|
|
4847
|
+
pulse:,
|
|
4819
4848
|
# Fields specific to the `visa` network.
|
|
4820
4849
|
visa:
|
|
4821
4850
|
)
|
|
@@ -4826,6 +4855,7 @@ module Increase
|
|
|
4826
4855
|
{
|
|
4827
4856
|
category:
|
|
4828
4857
|
Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::TaggedSymbol,
|
|
4858
|
+
pulse: T.nilable(T.anything),
|
|
4829
4859
|
visa:
|
|
4830
4860
|
T.nilable(
|
|
4831
4861
|
Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa
|
|
@@ -4856,6 +4886,13 @@ module Increase
|
|
|
4856
4886
|
Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::TaggedSymbol
|
|
4857
4887
|
)
|
|
4858
4888
|
|
|
4889
|
+
# Pulse
|
|
4890
|
+
PULSE =
|
|
4891
|
+
T.let(
|
|
4892
|
+
:pulse,
|
|
4893
|
+
Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::TaggedSymbol
|
|
4894
|
+
)
|
|
4895
|
+
|
|
4859
4896
|
sig do
|
|
4860
4897
|
override.returns(
|
|
4861
4898
|
T::Array[
|
|
@@ -6123,6 +6160,13 @@ module Increase
|
|
|
6123
6160
|
Increase::CardPayment::Element::CardFuelConfirmation::Network::TaggedSymbol
|
|
6124
6161
|
)
|
|
6125
6162
|
|
|
6163
|
+
# Pulse
|
|
6164
|
+
PULSE =
|
|
6165
|
+
T.let(
|
|
6166
|
+
:pulse,
|
|
6167
|
+
Increase::CardPayment::Element::CardFuelConfirmation::Network::TaggedSymbol
|
|
6168
|
+
)
|
|
6169
|
+
|
|
6126
6170
|
sig do
|
|
6127
6171
|
override.returns(
|
|
6128
6172
|
T::Array[
|
|
@@ -7260,6 +7304,13 @@ module Increase
|
|
|
7260
7304
|
Increase::CardPayment::Element::CardIncrement::Network::TaggedSymbol
|
|
7261
7305
|
)
|
|
7262
7306
|
|
|
7307
|
+
# Pulse
|
|
7308
|
+
PULSE =
|
|
7309
|
+
T.let(
|
|
7310
|
+
:pulse,
|
|
7311
|
+
Increase::CardPayment::Element::CardIncrement::Network::TaggedSymbol
|
|
7312
|
+
)
|
|
7313
|
+
|
|
7263
7314
|
sig do
|
|
7264
7315
|
override.returns(
|
|
7265
7316
|
T::Array[
|
|
@@ -10136,6 +10187,13 @@ module Increase
|
|
|
10136
10187
|
Increase::CardPayment::Element::CardReversal::Network::TaggedSymbol
|
|
10137
10188
|
)
|
|
10138
10189
|
|
|
10190
|
+
# Pulse
|
|
10191
|
+
PULSE =
|
|
10192
|
+
T.let(
|
|
10193
|
+
:pulse,
|
|
10194
|
+
Increase::CardPayment::Element::CardReversal::Network::TaggedSymbol
|
|
10195
|
+
)
|
|
10196
|
+
|
|
10139
10197
|
sig do
|
|
10140
10198
|
override.returns(
|
|
10141
10199
|
T::Array[
|
|
@@ -10987,6 +11045,13 @@ module Increase
|
|
|
10987
11045
|
Increase::CardPayment::Element::CardSettlement::Network::TaggedSymbol
|
|
10988
11046
|
)
|
|
10989
11047
|
|
|
11048
|
+
# Pulse
|
|
11049
|
+
PULSE =
|
|
11050
|
+
T.let(
|
|
11051
|
+
:pulse,
|
|
11052
|
+
Increase::CardPayment::Element::CardSettlement::Network::TaggedSymbol
|
|
11053
|
+
)
|
|
11054
|
+
|
|
10990
11055
|
sig do
|
|
10991
11056
|
override.returns(
|
|
10992
11057
|
T::Array[
|
|
@@ -13967,6 +14032,10 @@ module Increase
|
|
|
13967
14032
|
end
|
|
13968
14033
|
attr_accessor :category
|
|
13969
14034
|
|
|
14035
|
+
# Fields specific to the `pulse` network.
|
|
14036
|
+
sig { returns(T.nilable(T.anything)) }
|
|
14037
|
+
attr_accessor :pulse
|
|
14038
|
+
|
|
13970
14039
|
# Fields specific to the `visa` network.
|
|
13971
14040
|
sig do
|
|
13972
14041
|
returns(
|
|
@@ -13992,6 +14061,7 @@ module Increase
|
|
|
13992
14061
|
params(
|
|
13993
14062
|
category:
|
|
13994
14063
|
Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::OrSymbol,
|
|
14064
|
+
pulse: T.nilable(T.anything),
|
|
13995
14065
|
visa:
|
|
13996
14066
|
T.nilable(
|
|
13997
14067
|
Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::OrHash
|
|
@@ -14001,6 +14071,8 @@ module Increase
|
|
|
14001
14071
|
def self.new(
|
|
14002
14072
|
# The payment network used to process this card authorization.
|
|
14003
14073
|
category:,
|
|
14074
|
+
# Fields specific to the `pulse` network.
|
|
14075
|
+
pulse:,
|
|
14004
14076
|
# Fields specific to the `visa` network.
|
|
14005
14077
|
visa:
|
|
14006
14078
|
)
|
|
@@ -14011,6 +14083,7 @@ module Increase
|
|
|
14011
14083
|
{
|
|
14012
14084
|
category:
|
|
14013
14085
|
Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::TaggedSymbol,
|
|
14086
|
+
pulse: T.nilable(T.anything),
|
|
14014
14087
|
visa:
|
|
14015
14088
|
T.nilable(
|
|
14016
14089
|
Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa
|
|
@@ -14041,6 +14114,13 @@ module Increase
|
|
|
14041
14114
|
Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::TaggedSymbol
|
|
14042
14115
|
)
|
|
14043
14116
|
|
|
14117
|
+
# Pulse
|
|
14118
|
+
PULSE =
|
|
14119
|
+
T.let(
|
|
14120
|
+
:pulse,
|
|
14121
|
+
Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::TaggedSymbol
|
|
14122
|
+
)
|
|
14123
|
+
|
|
14044
14124
|
sig do
|
|
14045
14125
|
override.returns(
|
|
14046
14126
|
T::Array[
|
|
@@ -2027,6 +2027,10 @@ module Increase
|
|
|
2027
2027
|
end
|
|
2028
2028
|
attr_accessor :category
|
|
2029
2029
|
|
|
2030
|
+
# Fields specific to the `pulse` network.
|
|
2031
|
+
sig { returns(T.nilable(T.anything)) }
|
|
2032
|
+
attr_accessor :pulse
|
|
2033
|
+
|
|
2030
2034
|
# Fields specific to the `visa` network.
|
|
2031
2035
|
sig do
|
|
2032
2036
|
returns(
|
|
@@ -2052,6 +2056,7 @@ module Increase
|
|
|
2052
2056
|
params(
|
|
2053
2057
|
category:
|
|
2054
2058
|
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::OrSymbol,
|
|
2059
|
+
pulse: T.nilable(T.anything),
|
|
2055
2060
|
visa:
|
|
2056
2061
|
T.nilable(
|
|
2057
2062
|
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::OrHash
|
|
@@ -2061,6 +2066,8 @@ module Increase
|
|
|
2061
2066
|
def self.new(
|
|
2062
2067
|
# The payment network used to process this card authorization.
|
|
2063
2068
|
category:,
|
|
2069
|
+
# Fields specific to the `pulse` network.
|
|
2070
|
+
pulse:,
|
|
2064
2071
|
# Fields specific to the `visa` network.
|
|
2065
2072
|
visa:
|
|
2066
2073
|
)
|
|
@@ -2071,6 +2078,7 @@ module Increase
|
|
|
2071
2078
|
{
|
|
2072
2079
|
category:
|
|
2073
2080
|
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::TaggedSymbol,
|
|
2081
|
+
pulse: T.nilable(T.anything),
|
|
2074
2082
|
visa:
|
|
2075
2083
|
T.nilable(
|
|
2076
2084
|
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa
|
|
@@ -2101,6 +2109,13 @@ module Increase
|
|
|
2101
2109
|
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::TaggedSymbol
|
|
2102
2110
|
)
|
|
2103
2111
|
|
|
2112
|
+
# Pulse
|
|
2113
|
+
PULSE =
|
|
2114
|
+
T.let(
|
|
2115
|
+
:pulse,
|
|
2116
|
+
Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::TaggedSymbol
|
|
2117
|
+
)
|
|
2118
|
+
|
|
2104
2119
|
sig do
|
|
2105
2120
|
override.returns(
|
|
2106
2121
|
T::Array[
|
|
@@ -2122,6 +2122,10 @@ module Increase
|
|
|
2122
2122
|
end
|
|
2123
2123
|
attr_accessor :category
|
|
2124
2124
|
|
|
2125
|
+
# Fields specific to the `pulse` network.
|
|
2126
|
+
sig { returns(T.nilable(T.anything)) }
|
|
2127
|
+
attr_accessor :pulse
|
|
2128
|
+
|
|
2125
2129
|
# Fields specific to the `visa` network.
|
|
2126
2130
|
sig do
|
|
2127
2131
|
returns(
|
|
@@ -2147,6 +2151,7 @@ module Increase
|
|
|
2147
2151
|
params(
|
|
2148
2152
|
category:
|
|
2149
2153
|
Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category::OrSymbol,
|
|
2154
|
+
pulse: T.nilable(T.anything),
|
|
2150
2155
|
visa:
|
|
2151
2156
|
T.nilable(
|
|
2152
2157
|
Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa::OrHash
|
|
@@ -2156,6 +2161,8 @@ module Increase
|
|
|
2156
2161
|
def self.new(
|
|
2157
2162
|
# The payment network used to process this card authorization.
|
|
2158
2163
|
category:,
|
|
2164
|
+
# Fields specific to the `pulse` network.
|
|
2165
|
+
pulse:,
|
|
2159
2166
|
# Fields specific to the `visa` network.
|
|
2160
2167
|
visa:
|
|
2161
2168
|
)
|
|
@@ -2166,6 +2173,7 @@ module Increase
|
|
|
2166
2173
|
{
|
|
2167
2174
|
category:
|
|
2168
2175
|
Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category::TaggedSymbol,
|
|
2176
|
+
pulse: T.nilable(T.anything),
|
|
2169
2177
|
visa:
|
|
2170
2178
|
T.nilable(
|
|
2171
2179
|
Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa
|
|
@@ -2196,6 +2204,13 @@ module Increase
|
|
|
2196
2204
|
Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category::TaggedSymbol
|
|
2197
2205
|
)
|
|
2198
2206
|
|
|
2207
|
+
# Pulse
|
|
2208
|
+
PULSE =
|
|
2209
|
+
T.let(
|
|
2210
|
+
:pulse,
|
|
2211
|
+
Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category::TaggedSymbol
|
|
2212
|
+
)
|
|
2213
|
+
|
|
2199
2214
|
sig do
|
|
2200
2215
|
override.returns(
|
|
2201
2216
|
T::Array[
|
|
@@ -1618,6 +1618,10 @@ module Increase
|
|
|
1618
1618
|
end
|
|
1619
1619
|
attr_accessor :category
|
|
1620
1620
|
|
|
1621
|
+
# Fields specific to the `pulse` network.
|
|
1622
|
+
sig { returns(T.nilable(T.anything)) }
|
|
1623
|
+
attr_accessor :pulse
|
|
1624
|
+
|
|
1621
1625
|
# Fields specific to the `visa` network.
|
|
1622
1626
|
sig do
|
|
1623
1627
|
returns(
|
|
@@ -1643,6 +1647,7 @@ module Increase
|
|
|
1643
1647
|
params(
|
|
1644
1648
|
category:
|
|
1645
1649
|
Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::OrSymbol,
|
|
1650
|
+
pulse: T.nilable(T.anything),
|
|
1646
1651
|
visa:
|
|
1647
1652
|
T.nilable(
|
|
1648
1653
|
Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa::OrHash
|
|
@@ -1652,6 +1657,8 @@ module Increase
|
|
|
1652
1657
|
def self.new(
|
|
1653
1658
|
# The payment network used to process this card authorization.
|
|
1654
1659
|
category:,
|
|
1660
|
+
# Fields specific to the `pulse` network.
|
|
1661
|
+
pulse:,
|
|
1655
1662
|
# Fields specific to the `visa` network.
|
|
1656
1663
|
visa:
|
|
1657
1664
|
)
|
|
@@ -1662,6 +1669,7 @@ module Increase
|
|
|
1662
1669
|
{
|
|
1663
1670
|
category:
|
|
1664
1671
|
Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::TaggedSymbol,
|
|
1672
|
+
pulse: T.nilable(T.anything),
|
|
1665
1673
|
visa:
|
|
1666
1674
|
T.nilable(
|
|
1667
1675
|
Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa
|
|
@@ -1692,6 +1700,13 @@ module Increase
|
|
|
1692
1700
|
Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::TaggedSymbol
|
|
1693
1701
|
)
|
|
1694
1702
|
|
|
1703
|
+
# Pulse
|
|
1704
|
+
PULSE =
|
|
1705
|
+
T.let(
|
|
1706
|
+
:pulse,
|
|
1707
|
+
Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category::TaggedSymbol
|
|
1708
|
+
)
|
|
1709
|
+
|
|
1695
1710
|
sig do
|
|
1696
1711
|
override.returns(
|
|
1697
1712
|
T::Array[
|
|
@@ -2418,6 +2418,13 @@ module Increase
|
|
|
2418
2418
|
Increase::Transaction::Source::CardDisputeFinancial::Network::TaggedSymbol
|
|
2419
2419
|
)
|
|
2420
2420
|
|
|
2421
|
+
# Pulse: details will be under the `pulse` object.
|
|
2422
|
+
PULSE =
|
|
2423
|
+
T.let(
|
|
2424
|
+
:pulse,
|
|
2425
|
+
Increase::Transaction::Source::CardDisputeFinancial::Network::TaggedSymbol
|
|
2426
|
+
)
|
|
2427
|
+
|
|
2421
2428
|
sig do
|
|
2422
2429
|
override.returns(
|
|
2423
2430
|
T::Array[
|
|
@@ -3811,6 +3818,10 @@ module Increase
|
|
|
3811
3818
|
end
|
|
3812
3819
|
attr_accessor :category
|
|
3813
3820
|
|
|
3821
|
+
# Fields specific to the `pulse` network.
|
|
3822
|
+
sig { returns(T.nilable(T.anything)) }
|
|
3823
|
+
attr_accessor :pulse
|
|
3824
|
+
|
|
3814
3825
|
# Fields specific to the `visa` network.
|
|
3815
3826
|
sig do
|
|
3816
3827
|
returns(
|
|
@@ -3836,6 +3847,7 @@ module Increase
|
|
|
3836
3847
|
params(
|
|
3837
3848
|
category:
|
|
3838
3849
|
Increase::Transaction::Source::CardFinancial::NetworkDetails::Category::OrSymbol,
|
|
3850
|
+
pulse: T.nilable(T.anything),
|
|
3839
3851
|
visa:
|
|
3840
3852
|
T.nilable(
|
|
3841
3853
|
Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa::OrHash
|
|
@@ -3845,6 +3857,8 @@ module Increase
|
|
|
3845
3857
|
def self.new(
|
|
3846
3858
|
# The payment network used to process this card authorization.
|
|
3847
3859
|
category:,
|
|
3860
|
+
# Fields specific to the `pulse` network.
|
|
3861
|
+
pulse:,
|
|
3848
3862
|
# Fields specific to the `visa` network.
|
|
3849
3863
|
visa:
|
|
3850
3864
|
)
|
|
@@ -3855,6 +3869,7 @@ module Increase
|
|
|
3855
3869
|
{
|
|
3856
3870
|
category:
|
|
3857
3871
|
Increase::Transaction::Source::CardFinancial::NetworkDetails::Category::TaggedSymbol,
|
|
3872
|
+
pulse: T.nilable(T.anything),
|
|
3858
3873
|
visa:
|
|
3859
3874
|
T.nilable(
|
|
3860
3875
|
Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa
|
|
@@ -3885,6 +3900,13 @@ module Increase
|
|
|
3885
3900
|
Increase::Transaction::Source::CardFinancial::NetworkDetails::Category::TaggedSymbol
|
|
3886
3901
|
)
|
|
3887
3902
|
|
|
3903
|
+
# Pulse
|
|
3904
|
+
PULSE =
|
|
3905
|
+
T.let(
|
|
3906
|
+
:pulse,
|
|
3907
|
+
Increase::Transaction::Source::CardFinancial::NetworkDetails::Category::TaggedSymbol
|
|
3908
|
+
)
|
|
3909
|
+
|
|
3888
3910
|
sig do
|
|
3889
3911
|
override.returns(
|
|
3890
3912
|
T::Array[
|
|
@@ -8034,6 +8056,13 @@ module Increase
|
|
|
8034
8056
|
Increase::Transaction::Source::CardSettlement::Network::TaggedSymbol
|
|
8035
8057
|
)
|
|
8036
8058
|
|
|
8059
|
+
# Pulse
|
|
8060
|
+
PULSE =
|
|
8061
|
+
T.let(
|
|
8062
|
+
:pulse,
|
|
8063
|
+
Increase::Transaction::Source::CardSettlement::Network::TaggedSymbol
|
|
8064
|
+
)
|
|
8065
|
+
|
|
8037
8066
|
sig do
|
|
8038
8067
|
override.returns(
|
|
8039
8068
|
T::Array[
|
|
@@ -109,7 +109,7 @@ module Increase
|
|
|
109
109
|
end
|
|
110
110
|
end
|
|
111
111
|
|
|
112
|
-
type network = :visa
|
|
112
|
+
type network = :visa | :pulse
|
|
113
113
|
|
|
114
114
|
module Network
|
|
115
115
|
extend Increase::Internal::Type::Enum
|
|
@@ -117,6 +117,9 @@ module Increase
|
|
|
117
117
|
# Visa: details will be under the `visa` object.
|
|
118
118
|
VISA: :visa
|
|
119
119
|
|
|
120
|
+
# Pulse: details will be under the `pulse` object.
|
|
121
|
+
PULSE: :pulse
|
|
122
|
+
|
|
120
123
|
def self?.values: -> ::Array[Increase::Models::CardDispute::network]
|
|
121
124
|
end
|
|
122
125
|
|
|
@@ -812,25 +812,30 @@ module Increase
|
|
|
812
812
|
type network_details =
|
|
813
813
|
{
|
|
814
814
|
category: Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category,
|
|
815
|
+
pulse: top?,
|
|
815
816
|
visa: Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa?
|
|
816
817
|
}
|
|
817
818
|
|
|
818
819
|
class NetworkDetails < Increase::Internal::Type::BaseModel
|
|
819
820
|
attr_accessor category: Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category
|
|
820
821
|
|
|
822
|
+
attr_accessor pulse: top?
|
|
823
|
+
|
|
821
824
|
attr_accessor visa: Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa?
|
|
822
825
|
|
|
823
826
|
def initialize: (
|
|
824
827
|
category: Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category,
|
|
828
|
+
pulse: top?,
|
|
825
829
|
visa: Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa?
|
|
826
830
|
) -> void
|
|
827
831
|
|
|
828
832
|
def to_hash: -> {
|
|
829
833
|
category: Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category,
|
|
834
|
+
pulse: top?,
|
|
830
835
|
visa: Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa?
|
|
831
836
|
}
|
|
832
837
|
|
|
833
|
-
type category = :visa
|
|
838
|
+
type category = :visa | :pulse
|
|
834
839
|
|
|
835
840
|
module Category
|
|
836
841
|
extend Increase::Internal::Type::Enum
|
|
@@ -838,6 +843,9 @@ module Increase
|
|
|
838
843
|
# Visa
|
|
839
844
|
VISA: :visa
|
|
840
845
|
|
|
846
|
+
# Pulse
|
|
847
|
+
PULSE: :pulse
|
|
848
|
+
|
|
841
849
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::category]
|
|
842
850
|
end
|
|
843
851
|
|
|
@@ -1267,7 +1275,7 @@ module Increase
|
|
|
1267
1275
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorizationExpiration::currency]
|
|
1268
1276
|
end
|
|
1269
1277
|
|
|
1270
|
-
type network = :visa
|
|
1278
|
+
type network = :visa | :pulse
|
|
1271
1279
|
|
|
1272
1280
|
module Network
|
|
1273
1281
|
extend Increase::Internal::Type::Enum
|
|
@@ -1275,6 +1283,9 @@ module Increase
|
|
|
1275
1283
|
# Visa
|
|
1276
1284
|
VISA: :visa
|
|
1277
1285
|
|
|
1286
|
+
# Pulse
|
|
1287
|
+
PULSE: :pulse
|
|
1288
|
+
|
|
1278
1289
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorizationExpiration::network]
|
|
1279
1290
|
end
|
|
1280
1291
|
|
|
@@ -1670,25 +1681,30 @@ module Increase
|
|
|
1670
1681
|
type network_details =
|
|
1671
1682
|
{
|
|
1672
1683
|
category: Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category,
|
|
1684
|
+
pulse: top?,
|
|
1673
1685
|
visa: Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa?
|
|
1674
1686
|
}
|
|
1675
1687
|
|
|
1676
1688
|
class NetworkDetails < Increase::Internal::Type::BaseModel
|
|
1677
1689
|
attr_accessor category: Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category
|
|
1678
1690
|
|
|
1691
|
+
attr_accessor pulse: top?
|
|
1692
|
+
|
|
1679
1693
|
attr_accessor visa: Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa?
|
|
1680
1694
|
|
|
1681
1695
|
def initialize: (
|
|
1682
1696
|
category: Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category,
|
|
1697
|
+
pulse: top?,
|
|
1683
1698
|
visa: Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa?
|
|
1684
1699
|
) -> void
|
|
1685
1700
|
|
|
1686
1701
|
def to_hash: -> {
|
|
1687
1702
|
category: Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category,
|
|
1703
|
+
pulse: top?,
|
|
1688
1704
|
visa: Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa?
|
|
1689
1705
|
}
|
|
1690
1706
|
|
|
1691
|
-
type category = :visa
|
|
1707
|
+
type category = :visa | :pulse
|
|
1692
1708
|
|
|
1693
1709
|
module Category
|
|
1694
1710
|
extend Increase::Internal::Type::Enum
|
|
@@ -1696,6 +1712,9 @@ module Increase
|
|
|
1696
1712
|
# Visa
|
|
1697
1713
|
VISA: :visa
|
|
1698
1714
|
|
|
1715
|
+
# Pulse
|
|
1716
|
+
PULSE: :pulse
|
|
1717
|
+
|
|
1699
1718
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::category]
|
|
1700
1719
|
end
|
|
1701
1720
|
|
|
@@ -2245,7 +2264,7 @@ module Increase
|
|
|
2245
2264
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFuelConfirmation::currency]
|
|
2246
2265
|
end
|
|
2247
2266
|
|
|
2248
|
-
type network = :visa
|
|
2267
|
+
type network = :visa | :pulse
|
|
2249
2268
|
|
|
2250
2269
|
module Network
|
|
2251
2270
|
extend Increase::Internal::Type::Enum
|
|
@@ -2253,6 +2272,9 @@ module Increase
|
|
|
2253
2272
|
# Visa
|
|
2254
2273
|
VISA: :visa
|
|
2255
2274
|
|
|
2275
|
+
# Pulse
|
|
2276
|
+
PULSE: :pulse
|
|
2277
|
+
|
|
2256
2278
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardFuelConfirmation::network]
|
|
2257
2279
|
end
|
|
2258
2280
|
|
|
@@ -2588,7 +2610,7 @@ module Increase
|
|
|
2588
2610
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardIncrement::currency]
|
|
2589
2611
|
end
|
|
2590
2612
|
|
|
2591
|
-
type network = :visa
|
|
2613
|
+
type network = :visa | :pulse
|
|
2592
2614
|
|
|
2593
2615
|
module Network
|
|
2594
2616
|
extend Increase::Internal::Type::Enum
|
|
@@ -2596,6 +2618,9 @@ module Increase
|
|
|
2596
2618
|
# Visa
|
|
2597
2619
|
VISA: :visa
|
|
2598
2620
|
|
|
2621
|
+
# Pulse
|
|
2622
|
+
PULSE: :pulse
|
|
2623
|
+
|
|
2599
2624
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardIncrement::network]
|
|
2600
2625
|
end
|
|
2601
2626
|
|
|
@@ -3805,7 +3830,7 @@ module Increase
|
|
|
3805
3830
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::currency]
|
|
3806
3831
|
end
|
|
3807
3832
|
|
|
3808
|
-
type network = :visa
|
|
3833
|
+
type network = :visa | :pulse
|
|
3809
3834
|
|
|
3810
3835
|
module Network
|
|
3811
3836
|
extend Increase::Internal::Type::Enum
|
|
@@ -3813,6 +3838,9 @@ module Increase
|
|
|
3813
3838
|
# Visa
|
|
3814
3839
|
VISA: :visa
|
|
3815
3840
|
|
|
3841
|
+
# Pulse
|
|
3842
|
+
PULSE: :pulse
|
|
3843
|
+
|
|
3816
3844
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardReversal::network]
|
|
3817
3845
|
end
|
|
3818
3846
|
|
|
@@ -4131,7 +4159,7 @@ module Increase
|
|
|
4131
4159
|
end
|
|
4132
4160
|
end
|
|
4133
4161
|
|
|
4134
|
-
type network = :visa
|
|
4162
|
+
type network = :visa | :pulse
|
|
4135
4163
|
|
|
4136
4164
|
module Network
|
|
4137
4165
|
extend Increase::Internal::Type::Enum
|
|
@@ -4139,6 +4167,9 @@ module Increase
|
|
|
4139
4167
|
# Visa
|
|
4140
4168
|
VISA: :visa
|
|
4141
4169
|
|
|
4170
|
+
# Pulse
|
|
4171
|
+
PULSE: :pulse
|
|
4172
|
+
|
|
4142
4173
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardSettlement::network]
|
|
4143
4174
|
end
|
|
4144
4175
|
|
|
@@ -5277,25 +5308,30 @@ module Increase
|
|
|
5277
5308
|
type network_details =
|
|
5278
5309
|
{
|
|
5279
5310
|
category: Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category,
|
|
5311
|
+
pulse: top?,
|
|
5280
5312
|
visa: Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa?
|
|
5281
5313
|
}
|
|
5282
5314
|
|
|
5283
5315
|
class NetworkDetails < Increase::Internal::Type::BaseModel
|
|
5284
5316
|
attr_accessor category: Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category
|
|
5285
5317
|
|
|
5318
|
+
attr_accessor pulse: top?
|
|
5319
|
+
|
|
5286
5320
|
attr_accessor visa: Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa?
|
|
5287
5321
|
|
|
5288
5322
|
def initialize: (
|
|
5289
5323
|
category: Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category,
|
|
5324
|
+
pulse: top?,
|
|
5290
5325
|
visa: Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa?
|
|
5291
5326
|
) -> void
|
|
5292
5327
|
|
|
5293
5328
|
def to_hash: -> {
|
|
5294
5329
|
category: Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category,
|
|
5330
|
+
pulse: top?,
|
|
5295
5331
|
visa: Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa?
|
|
5296
5332
|
}
|
|
5297
5333
|
|
|
5298
|
-
type category = :visa
|
|
5334
|
+
type category = :visa | :pulse
|
|
5299
5335
|
|
|
5300
5336
|
module Category
|
|
5301
5337
|
extend Increase::Internal::Type::Enum
|
|
@@ -5303,6 +5339,9 @@ module Increase
|
|
|
5303
5339
|
# Visa
|
|
5304
5340
|
VISA: :visa
|
|
5305
5341
|
|
|
5342
|
+
# Pulse
|
|
5343
|
+
PULSE: :pulse
|
|
5344
|
+
|
|
5306
5345
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::category]
|
|
5307
5346
|
end
|
|
5308
5347
|
|
|
@@ -699,25 +699,30 @@ module Increase
|
|
|
699
699
|
type network_details =
|
|
700
700
|
{
|
|
701
701
|
category: Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category,
|
|
702
|
+
pulse: top?,
|
|
702
703
|
visa: Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa?
|
|
703
704
|
}
|
|
704
705
|
|
|
705
706
|
class NetworkDetails < Increase::Internal::Type::BaseModel
|
|
706
707
|
attr_accessor category: Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category
|
|
707
708
|
|
|
709
|
+
attr_accessor pulse: top?
|
|
710
|
+
|
|
708
711
|
attr_accessor visa: Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa?
|
|
709
712
|
|
|
710
713
|
def initialize: (
|
|
711
714
|
category: Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category,
|
|
715
|
+
pulse: top?,
|
|
712
716
|
visa: Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa?
|
|
713
717
|
) -> void
|
|
714
718
|
|
|
715
719
|
def to_hash: -> {
|
|
716
720
|
category: Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category,
|
|
721
|
+
pulse: top?,
|
|
717
722
|
visa: Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa?
|
|
718
723
|
}
|
|
719
724
|
|
|
720
|
-
type category = :visa
|
|
725
|
+
type category = :visa | :pulse
|
|
721
726
|
|
|
722
727
|
module Category
|
|
723
728
|
extend Increase::Internal::Type::Enum
|
|
@@ -725,6 +730,9 @@ module Increase
|
|
|
725
730
|
# Visa
|
|
726
731
|
VISA: :visa
|
|
727
732
|
|
|
733
|
+
# Pulse
|
|
734
|
+
PULSE: :pulse
|
|
735
|
+
|
|
728
736
|
def self?.values: -> ::Array[Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::category]
|
|
729
737
|
end
|
|
730
738
|
|
|
@@ -660,25 +660,30 @@ module Increase
|
|
|
660
660
|
type network_details =
|
|
661
661
|
{
|
|
662
662
|
category: Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category,
|
|
663
|
+
pulse: top?,
|
|
663
664
|
visa: Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa?
|
|
664
665
|
}
|
|
665
666
|
|
|
666
667
|
class NetworkDetails < Increase::Internal::Type::BaseModel
|
|
667
668
|
attr_accessor category: Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category
|
|
668
669
|
|
|
670
|
+
attr_accessor pulse: top?
|
|
671
|
+
|
|
669
672
|
attr_accessor visa: Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa?
|
|
670
673
|
|
|
671
674
|
def initialize: (
|
|
672
675
|
category: Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category,
|
|
676
|
+
pulse: top?,
|
|
673
677
|
visa: Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa?
|
|
674
678
|
) -> void
|
|
675
679
|
|
|
676
680
|
def to_hash: -> {
|
|
677
681
|
category: Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category,
|
|
682
|
+
pulse: top?,
|
|
678
683
|
visa: Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa?
|
|
679
684
|
}
|
|
680
685
|
|
|
681
|
-
type category = :visa
|
|
686
|
+
type category = :visa | :pulse
|
|
682
687
|
|
|
683
688
|
module Category
|
|
684
689
|
extend Increase::Internal::Type::Enum
|
|
@@ -686,6 +691,9 @@ module Increase
|
|
|
686
691
|
# Visa
|
|
687
692
|
VISA: :visa
|
|
688
693
|
|
|
694
|
+
# Pulse
|
|
695
|
+
PULSE: :pulse
|
|
696
|
+
|
|
689
697
|
def self?.values: -> ::Array[Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category]
|
|
690
698
|
end
|
|
691
699
|
|
|
@@ -518,25 +518,30 @@ module Increase
|
|
|
518
518
|
type network_details =
|
|
519
519
|
{
|
|
520
520
|
category: Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category,
|
|
521
|
+
pulse: top?,
|
|
521
522
|
visa: Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa?
|
|
522
523
|
}
|
|
523
524
|
|
|
524
525
|
class NetworkDetails < Increase::Internal::Type::BaseModel
|
|
525
526
|
attr_accessor category: Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category
|
|
526
527
|
|
|
528
|
+
attr_accessor pulse: top?
|
|
529
|
+
|
|
527
530
|
attr_accessor visa: Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa?
|
|
528
531
|
|
|
529
532
|
def initialize: (
|
|
530
533
|
category: Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category,
|
|
534
|
+
pulse: top?,
|
|
531
535
|
visa: Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa?
|
|
532
536
|
) -> void
|
|
533
537
|
|
|
534
538
|
def to_hash: -> {
|
|
535
539
|
category: Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category,
|
|
540
|
+
pulse: top?,
|
|
536
541
|
visa: Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Visa?
|
|
537
542
|
}
|
|
538
543
|
|
|
539
|
-
type category = :visa
|
|
544
|
+
type category = :visa | :pulse
|
|
540
545
|
|
|
541
546
|
module Category
|
|
542
547
|
extend Increase::Internal::Type::Enum
|
|
@@ -544,6 +549,9 @@ module Increase
|
|
|
544
549
|
# Visa
|
|
545
550
|
VISA: :visa
|
|
546
551
|
|
|
552
|
+
# Pulse
|
|
553
|
+
PULSE: :pulse
|
|
554
|
+
|
|
547
555
|
def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category]
|
|
548
556
|
end
|
|
549
557
|
|
|
@@ -816,7 +816,7 @@ module Increase
|
|
|
816
816
|
visa: Increase::Transaction::Source::CardDisputeFinancial::Visa?
|
|
817
817
|
}
|
|
818
818
|
|
|
819
|
-
type network = :visa
|
|
819
|
+
type network = :visa | :pulse
|
|
820
820
|
|
|
821
821
|
module Network
|
|
822
822
|
extend Increase::Internal::Type::Enum
|
|
@@ -824,6 +824,9 @@ module Increase
|
|
|
824
824
|
# Visa: details will be under the `visa` object.
|
|
825
825
|
VISA: :visa
|
|
826
826
|
|
|
827
|
+
# Pulse: details will be under the `pulse` object.
|
|
828
|
+
PULSE: :pulse
|
|
829
|
+
|
|
827
830
|
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardDisputeFinancial::network]
|
|
828
831
|
end
|
|
829
832
|
|
|
@@ -1275,25 +1278,30 @@ module Increase
|
|
|
1275
1278
|
type network_details =
|
|
1276
1279
|
{
|
|
1277
1280
|
category: Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category,
|
|
1281
|
+
pulse: top?,
|
|
1278
1282
|
visa: Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa?
|
|
1279
1283
|
}
|
|
1280
1284
|
|
|
1281
1285
|
class NetworkDetails < Increase::Internal::Type::BaseModel
|
|
1282
1286
|
attr_accessor category: Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category
|
|
1283
1287
|
|
|
1288
|
+
attr_accessor pulse: top?
|
|
1289
|
+
|
|
1284
1290
|
attr_accessor visa: Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa?
|
|
1285
1291
|
|
|
1286
1292
|
def initialize: (
|
|
1287
1293
|
category: Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category,
|
|
1294
|
+
pulse: top?,
|
|
1288
1295
|
visa: Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa?
|
|
1289
1296
|
) -> void
|
|
1290
1297
|
|
|
1291
1298
|
def to_hash: -> {
|
|
1292
1299
|
category: Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category,
|
|
1300
|
+
pulse: top?,
|
|
1293
1301
|
visa: Increase::Transaction::Source::CardFinancial::NetworkDetails::Visa?
|
|
1294
1302
|
}
|
|
1295
1303
|
|
|
1296
|
-
type category = :visa
|
|
1304
|
+
type category = :visa | :pulse
|
|
1297
1305
|
|
|
1298
1306
|
module Category
|
|
1299
1307
|
extend Increase::Internal::Type::Enum
|
|
@@ -1301,6 +1309,9 @@ module Increase
|
|
|
1301
1309
|
# Visa
|
|
1302
1310
|
VISA: :visa
|
|
1303
1311
|
|
|
1312
|
+
# Pulse
|
|
1313
|
+
PULSE: :pulse
|
|
1314
|
+
|
|
1304
1315
|
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardFinancial::NetworkDetails::category]
|
|
1305
1316
|
end
|
|
1306
1317
|
|
|
@@ -3018,7 +3029,7 @@ module Increase
|
|
|
3018
3029
|
end
|
|
3019
3030
|
end
|
|
3020
3031
|
|
|
3021
|
-
type network = :visa
|
|
3032
|
+
type network = :visa | :pulse
|
|
3022
3033
|
|
|
3023
3034
|
module Network
|
|
3024
3035
|
extend Increase::Internal::Type::Enum
|
|
@@ -3026,6 +3037,9 @@ module Increase
|
|
|
3026
3037
|
# Visa
|
|
3027
3038
|
VISA: :visa
|
|
3028
3039
|
|
|
3040
|
+
# Pulse
|
|
3041
|
+
PULSE: :pulse
|
|
3042
|
+
|
|
3029
3043
|
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::network]
|
|
3030
3044
|
end
|
|
3031
3045
|
|