increase 1.351.0 → 1.353.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/README.md +1 -1
- data/lib/increase/models/account_statement.rb +12 -4
- data/lib/increase/models/balance_lookup.rb +1 -59
- data/lib/increase/models/beneficial_owner_create_params.rb +3 -0
- data/lib/increase/models/beneficial_owner_update_params.rb +3 -0
- data/lib/increase/models/card_payment.rb +1174 -2
- data/lib/increase/models/check_transfer.rb +15 -9
- data/lib/increase/models/entity.rb +18 -0
- data/lib/increase/models/entity_beneficial_owner.rb +3 -0
- data/lib/increase/models/entity_create_params.rb +36 -20
- data/lib/increase/models/entity_update_params.rb +33 -20
- data/lib/increase/models/event.rb +12 -0
- data/lib/increase/models/event_list_params.rb +12 -0
- data/lib/increase/models/event_subscription.rb +12 -0
- data/lib/increase/models/event_subscription_create_params.rb +12 -0
- data/lib/increase/models/inbound_ach_transfer.rb +9 -1
- data/lib/increase/models/pending_transaction.rb +121 -1
- data/lib/increase/models/pending_transaction_list_params.rb +6 -0
- data/lib/increase/models/simulations/physical_card_create_params.rb +9 -6
- data/lib/increase/models/transaction.rb +1277 -3
- data/lib/increase/models/transaction_list_params.rb +6 -0
- data/lib/increase/models/unwrap_webhook_event.rb +12 -0
- data/lib/increase/models/wire_drawdown_request.rb +3 -3
- data/lib/increase/models/wire_drawdown_request_list_params.rb +3 -3
- data/lib/increase/resources/simulations/account_statements.rb +2 -1
- data/lib/increase/resources/simulations/physical_cards.rb +5 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_statement.rbi +12 -4
- data/rbi/increase/models/balance_lookup.rbi +3 -87
- data/rbi/increase/models/beneficial_owner_create_params.rbi +7 -0
- data/rbi/increase/models/beneficial_owner_update_params.rbi +7 -0
- data/rbi/increase/models/card_payment.rbi +5276 -2964
- data/rbi/increase/models/check_transfer.rbi +15 -9
- data/rbi/increase/models/entity.rbi +42 -0
- data/rbi/increase/models/entity_beneficial_owner.rbi +7 -0
- data/rbi/increase/models/entity_create_params.rbi +46 -21
- data/rbi/increase/models/entity_update_params.rbi +39 -21
- data/rbi/increase/models/event.rbi +28 -0
- data/rbi/increase/models/event_list_params.rbi +28 -0
- data/rbi/increase/models/event_subscription.rbi +28 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +28 -0
- data/rbi/increase/models/inbound_ach_transfer.rbi +8 -0
- data/rbi/increase/models/pending_transaction.rbi +254 -0
- data/rbi/increase/models/pending_transaction_list_params.rbi +14 -0
- data/rbi/increase/models/simulations/physical_card_create_params.rbi +8 -6
- data/rbi/increase/models/transaction.rbi +4848 -2358
- data/rbi/increase/models/transaction_list_params.rbi +14 -0
- data/rbi/increase/models/unwrap_webhook_event.rbi +28 -0
- data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
- data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
- data/rbi/increase/resources/simulations/account_statements.rbi +2 -1
- data/rbi/increase/resources/simulations/physical_cards.rbi +4 -3
- data/sig/increase/models/balance_lookup.rbs +3 -42
- data/sig/increase/models/beneficial_owner_create_params.rbs +4 -0
- data/sig/increase/models/beneficial_owner_update_params.rbs +4 -0
- data/sig/increase/models/card_payment.rbs +1186 -0
- data/sig/increase/models/entity.rbs +24 -0
- data/sig/increase/models/entity_beneficial_owner.rbs +4 -0
- data/sig/increase/models/entity_create_params.rbs +24 -11
- data/sig/increase/models/entity_update_params.rbs +20 -11
- data/sig/increase/models/event.rbs +16 -0
- data/sig/increase/models/event_list_params.rbs +16 -0
- data/sig/increase/models/event_subscription.rbs +16 -0
- data/sig/increase/models/event_subscription_create_params.rbs +16 -0
- data/sig/increase/models/inbound_ach_transfer.rbs +5 -0
- data/sig/increase/models/pending_transaction.rbs +84 -0
- data/sig/increase/models/pending_transaction_list_params.rbs +8 -0
- data/sig/increase/models/transaction.rbs +1236 -0
- data/sig/increase/models/transaction_list_params.rbs +8 -0
- data/sig/increase/models/unwrap_webhook_event.rbs +16 -0
- data/sig/increase/models/wire_drawdown_request.rbs +4 -4
- data/sig/increase/models/wire_drawdown_request_list_params.rbs +4 -4
- metadata +2 -2
|
@@ -128,8 +128,10 @@ module Increase
|
|
|
128
128
|
other: Increase::Transaction::Source::Other?,
|
|
129
129
|
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
|
130
130
|
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
|
131
|
+
sepa_instant_transfer_acceptance: Increase::Transaction::Source::SepaInstantTransferAcceptance?,
|
|
131
132
|
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
|
132
133
|
swift_transfer_return: Increase::Transaction::Source::SwiftTransferReturn?,
|
|
134
|
+
uk_faster_payment_system_transfer_acceptance: Increase::Transaction::Source::UkFasterPaymentSystemTransferAcceptance?,
|
|
133
135
|
wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
|
134
136
|
}
|
|
135
137
|
|
|
@@ -208,10 +210,14 @@ module Increase
|
|
|
208
210
|
|
|
209
211
|
attr_accessor sample_funds: Increase::Transaction::Source::SampleFunds?
|
|
210
212
|
|
|
213
|
+
attr_accessor sepa_instant_transfer_acceptance: Increase::Transaction::Source::SepaInstantTransferAcceptance?
|
|
214
|
+
|
|
211
215
|
attr_accessor swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?
|
|
212
216
|
|
|
213
217
|
attr_accessor swift_transfer_return: Increase::Transaction::Source::SwiftTransferReturn?
|
|
214
218
|
|
|
219
|
+
attr_accessor uk_faster_payment_system_transfer_acceptance: Increase::Transaction::Source::UkFasterPaymentSystemTransferAcceptance?
|
|
220
|
+
|
|
215
221
|
attr_accessor wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
|
216
222
|
|
|
217
223
|
def initialize: (
|
|
@@ -252,8 +258,10 @@ module Increase
|
|
|
252
258
|
?other: Increase::Transaction::Source::Other?,
|
|
253
259
|
?real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
|
254
260
|
?sample_funds: Increase::Transaction::Source::SampleFunds?,
|
|
261
|
+
?sepa_instant_transfer_acceptance: Increase::Transaction::Source::SepaInstantTransferAcceptance?,
|
|
255
262
|
?swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
|
256
263
|
?swift_transfer_return: Increase::Transaction::Source::SwiftTransferReturn?,
|
|
264
|
+
?uk_faster_payment_system_transfer_acceptance: Increase::Transaction::Source::UkFasterPaymentSystemTransferAcceptance?,
|
|
257
265
|
?wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
|
258
266
|
) -> void
|
|
259
267
|
|
|
@@ -295,8 +303,10 @@ module Increase
|
|
|
295
303
|
other: Increase::Transaction::Source::Other?,
|
|
296
304
|
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
|
297
305
|
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
|
306
|
+
sepa_instant_transfer_acceptance: Increase::Transaction::Source::SepaInstantTransferAcceptance?,
|
|
298
307
|
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
|
299
308
|
swift_transfer_return: Increase::Transaction::Source::SwiftTransferReturn?,
|
|
309
|
+
uk_faster_payment_system_transfer_acceptance: Increase::Transaction::Source::UkFasterPaymentSystemTransferAcceptance?,
|
|
300
310
|
wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
|
301
311
|
}
|
|
302
312
|
|
|
@@ -339,6 +349,8 @@ module Increase
|
|
|
339
349
|
| :account_revenue_payment
|
|
340
350
|
| :blockchain_onramp_transfer_intention
|
|
341
351
|
| :blockchain_offramp_transfer_settlement
|
|
352
|
+
| :uk_faster_payment_system_transfer_acceptance
|
|
353
|
+
| :sepa_instant_transfer_acceptance
|
|
342
354
|
| :other
|
|
343
355
|
|
|
344
356
|
module Category
|
|
@@ -458,6 +470,12 @@ module Increase
|
|
|
458
470
|
# Blockchain Off-Ramp Transfer Settlement: details will be under the `blockchain_offramp_transfer_settlement` object.
|
|
459
471
|
BLOCKCHAIN_OFFRAMP_TRANSFER_SETTLEMENT: :blockchain_offramp_transfer_settlement
|
|
460
472
|
|
|
473
|
+
# UK Faster Payment System Transfer Acceptance: details will be under the `uk_faster_payment_system_transfer_acceptance` object.
|
|
474
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_ACCEPTANCE: :uk_faster_payment_system_transfer_acceptance
|
|
475
|
+
|
|
476
|
+
# SEPA Instant Transfer Acceptance: details will be under the `sepa_instant_transfer_acceptance` object.
|
|
477
|
+
SEPA_INSTANT_TRANSFER_ACCEPTANCE: :sepa_instant_transfer_acceptance
|
|
478
|
+
|
|
461
479
|
# The Transaction was made for an undocumented or deprecated reason.
|
|
462
480
|
OTHER: :other
|
|
463
481
|
|
|
@@ -2397,6 +2415,7 @@ module Increase
|
|
|
2397
2415
|
{
|
|
2398
2416
|
car_rental: Increase::Transaction::Source::CardRefund::PurchaseDetails::CarRental?,
|
|
2399
2417
|
customer_reference_identifier: String?,
|
|
2418
|
+
fleet: Increase::Transaction::Source::CardRefund::PurchaseDetails::Fleet?,
|
|
2400
2419
|
local_tax_amount: Integer?,
|
|
2401
2420
|
local_tax_currency: String?,
|
|
2402
2421
|
lodging: Increase::Transaction::Source::CardRefund::PurchaseDetails::Lodging?,
|
|
@@ -2412,6 +2431,8 @@ module Increase
|
|
|
2412
2431
|
|
|
2413
2432
|
attr_accessor customer_reference_identifier: String?
|
|
2414
2433
|
|
|
2434
|
+
attr_accessor fleet: Increase::Transaction::Source::CardRefund::PurchaseDetails::Fleet?
|
|
2435
|
+
|
|
2415
2436
|
attr_accessor local_tax_amount: Integer?
|
|
2416
2437
|
|
|
2417
2438
|
attr_accessor local_tax_currency: String?
|
|
@@ -2431,6 +2452,7 @@ module Increase
|
|
|
2431
2452
|
def initialize: (
|
|
2432
2453
|
car_rental: Increase::Transaction::Source::CardRefund::PurchaseDetails::CarRental?,
|
|
2433
2454
|
customer_reference_identifier: String?,
|
|
2455
|
+
fleet: Increase::Transaction::Source::CardRefund::PurchaseDetails::Fleet?,
|
|
2434
2456
|
local_tax_amount: Integer?,
|
|
2435
2457
|
local_tax_currency: String?,
|
|
2436
2458
|
lodging: Increase::Transaction::Source::CardRefund::PurchaseDetails::Lodging?,
|
|
@@ -2444,6 +2466,7 @@ module Increase
|
|
|
2444
2466
|
def to_hash: -> {
|
|
2445
2467
|
car_rental: Increase::Transaction::Source::CardRefund::PurchaseDetails::CarRental?,
|
|
2446
2468
|
customer_reference_identifier: String?,
|
|
2469
|
+
fleet: Increase::Transaction::Source::CardRefund::PurchaseDetails::Fleet?,
|
|
2447
2470
|
local_tax_amount: Integer?,
|
|
2448
2471
|
local_tax_currency: String?,
|
|
2449
2472
|
lodging: Increase::Transaction::Source::CardRefund::PurchaseDetails::Lodging?,
|
|
@@ -2593,6 +2616,594 @@ module Increase
|
|
|
2593
2616
|
end
|
|
2594
2617
|
end
|
|
2595
2618
|
|
|
2619
|
+
type fleet =
|
|
2620
|
+
{
|
|
2621
|
+
employee_number: String?,
|
|
2622
|
+
fuel_quantity: String?,
|
|
2623
|
+
fuel_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_type?,
|
|
2624
|
+
fuel_unit_cost_amount: Integer?,
|
|
2625
|
+
fuel_unit_cost_currency: String?,
|
|
2626
|
+
fuel_unit_of_measure: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure?,
|
|
2627
|
+
gross_fuel_price_amount: Integer?,
|
|
2628
|
+
gross_fuel_price_currency: String?,
|
|
2629
|
+
gross_non_fuel_price_amount: Integer?,
|
|
2630
|
+
gross_non_fuel_price_currency: String?,
|
|
2631
|
+
net_fuel_price_amount: Integer?,
|
|
2632
|
+
net_fuel_price_currency: String?,
|
|
2633
|
+
net_non_fuel_price_amount: Integer?,
|
|
2634
|
+
net_non_fuel_price_currency: String?,
|
|
2635
|
+
odometer_reading: Integer?,
|
|
2636
|
+
purchase_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::purchase_type?,
|
|
2637
|
+
service_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::service_type?,
|
|
2638
|
+
trailer_number: String?
|
|
2639
|
+
}
|
|
2640
|
+
|
|
2641
|
+
class Fleet < Increase::Internal::Type::BaseModel
|
|
2642
|
+
attr_accessor employee_number: String?
|
|
2643
|
+
|
|
2644
|
+
attr_accessor fuel_quantity: String?
|
|
2645
|
+
|
|
2646
|
+
attr_accessor fuel_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_type?
|
|
2647
|
+
|
|
2648
|
+
attr_accessor fuel_unit_cost_amount: Integer?
|
|
2649
|
+
|
|
2650
|
+
attr_accessor fuel_unit_cost_currency: String?
|
|
2651
|
+
|
|
2652
|
+
attr_accessor fuel_unit_of_measure: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure?
|
|
2653
|
+
|
|
2654
|
+
attr_accessor gross_fuel_price_amount: Integer?
|
|
2655
|
+
|
|
2656
|
+
attr_accessor gross_fuel_price_currency: String?
|
|
2657
|
+
|
|
2658
|
+
attr_accessor gross_non_fuel_price_amount: Integer?
|
|
2659
|
+
|
|
2660
|
+
attr_accessor gross_non_fuel_price_currency: String?
|
|
2661
|
+
|
|
2662
|
+
attr_accessor net_fuel_price_amount: Integer?
|
|
2663
|
+
|
|
2664
|
+
attr_accessor net_fuel_price_currency: String?
|
|
2665
|
+
|
|
2666
|
+
attr_accessor net_non_fuel_price_amount: Integer?
|
|
2667
|
+
|
|
2668
|
+
attr_accessor net_non_fuel_price_currency: String?
|
|
2669
|
+
|
|
2670
|
+
attr_accessor odometer_reading: Integer?
|
|
2671
|
+
|
|
2672
|
+
attr_accessor purchase_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::purchase_type?
|
|
2673
|
+
|
|
2674
|
+
attr_accessor service_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::service_type?
|
|
2675
|
+
|
|
2676
|
+
attr_accessor trailer_number: String?
|
|
2677
|
+
|
|
2678
|
+
def initialize: (
|
|
2679
|
+
employee_number: String?,
|
|
2680
|
+
fuel_quantity: String?,
|
|
2681
|
+
fuel_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_type?,
|
|
2682
|
+
fuel_unit_cost_amount: Integer?,
|
|
2683
|
+
fuel_unit_cost_currency: String?,
|
|
2684
|
+
fuel_unit_of_measure: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure?,
|
|
2685
|
+
gross_fuel_price_amount: Integer?,
|
|
2686
|
+
gross_fuel_price_currency: String?,
|
|
2687
|
+
gross_non_fuel_price_amount: Integer?,
|
|
2688
|
+
gross_non_fuel_price_currency: String?,
|
|
2689
|
+
net_fuel_price_amount: Integer?,
|
|
2690
|
+
net_fuel_price_currency: String?,
|
|
2691
|
+
net_non_fuel_price_amount: Integer?,
|
|
2692
|
+
net_non_fuel_price_currency: String?,
|
|
2693
|
+
odometer_reading: Integer?,
|
|
2694
|
+
purchase_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::purchase_type?,
|
|
2695
|
+
service_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::service_type?,
|
|
2696
|
+
trailer_number: String?
|
|
2697
|
+
) -> void
|
|
2698
|
+
|
|
2699
|
+
def to_hash: -> {
|
|
2700
|
+
employee_number: String?,
|
|
2701
|
+
fuel_quantity: String?,
|
|
2702
|
+
fuel_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_type?,
|
|
2703
|
+
fuel_unit_cost_amount: Integer?,
|
|
2704
|
+
fuel_unit_cost_currency: String?,
|
|
2705
|
+
fuel_unit_of_measure: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure?,
|
|
2706
|
+
gross_fuel_price_amount: Integer?,
|
|
2707
|
+
gross_fuel_price_currency: String?,
|
|
2708
|
+
gross_non_fuel_price_amount: Integer?,
|
|
2709
|
+
gross_non_fuel_price_currency: String?,
|
|
2710
|
+
net_fuel_price_amount: Integer?,
|
|
2711
|
+
net_fuel_price_currency: String?,
|
|
2712
|
+
net_non_fuel_price_amount: Integer?,
|
|
2713
|
+
net_non_fuel_price_currency: String?,
|
|
2714
|
+
odometer_reading: Integer?,
|
|
2715
|
+
purchase_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::purchase_type?,
|
|
2716
|
+
service_type: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::service_type?,
|
|
2717
|
+
trailer_number: String?
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
type fuel_type =
|
|
2721
|
+
:regular
|
|
2722
|
+
| :mid_or_plus
|
|
2723
|
+
| :premium_or_super
|
|
2724
|
+
| :mid_or_plus_2
|
|
2725
|
+
| :premium_or_super_2
|
|
2726
|
+
| :regular_ethanol_5_blend_non_us
|
|
2727
|
+
| :mid_or_plus_ethanol_5_blend_non_us
|
|
2728
|
+
| :premium_or_super_ethanol_5_blend_non_us
|
|
2729
|
+
| :ethanol_7_7_blend
|
|
2730
|
+
| :mid_or_plus_2_ethanol_5_blend_non_us
|
|
2731
|
+
| :green_gasoline_regular
|
|
2732
|
+
| :green_gasoline_mid_or_plus
|
|
2733
|
+
| :green_gasoline_premium_or_super
|
|
2734
|
+
| :regular_diesel_2
|
|
2735
|
+
| :premium_diesel_2
|
|
2736
|
+
| :regular_diesel_1
|
|
2737
|
+
| :compressed_natural_gas
|
|
2738
|
+
| :liquid_propane_gas
|
|
2739
|
+
| :liquid_natural_gas
|
|
2740
|
+
| :e85
|
|
2741
|
+
| :regular_reformulated
|
|
2742
|
+
| :mid_or_plus_reformulated
|
|
2743
|
+
| :premium_or_super_reformulated
|
|
2744
|
+
| :mid_or_plus_2_reformulated
|
|
2745
|
+
| :premium_or_super_2_reformulated
|
|
2746
|
+
| :diesel_off_road_1_2_non_taxable
|
|
2747
|
+
| :diesel_off_road_non_taxable
|
|
2748
|
+
| :biodiesel_blend_off_road_non_taxable
|
|
2749
|
+
| :racing_fuel
|
|
2750
|
+
| :mid_or_plus_2_ethanol_10_blend
|
|
2751
|
+
| :premium_or_super_2_ethanol_10_blend
|
|
2752
|
+
| :mid_or_plus_ethanol_2_15_blend
|
|
2753
|
+
| :premium_or_super_ethanol_2_15_blend
|
|
2754
|
+
| :premium_or_super_2_ethanol_5_blend_non_us
|
|
2755
|
+
| :regular_ethanol_10_blend
|
|
2756
|
+
| :mid_or_plus_ethanol_10_blend
|
|
2757
|
+
| :premium_or_super_ethanol_10_blend
|
|
2758
|
+
| :b2_diesel_blend_2_biodiesel
|
|
2759
|
+
| :b5_diesel_blend_5_biodiesel
|
|
2760
|
+
| :b10_diesel_blend_10_biodiesel
|
|
2761
|
+
| :b11_diesel_blend_11_biodiesel
|
|
2762
|
+
| :b15_diesel_blend_15_biodiesel
|
|
2763
|
+
| :b20_diesel_blend_20_biodiesel
|
|
2764
|
+
| :b100_diesel_blend_100_biodiesel
|
|
2765
|
+
| :b1_diesel_blend_1_biodiesel
|
|
2766
|
+
| :additized_diesel_2
|
|
2767
|
+
| :additized_diesel_3
|
|
2768
|
+
| :b7_diesel_blend_7_biodiesel_non_us
|
|
2769
|
+
| :b7_premium_diesel_blend_7_biodiesel_non_us
|
|
2770
|
+
| :renewable_diesel_r95_or_greater
|
|
2771
|
+
| :renewable_diesel_biodiesel_6_to_20
|
|
2772
|
+
| :diesel_exhaust_fluid_pump
|
|
2773
|
+
| :premium_diesel_1
|
|
2774
|
+
| :regular_ethanol_15_blend
|
|
2775
|
+
| :mid_or_plus_ethanol_15_blend
|
|
2776
|
+
| :premium_or_super_ethanol_15_blend
|
|
2777
|
+
| :premium_diesel_blend_less_than_20_biodiesel
|
|
2778
|
+
| :premium_diesel_blend_20_or_more_biodiesel
|
|
2779
|
+
| :b75_diesel_blend_75_biodiesel
|
|
2780
|
+
| :b99_diesel_blend_99_biodiesel
|
|
2781
|
+
| :reserved_for_preauthorization_use_only
|
|
2782
|
+
| :undefined_fuel_reserved_for_proprietary_use
|
|
2783
|
+
| :miscellaneous_fuel
|
|
2784
|
+
| :jet_fuel
|
|
2785
|
+
| :aviation_fuel_regular
|
|
2786
|
+
| :aviation_fuel_premium
|
|
2787
|
+
| :aviation_fuel_jp8
|
|
2788
|
+
| :aviation_fuel_4
|
|
2789
|
+
| :aviation_fuel_5
|
|
2790
|
+
| :biojet_diesel
|
|
2791
|
+
| :aviation_biofuel_gasoline
|
|
2792
|
+
| :undefined_aviation_fuel_reserved_for_proprietary_use
|
|
2793
|
+
| :miscellaneous_aviation_fuel
|
|
2794
|
+
| :marine_fuel_1
|
|
2795
|
+
| :marine_fuel_2
|
|
2796
|
+
| :marine_fuel_3
|
|
2797
|
+
| :marine_fuel_4
|
|
2798
|
+
| :marine_fuel_5
|
|
2799
|
+
| :marine_other
|
|
2800
|
+
| :marine_diesel
|
|
2801
|
+
| :miscellaneous_marine_fuel
|
|
2802
|
+
| :kerosene_low_sulfur
|
|
2803
|
+
| :white_gas
|
|
2804
|
+
| :heating_oil
|
|
2805
|
+
| :other_fuel_non_taxable
|
|
2806
|
+
| :kerosene_ultra_low_sulfur
|
|
2807
|
+
| :electric_vehicle_charging_level_1_110_volt
|
|
2808
|
+
| :electric_vehicle_charging_level_2_240_volt
|
|
2809
|
+
| :electric_vehicle_charging_level_3_480_volt
|
|
2810
|
+
| :renewable_diesel_r95_or_greater_off_road_non_taxable
|
|
2811
|
+
| :biodiesel_blend_1_off_road_non_taxable
|
|
2812
|
+
| :biodiesel_blend_75_off_road_non_taxable
|
|
2813
|
+
| :biodiesel_blend_99_off_road_non_taxable
|
|
2814
|
+
| :biodiesel_blend_100_off_road_non_taxable
|
|
2815
|
+
| :renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
|
|
2816
|
+
| :electric_vehicle_charging_level_4_800_volt
|
|
2817
|
+
| :electric_vehicle_charging_level_5_megawatt
|
|
2818
|
+
| :hydrotreated_vegetable_oil_100
|
|
2819
|
+
| :bio_compressed_natural_gas
|
|
2820
|
+
| :miscellaneous_other_fuel
|
|
2821
|
+
|
|
2822
|
+
module FuelType
|
|
2823
|
+
extend Increase::Internal::Type::Enum
|
|
2824
|
+
|
|
2825
|
+
# Regular
|
|
2826
|
+
REGULAR: :regular
|
|
2827
|
+
|
|
2828
|
+
# Mid or plus
|
|
2829
|
+
MID_OR_PLUS: :mid_or_plus
|
|
2830
|
+
|
|
2831
|
+
# Premium or super
|
|
2832
|
+
PREMIUM_OR_SUPER: :premium_or_super
|
|
2833
|
+
|
|
2834
|
+
# Mid or plus 2
|
|
2835
|
+
MID_OR_PLUS_2: :mid_or_plus_2
|
|
2836
|
+
|
|
2837
|
+
# Premium or super 2
|
|
2838
|
+
PREMIUM_OR_SUPER_2: :premium_or_super_2
|
|
2839
|
+
|
|
2840
|
+
# Regular ethanol 5% blend outside the United States
|
|
2841
|
+
REGULAR_ETHANOL_5_BLEND_NON_US: :regular_ethanol_5_blend_non_us
|
|
2842
|
+
|
|
2843
|
+
# Mid or plus ethanol 5% blend outside the United States
|
|
2844
|
+
MID_OR_PLUS_ETHANOL_5_BLEND_NON_US: :mid_or_plus_ethanol_5_blend_non_us
|
|
2845
|
+
|
|
2846
|
+
# Premium or super ethanol 5% blend outside the United States
|
|
2847
|
+
PREMIUM_OR_SUPER_ETHANOL_5_BLEND_NON_US: :premium_or_super_ethanol_5_blend_non_us
|
|
2848
|
+
|
|
2849
|
+
# Ethanol 7.7% blend
|
|
2850
|
+
ETHANOL_7_7_BLEND: :ethanol_7_7_blend
|
|
2851
|
+
|
|
2852
|
+
# Mid or plus 2 ethanol 5% blend outside the United States
|
|
2853
|
+
MID_OR_PLUS_2_ETHANOL_5_BLEND_NON_US: :mid_or_plus_2_ethanol_5_blend_non_us
|
|
2854
|
+
|
|
2855
|
+
# Green gasoline regular
|
|
2856
|
+
GREEN_GASOLINE_REGULAR: :green_gasoline_regular
|
|
2857
|
+
|
|
2858
|
+
# Green gasoline mid or plus
|
|
2859
|
+
GREEN_GASOLINE_MID_OR_PLUS: :green_gasoline_mid_or_plus
|
|
2860
|
+
|
|
2861
|
+
# Green gasoline premium or super
|
|
2862
|
+
GREEN_GASOLINE_PREMIUM_OR_SUPER: :green_gasoline_premium_or_super
|
|
2863
|
+
|
|
2864
|
+
# Regular diesel 2
|
|
2865
|
+
REGULAR_DIESEL_2: :regular_diesel_2
|
|
2866
|
+
|
|
2867
|
+
# Premium diesel 2
|
|
2868
|
+
PREMIUM_DIESEL_2: :premium_diesel_2
|
|
2869
|
+
|
|
2870
|
+
# Regular diesel 1
|
|
2871
|
+
REGULAR_DIESEL_1: :regular_diesel_1
|
|
2872
|
+
|
|
2873
|
+
# Compressed natural gas
|
|
2874
|
+
COMPRESSED_NATURAL_GAS: :compressed_natural_gas
|
|
2875
|
+
|
|
2876
|
+
# Liquid propane gas
|
|
2877
|
+
LIQUID_PROPANE_GAS: :liquid_propane_gas
|
|
2878
|
+
|
|
2879
|
+
# Liquid natural gas
|
|
2880
|
+
LIQUID_NATURAL_GAS: :liquid_natural_gas
|
|
2881
|
+
|
|
2882
|
+
# E85
|
|
2883
|
+
E85: :e85
|
|
2884
|
+
|
|
2885
|
+
# Regular reformulated
|
|
2886
|
+
REGULAR_REFORMULATED: :regular_reformulated
|
|
2887
|
+
|
|
2888
|
+
# Mid or plus reformulated
|
|
2889
|
+
MID_OR_PLUS_REFORMULATED: :mid_or_plus_reformulated
|
|
2890
|
+
|
|
2891
|
+
# Premium or super reformulated
|
|
2892
|
+
PREMIUM_OR_SUPER_REFORMULATED: :premium_or_super_reformulated
|
|
2893
|
+
|
|
2894
|
+
# Mid or plus 2 reformulated
|
|
2895
|
+
MID_OR_PLUS_2_REFORMULATED: :mid_or_plus_2_reformulated
|
|
2896
|
+
|
|
2897
|
+
# Premium or super 2 reformulated
|
|
2898
|
+
PREMIUM_OR_SUPER_2_REFORMULATED: :premium_or_super_2_reformulated
|
|
2899
|
+
|
|
2900
|
+
# Diesel off-road 1/2 non-taxable
|
|
2901
|
+
DIESEL_OFF_ROAD_1_2_NON_TAXABLE: :diesel_off_road_1_2_non_taxable
|
|
2902
|
+
|
|
2903
|
+
# Diesel off-road non-taxable
|
|
2904
|
+
DIESEL_OFF_ROAD_NON_TAXABLE: :diesel_off_road_non_taxable
|
|
2905
|
+
|
|
2906
|
+
# Biodiesel blend off-road non-taxable
|
|
2907
|
+
BIODIESEL_BLEND_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_off_road_non_taxable
|
|
2908
|
+
|
|
2909
|
+
# Racing fuel
|
|
2910
|
+
RACING_FUEL: :racing_fuel
|
|
2911
|
+
|
|
2912
|
+
# Mid or plus 2 ethanol 10% blend
|
|
2913
|
+
MID_OR_PLUS_2_ETHANOL_10_BLEND: :mid_or_plus_2_ethanol_10_blend
|
|
2914
|
+
|
|
2915
|
+
# Premium or super 2 ethanol 10% blend
|
|
2916
|
+
PREMIUM_OR_SUPER_2_ETHANOL_10_BLEND: :premium_or_super_2_ethanol_10_blend
|
|
2917
|
+
|
|
2918
|
+
# Mid or plus ethanol 2–15% blend
|
|
2919
|
+
MID_OR_PLUS_ETHANOL_2_15_BLEND: :mid_or_plus_ethanol_2_15_blend
|
|
2920
|
+
|
|
2921
|
+
# Premium or super ethanol 2–15% blend
|
|
2922
|
+
PREMIUM_OR_SUPER_ETHANOL_2_15_BLEND: :premium_or_super_ethanol_2_15_blend
|
|
2923
|
+
|
|
2924
|
+
# Premium or super 2 ethanol 5% blend outside the United States
|
|
2925
|
+
PREMIUM_OR_SUPER_2_ETHANOL_5_BLEND_NON_US: :premium_or_super_2_ethanol_5_blend_non_us
|
|
2926
|
+
|
|
2927
|
+
# Regular ethanol 10% blend
|
|
2928
|
+
REGULAR_ETHANOL_10_BLEND: :regular_ethanol_10_blend
|
|
2929
|
+
|
|
2930
|
+
# Mid or plus ethanol 10% blend
|
|
2931
|
+
MID_OR_PLUS_ETHANOL_10_BLEND: :mid_or_plus_ethanol_10_blend
|
|
2932
|
+
|
|
2933
|
+
# Premium or super ethanol 10% blend
|
|
2934
|
+
PREMIUM_OR_SUPER_ETHANOL_10_BLEND: :premium_or_super_ethanol_10_blend
|
|
2935
|
+
|
|
2936
|
+
# B2 diesel blend 2% biodiesel
|
|
2937
|
+
B2_DIESEL_BLEND_2_BIODIESEL: :b2_diesel_blend_2_biodiesel
|
|
2938
|
+
|
|
2939
|
+
# B5 diesel blend 5% biodiesel
|
|
2940
|
+
B5_DIESEL_BLEND_5_BIODIESEL: :b5_diesel_blend_5_biodiesel
|
|
2941
|
+
|
|
2942
|
+
# B10 diesel blend 10% biodiesel
|
|
2943
|
+
B10_DIESEL_BLEND_10_BIODIESEL: :b10_diesel_blend_10_biodiesel
|
|
2944
|
+
|
|
2945
|
+
# B11 diesel blend 11% biodiesel
|
|
2946
|
+
B11_DIESEL_BLEND_11_BIODIESEL: :b11_diesel_blend_11_biodiesel
|
|
2947
|
+
|
|
2948
|
+
# B15 diesel blend 15% biodiesel
|
|
2949
|
+
B15_DIESEL_BLEND_15_BIODIESEL: :b15_diesel_blend_15_biodiesel
|
|
2950
|
+
|
|
2951
|
+
# B20 diesel blend 20% biodiesel
|
|
2952
|
+
B20_DIESEL_BLEND_20_BIODIESEL: :b20_diesel_blend_20_biodiesel
|
|
2953
|
+
|
|
2954
|
+
# B100 diesel blend 100% biodiesel
|
|
2955
|
+
B100_DIESEL_BLEND_100_BIODIESEL: :b100_diesel_blend_100_biodiesel
|
|
2956
|
+
|
|
2957
|
+
# B1 diesel blend 1% biodiesel
|
|
2958
|
+
B1_DIESEL_BLEND_1_BIODIESEL: :b1_diesel_blend_1_biodiesel
|
|
2959
|
+
|
|
2960
|
+
# Additized diesel 2
|
|
2961
|
+
ADDITIZED_DIESEL_2: :additized_diesel_2
|
|
2962
|
+
|
|
2963
|
+
# Additized diesel 3
|
|
2964
|
+
ADDITIZED_DIESEL_3: :additized_diesel_3
|
|
2965
|
+
|
|
2966
|
+
# B7 diesel blend 7% biodiesel outside the United States
|
|
2967
|
+
B7_DIESEL_BLEND_7_BIODIESEL_NON_US: :b7_diesel_blend_7_biodiesel_non_us
|
|
2968
|
+
|
|
2969
|
+
# B7 premium diesel blend 7% biodiesel outside the United States
|
|
2970
|
+
B7_PREMIUM_DIESEL_BLEND_7_BIODIESEL_NON_US: :b7_premium_diesel_blend_7_biodiesel_non_us
|
|
2971
|
+
|
|
2972
|
+
# Renewable diesel R95 or greater
|
|
2973
|
+
RENEWABLE_DIESEL_R95_OR_GREATER: :renewable_diesel_r95_or_greater
|
|
2974
|
+
|
|
2975
|
+
# Renewable diesel biodiesel 6% to 20%
|
|
2976
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20: :renewable_diesel_biodiesel_6_to_20
|
|
2977
|
+
|
|
2978
|
+
# Diesel exhaust fluid pump
|
|
2979
|
+
DIESEL_EXHAUST_FLUID_PUMP: :diesel_exhaust_fluid_pump
|
|
2980
|
+
|
|
2981
|
+
# Premium diesel 1
|
|
2982
|
+
PREMIUM_DIESEL_1: :premium_diesel_1
|
|
2983
|
+
|
|
2984
|
+
# Regular ethanol 15% blend
|
|
2985
|
+
REGULAR_ETHANOL_15_BLEND: :regular_ethanol_15_blend
|
|
2986
|
+
|
|
2987
|
+
# Mid or plus ethanol 15% blend
|
|
2988
|
+
MID_OR_PLUS_ETHANOL_15_BLEND: :mid_or_plus_ethanol_15_blend
|
|
2989
|
+
|
|
2990
|
+
# Premium or super ethanol 15% blend
|
|
2991
|
+
PREMIUM_OR_SUPER_ETHANOL_15_BLEND: :premium_or_super_ethanol_15_blend
|
|
2992
|
+
|
|
2993
|
+
# Premium diesel blend less than 20% biodiesel
|
|
2994
|
+
PREMIUM_DIESEL_BLEND_LESS_THAN_20_BIODIESEL: :premium_diesel_blend_less_than_20_biodiesel
|
|
2995
|
+
|
|
2996
|
+
# Premium diesel blend 20% or more biodiesel
|
|
2997
|
+
PREMIUM_DIESEL_BLEND_20_OR_MORE_BIODIESEL: :premium_diesel_blend_20_or_more_biodiesel
|
|
2998
|
+
|
|
2999
|
+
# B75 diesel blend 75% biodiesel
|
|
3000
|
+
B75_DIESEL_BLEND_75_BIODIESEL: :b75_diesel_blend_75_biodiesel
|
|
3001
|
+
|
|
3002
|
+
# B99 diesel blend 99% biodiesel
|
|
3003
|
+
B99_DIESEL_BLEND_99_BIODIESEL: :b99_diesel_blend_99_biodiesel
|
|
3004
|
+
|
|
3005
|
+
# Reserved for preauthorization use only
|
|
3006
|
+
RESERVED_FOR_PREAUTHORIZATION_USE_ONLY: :reserved_for_preauthorization_use_only
|
|
3007
|
+
|
|
3008
|
+
# Undefined fuel reserved for proprietary use
|
|
3009
|
+
UNDEFINED_FUEL_RESERVED_FOR_PROPRIETARY_USE: :undefined_fuel_reserved_for_proprietary_use
|
|
3010
|
+
|
|
3011
|
+
# Miscellaneous fuel
|
|
3012
|
+
MISCELLANEOUS_FUEL: :miscellaneous_fuel
|
|
3013
|
+
|
|
3014
|
+
# Jet fuel
|
|
3015
|
+
JET_FUEL: :jet_fuel
|
|
3016
|
+
|
|
3017
|
+
# Aviation fuel regular
|
|
3018
|
+
AVIATION_FUEL_REGULAR: :aviation_fuel_regular
|
|
3019
|
+
|
|
3020
|
+
# Aviation fuel premium
|
|
3021
|
+
AVIATION_FUEL_PREMIUM: :aviation_fuel_premium
|
|
3022
|
+
|
|
3023
|
+
# Aviation fuel JP8
|
|
3024
|
+
AVIATION_FUEL_JP8: :aviation_fuel_jp8
|
|
3025
|
+
|
|
3026
|
+
# Aviation fuel 4
|
|
3027
|
+
AVIATION_FUEL_4: :aviation_fuel_4
|
|
3028
|
+
|
|
3029
|
+
# Aviation fuel 5
|
|
3030
|
+
AVIATION_FUEL_5: :aviation_fuel_5
|
|
3031
|
+
|
|
3032
|
+
# Biojet diesel
|
|
3033
|
+
BIOJET_DIESEL: :biojet_diesel
|
|
3034
|
+
|
|
3035
|
+
# Aviation biofuel gasoline
|
|
3036
|
+
AVIATION_BIOFUEL_GASOLINE: :aviation_biofuel_gasoline
|
|
3037
|
+
|
|
3038
|
+
# Undefined aviation fuel reserved for proprietary use
|
|
3039
|
+
UNDEFINED_AVIATION_FUEL_RESERVED_FOR_PROPRIETARY_USE: :undefined_aviation_fuel_reserved_for_proprietary_use
|
|
3040
|
+
|
|
3041
|
+
# Miscellaneous aviation fuel
|
|
3042
|
+
MISCELLANEOUS_AVIATION_FUEL: :miscellaneous_aviation_fuel
|
|
3043
|
+
|
|
3044
|
+
# Marine fuel 1
|
|
3045
|
+
MARINE_FUEL_1: :marine_fuel_1
|
|
3046
|
+
|
|
3047
|
+
# Marine fuel 2
|
|
3048
|
+
MARINE_FUEL_2: :marine_fuel_2
|
|
3049
|
+
|
|
3050
|
+
# Marine fuel 3
|
|
3051
|
+
MARINE_FUEL_3: :marine_fuel_3
|
|
3052
|
+
|
|
3053
|
+
# Marine fuel 4
|
|
3054
|
+
MARINE_FUEL_4: :marine_fuel_4
|
|
3055
|
+
|
|
3056
|
+
# Marine fuel 5
|
|
3057
|
+
MARINE_FUEL_5: :marine_fuel_5
|
|
3058
|
+
|
|
3059
|
+
# Marine other
|
|
3060
|
+
MARINE_OTHER: :marine_other
|
|
3061
|
+
|
|
3062
|
+
# Marine diesel
|
|
3063
|
+
MARINE_DIESEL: :marine_diesel
|
|
3064
|
+
|
|
3065
|
+
# Miscellaneous marine fuel
|
|
3066
|
+
MISCELLANEOUS_MARINE_FUEL: :miscellaneous_marine_fuel
|
|
3067
|
+
|
|
3068
|
+
# Kerosene low sulfur
|
|
3069
|
+
KEROSENE_LOW_SULFUR: :kerosene_low_sulfur
|
|
3070
|
+
|
|
3071
|
+
# White gas
|
|
3072
|
+
WHITE_GAS: :white_gas
|
|
3073
|
+
|
|
3074
|
+
# Heating oil
|
|
3075
|
+
HEATING_OIL: :heating_oil
|
|
3076
|
+
|
|
3077
|
+
# Other fuel non-taxable
|
|
3078
|
+
OTHER_FUEL_NON_TAXABLE: :other_fuel_non_taxable
|
|
3079
|
+
|
|
3080
|
+
# Kerosene ultra low sulfur
|
|
3081
|
+
KEROSENE_ULTRA_LOW_SULFUR: :kerosene_ultra_low_sulfur
|
|
3082
|
+
|
|
3083
|
+
# Electric vehicle charging level 1 110 volt
|
|
3084
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_1_110_VOLT: :electric_vehicle_charging_level_1_110_volt
|
|
3085
|
+
|
|
3086
|
+
# Electric vehicle charging level 2 240 volt
|
|
3087
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_2_240_VOLT: :electric_vehicle_charging_level_2_240_volt
|
|
3088
|
+
|
|
3089
|
+
# Electric vehicle charging level 3 480 volt
|
|
3090
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_3_480_VOLT: :electric_vehicle_charging_level_3_480_volt
|
|
3091
|
+
|
|
3092
|
+
# Renewable diesel R95 or greater off-road non-taxable
|
|
3093
|
+
RENEWABLE_DIESEL_R95_OR_GREATER_OFF_ROAD_NON_TAXABLE: :renewable_diesel_r95_or_greater_off_road_non_taxable
|
|
3094
|
+
|
|
3095
|
+
# Biodiesel blend 1% off-road non-taxable
|
|
3096
|
+
BIODIESEL_BLEND_1_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_1_off_road_non_taxable
|
|
3097
|
+
|
|
3098
|
+
# Biodiesel blend 75% off-road non-taxable
|
|
3099
|
+
BIODIESEL_BLEND_75_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_75_off_road_non_taxable
|
|
3100
|
+
|
|
3101
|
+
# Biodiesel blend 99% off-road non-taxable
|
|
3102
|
+
BIODIESEL_BLEND_99_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_99_off_road_non_taxable
|
|
3103
|
+
|
|
3104
|
+
# Biodiesel blend 100% off-road non-taxable
|
|
3105
|
+
BIODIESEL_BLEND_100_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_100_off_road_non_taxable
|
|
3106
|
+
|
|
3107
|
+
# Renewable diesel biodiesel 6% to 20% off-road non-taxable
|
|
3108
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20_OFF_ROAD_NON_TAXABLE: :renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
|
|
3109
|
+
|
|
3110
|
+
# Electric vehicle charging level 4 800 volt
|
|
3111
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_4_800_VOLT: :electric_vehicle_charging_level_4_800_volt
|
|
3112
|
+
|
|
3113
|
+
# Electric vehicle charging level 5 megawatt
|
|
3114
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_5_MEGAWATT: :electric_vehicle_charging_level_5_megawatt
|
|
3115
|
+
|
|
3116
|
+
# Hydrotreated vegetable oil 100
|
|
3117
|
+
HYDROTREATED_VEGETABLE_OIL_100: :hydrotreated_vegetable_oil_100
|
|
3118
|
+
|
|
3119
|
+
# Bio compressed natural gas
|
|
3120
|
+
BIO_COMPRESSED_NATURAL_GAS: :bio_compressed_natural_gas
|
|
3121
|
+
|
|
3122
|
+
# Miscellaneous other fuel
|
|
3123
|
+
MISCELLANEOUS_OTHER_FUEL: :miscellaneous_other_fuel
|
|
3124
|
+
|
|
3125
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_type]
|
|
3126
|
+
end
|
|
3127
|
+
|
|
3128
|
+
type fuel_unit_of_measure =
|
|
3129
|
+
:liter
|
|
3130
|
+
| :us_gallon
|
|
3131
|
+
| :imperial_gallon
|
|
3132
|
+
| :kilogram
|
|
3133
|
+
| :pound
|
|
3134
|
+
| :charging_minutes
|
|
3135
|
+
| :kilowatt_hour
|
|
3136
|
+
|
|
3137
|
+
module FuelUnitOfMeasure
|
|
3138
|
+
extend Increase::Internal::Type::Enum
|
|
3139
|
+
|
|
3140
|
+
# Liter
|
|
3141
|
+
LITER: :liter
|
|
3142
|
+
|
|
3143
|
+
# US gallon
|
|
3144
|
+
US_GALLON: :us_gallon
|
|
3145
|
+
|
|
3146
|
+
# Imperial gallon
|
|
3147
|
+
IMPERIAL_GALLON: :imperial_gallon
|
|
3148
|
+
|
|
3149
|
+
# Kilogram
|
|
3150
|
+
KILOGRAM: :kilogram
|
|
3151
|
+
|
|
3152
|
+
# Pound
|
|
3153
|
+
POUND: :pound
|
|
3154
|
+
|
|
3155
|
+
# Charging minutes
|
|
3156
|
+
CHARGING_MINUTES: :charging_minutes
|
|
3157
|
+
|
|
3158
|
+
# Kilowatt hour
|
|
3159
|
+
KILOWATT_HOUR: :kilowatt_hour
|
|
3160
|
+
|
|
3161
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure]
|
|
3162
|
+
end
|
|
3163
|
+
|
|
3164
|
+
type purchase_type =
|
|
3165
|
+
:fuel_purchase
|
|
3166
|
+
| :non_fuel_purchase
|
|
3167
|
+
| :fuel_and_non_fuel_purchase
|
|
3168
|
+
| :fuel_purchase_with_multiple_fuel_types
|
|
3169
|
+
|
|
3170
|
+
module PurchaseType
|
|
3171
|
+
extend Increase::Internal::Type::Enum
|
|
3172
|
+
|
|
3173
|
+
# Fuel purchase
|
|
3174
|
+
FUEL_PURCHASE: :fuel_purchase
|
|
3175
|
+
|
|
3176
|
+
# Non-fuel purchase
|
|
3177
|
+
NON_FUEL_PURCHASE: :non_fuel_purchase
|
|
3178
|
+
|
|
3179
|
+
# Fuel and non-fuel purchase
|
|
3180
|
+
FUEL_AND_NON_FUEL_PURCHASE: :fuel_and_non_fuel_purchase
|
|
3181
|
+
|
|
3182
|
+
# Fuel purchase with multiple fuel types
|
|
3183
|
+
FUEL_PURCHASE_WITH_MULTIPLE_FUEL_TYPES: :fuel_purchase_with_multiple_fuel_types
|
|
3184
|
+
|
|
3185
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::purchase_type]
|
|
3186
|
+
end
|
|
3187
|
+
|
|
3188
|
+
type service_type =
|
|
3189
|
+
:full_service | :self_service | :high_speed_dispense
|
|
3190
|
+
|
|
3191
|
+
module ServiceType
|
|
3192
|
+
extend Increase::Internal::Type::Enum
|
|
3193
|
+
|
|
3194
|
+
# Full service
|
|
3195
|
+
FULL_SERVICE: :full_service
|
|
3196
|
+
|
|
3197
|
+
# Self service
|
|
3198
|
+
SELF_SERVICE: :self_service
|
|
3199
|
+
|
|
3200
|
+
# High speed dispense
|
|
3201
|
+
HIGH_SPEED_DISPENSE: :high_speed_dispense
|
|
3202
|
+
|
|
3203
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::service_type]
|
|
3204
|
+
end
|
|
3205
|
+
end
|
|
3206
|
+
|
|
2596
3207
|
type lodging =
|
|
2597
3208
|
{
|
|
2598
3209
|
check_in_date: Date?,
|
|
@@ -3647,6 +4258,7 @@ module Increase
|
|
|
3647
4258
|
{
|
|
3648
4259
|
car_rental: Increase::Transaction::Source::CardSettlement::PurchaseDetails::CarRental?,
|
|
3649
4260
|
customer_reference_identifier: String?,
|
|
4261
|
+
fleet: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Fleet?,
|
|
3650
4262
|
local_tax_amount: Integer?,
|
|
3651
4263
|
local_tax_currency: String?,
|
|
3652
4264
|
lodging: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Lodging?,
|
|
@@ -3662,6 +4274,8 @@ module Increase
|
|
|
3662
4274
|
|
|
3663
4275
|
attr_accessor customer_reference_identifier: String?
|
|
3664
4276
|
|
|
4277
|
+
attr_accessor fleet: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Fleet?
|
|
4278
|
+
|
|
3665
4279
|
attr_accessor local_tax_amount: Integer?
|
|
3666
4280
|
|
|
3667
4281
|
attr_accessor local_tax_currency: String?
|
|
@@ -3681,6 +4295,7 @@ module Increase
|
|
|
3681
4295
|
def initialize: (
|
|
3682
4296
|
car_rental: Increase::Transaction::Source::CardSettlement::PurchaseDetails::CarRental?,
|
|
3683
4297
|
customer_reference_identifier: String?,
|
|
4298
|
+
fleet: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Fleet?,
|
|
3684
4299
|
local_tax_amount: Integer?,
|
|
3685
4300
|
local_tax_currency: String?,
|
|
3686
4301
|
lodging: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Lodging?,
|
|
@@ -3694,6 +4309,7 @@ module Increase
|
|
|
3694
4309
|
def to_hash: -> {
|
|
3695
4310
|
car_rental: Increase::Transaction::Source::CardSettlement::PurchaseDetails::CarRental?,
|
|
3696
4311
|
customer_reference_identifier: String?,
|
|
4312
|
+
fleet: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Fleet?,
|
|
3697
4313
|
local_tax_amount: Integer?,
|
|
3698
4314
|
local_tax_currency: String?,
|
|
3699
4315
|
lodging: Increase::Transaction::Source::CardSettlement::PurchaseDetails::Lodging?,
|
|
@@ -3843,6 +4459,594 @@ module Increase
|
|
|
3843
4459
|
end
|
|
3844
4460
|
end
|
|
3845
4461
|
|
|
4462
|
+
type fleet =
|
|
4463
|
+
{
|
|
4464
|
+
employee_number: String?,
|
|
4465
|
+
fuel_quantity: String?,
|
|
4466
|
+
fuel_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_type?,
|
|
4467
|
+
fuel_unit_cost_amount: Integer?,
|
|
4468
|
+
fuel_unit_cost_currency: String?,
|
|
4469
|
+
fuel_unit_of_measure: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure?,
|
|
4470
|
+
gross_fuel_price_amount: Integer?,
|
|
4471
|
+
gross_fuel_price_currency: String?,
|
|
4472
|
+
gross_non_fuel_price_amount: Integer?,
|
|
4473
|
+
gross_non_fuel_price_currency: String?,
|
|
4474
|
+
net_fuel_price_amount: Integer?,
|
|
4475
|
+
net_fuel_price_currency: String?,
|
|
4476
|
+
net_non_fuel_price_amount: Integer?,
|
|
4477
|
+
net_non_fuel_price_currency: String?,
|
|
4478
|
+
odometer_reading: Integer?,
|
|
4479
|
+
purchase_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::purchase_type?,
|
|
4480
|
+
service_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::service_type?,
|
|
4481
|
+
trailer_number: String?
|
|
4482
|
+
}
|
|
4483
|
+
|
|
4484
|
+
class Fleet < Increase::Internal::Type::BaseModel
|
|
4485
|
+
attr_accessor employee_number: String?
|
|
4486
|
+
|
|
4487
|
+
attr_accessor fuel_quantity: String?
|
|
4488
|
+
|
|
4489
|
+
attr_accessor fuel_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_type?
|
|
4490
|
+
|
|
4491
|
+
attr_accessor fuel_unit_cost_amount: Integer?
|
|
4492
|
+
|
|
4493
|
+
attr_accessor fuel_unit_cost_currency: String?
|
|
4494
|
+
|
|
4495
|
+
attr_accessor fuel_unit_of_measure: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure?
|
|
4496
|
+
|
|
4497
|
+
attr_accessor gross_fuel_price_amount: Integer?
|
|
4498
|
+
|
|
4499
|
+
attr_accessor gross_fuel_price_currency: String?
|
|
4500
|
+
|
|
4501
|
+
attr_accessor gross_non_fuel_price_amount: Integer?
|
|
4502
|
+
|
|
4503
|
+
attr_accessor gross_non_fuel_price_currency: String?
|
|
4504
|
+
|
|
4505
|
+
attr_accessor net_fuel_price_amount: Integer?
|
|
4506
|
+
|
|
4507
|
+
attr_accessor net_fuel_price_currency: String?
|
|
4508
|
+
|
|
4509
|
+
attr_accessor net_non_fuel_price_amount: Integer?
|
|
4510
|
+
|
|
4511
|
+
attr_accessor net_non_fuel_price_currency: String?
|
|
4512
|
+
|
|
4513
|
+
attr_accessor odometer_reading: Integer?
|
|
4514
|
+
|
|
4515
|
+
attr_accessor purchase_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::purchase_type?
|
|
4516
|
+
|
|
4517
|
+
attr_accessor service_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::service_type?
|
|
4518
|
+
|
|
4519
|
+
attr_accessor trailer_number: String?
|
|
4520
|
+
|
|
4521
|
+
def initialize: (
|
|
4522
|
+
employee_number: String?,
|
|
4523
|
+
fuel_quantity: String?,
|
|
4524
|
+
fuel_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_type?,
|
|
4525
|
+
fuel_unit_cost_amount: Integer?,
|
|
4526
|
+
fuel_unit_cost_currency: String?,
|
|
4527
|
+
fuel_unit_of_measure: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure?,
|
|
4528
|
+
gross_fuel_price_amount: Integer?,
|
|
4529
|
+
gross_fuel_price_currency: String?,
|
|
4530
|
+
gross_non_fuel_price_amount: Integer?,
|
|
4531
|
+
gross_non_fuel_price_currency: String?,
|
|
4532
|
+
net_fuel_price_amount: Integer?,
|
|
4533
|
+
net_fuel_price_currency: String?,
|
|
4534
|
+
net_non_fuel_price_amount: Integer?,
|
|
4535
|
+
net_non_fuel_price_currency: String?,
|
|
4536
|
+
odometer_reading: Integer?,
|
|
4537
|
+
purchase_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::purchase_type?,
|
|
4538
|
+
service_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::service_type?,
|
|
4539
|
+
trailer_number: String?
|
|
4540
|
+
) -> void
|
|
4541
|
+
|
|
4542
|
+
def to_hash: -> {
|
|
4543
|
+
employee_number: String?,
|
|
4544
|
+
fuel_quantity: String?,
|
|
4545
|
+
fuel_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_type?,
|
|
4546
|
+
fuel_unit_cost_amount: Integer?,
|
|
4547
|
+
fuel_unit_cost_currency: String?,
|
|
4548
|
+
fuel_unit_of_measure: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure?,
|
|
4549
|
+
gross_fuel_price_amount: Integer?,
|
|
4550
|
+
gross_fuel_price_currency: String?,
|
|
4551
|
+
gross_non_fuel_price_amount: Integer?,
|
|
4552
|
+
gross_non_fuel_price_currency: String?,
|
|
4553
|
+
net_fuel_price_amount: Integer?,
|
|
4554
|
+
net_fuel_price_currency: String?,
|
|
4555
|
+
net_non_fuel_price_amount: Integer?,
|
|
4556
|
+
net_non_fuel_price_currency: String?,
|
|
4557
|
+
odometer_reading: Integer?,
|
|
4558
|
+
purchase_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::purchase_type?,
|
|
4559
|
+
service_type: Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::service_type?,
|
|
4560
|
+
trailer_number: String?
|
|
4561
|
+
}
|
|
4562
|
+
|
|
4563
|
+
type fuel_type =
|
|
4564
|
+
:regular
|
|
4565
|
+
| :mid_or_plus
|
|
4566
|
+
| :premium_or_super
|
|
4567
|
+
| :mid_or_plus_2
|
|
4568
|
+
| :premium_or_super_2
|
|
4569
|
+
| :regular_ethanol_5_blend_non_us
|
|
4570
|
+
| :mid_or_plus_ethanol_5_blend_non_us
|
|
4571
|
+
| :premium_or_super_ethanol_5_blend_non_us
|
|
4572
|
+
| :ethanol_7_7_blend
|
|
4573
|
+
| :mid_or_plus_2_ethanol_5_blend_non_us
|
|
4574
|
+
| :green_gasoline_regular
|
|
4575
|
+
| :green_gasoline_mid_or_plus
|
|
4576
|
+
| :green_gasoline_premium_or_super
|
|
4577
|
+
| :regular_diesel_2
|
|
4578
|
+
| :premium_diesel_2
|
|
4579
|
+
| :regular_diesel_1
|
|
4580
|
+
| :compressed_natural_gas
|
|
4581
|
+
| :liquid_propane_gas
|
|
4582
|
+
| :liquid_natural_gas
|
|
4583
|
+
| :e85
|
|
4584
|
+
| :regular_reformulated
|
|
4585
|
+
| :mid_or_plus_reformulated
|
|
4586
|
+
| :premium_or_super_reformulated
|
|
4587
|
+
| :mid_or_plus_2_reformulated
|
|
4588
|
+
| :premium_or_super_2_reformulated
|
|
4589
|
+
| :diesel_off_road_1_2_non_taxable
|
|
4590
|
+
| :diesel_off_road_non_taxable
|
|
4591
|
+
| :biodiesel_blend_off_road_non_taxable
|
|
4592
|
+
| :racing_fuel
|
|
4593
|
+
| :mid_or_plus_2_ethanol_10_blend
|
|
4594
|
+
| :premium_or_super_2_ethanol_10_blend
|
|
4595
|
+
| :mid_or_plus_ethanol_2_15_blend
|
|
4596
|
+
| :premium_or_super_ethanol_2_15_blend
|
|
4597
|
+
| :premium_or_super_2_ethanol_5_blend_non_us
|
|
4598
|
+
| :regular_ethanol_10_blend
|
|
4599
|
+
| :mid_or_plus_ethanol_10_blend
|
|
4600
|
+
| :premium_or_super_ethanol_10_blend
|
|
4601
|
+
| :b2_diesel_blend_2_biodiesel
|
|
4602
|
+
| :b5_diesel_blend_5_biodiesel
|
|
4603
|
+
| :b10_diesel_blend_10_biodiesel
|
|
4604
|
+
| :b11_diesel_blend_11_biodiesel
|
|
4605
|
+
| :b15_diesel_blend_15_biodiesel
|
|
4606
|
+
| :b20_diesel_blend_20_biodiesel
|
|
4607
|
+
| :b100_diesel_blend_100_biodiesel
|
|
4608
|
+
| :b1_diesel_blend_1_biodiesel
|
|
4609
|
+
| :additized_diesel_2
|
|
4610
|
+
| :additized_diesel_3
|
|
4611
|
+
| :b7_diesel_blend_7_biodiesel_non_us
|
|
4612
|
+
| :b7_premium_diesel_blend_7_biodiesel_non_us
|
|
4613
|
+
| :renewable_diesel_r95_or_greater
|
|
4614
|
+
| :renewable_diesel_biodiesel_6_to_20
|
|
4615
|
+
| :diesel_exhaust_fluid_pump
|
|
4616
|
+
| :premium_diesel_1
|
|
4617
|
+
| :regular_ethanol_15_blend
|
|
4618
|
+
| :mid_or_plus_ethanol_15_blend
|
|
4619
|
+
| :premium_or_super_ethanol_15_blend
|
|
4620
|
+
| :premium_diesel_blend_less_than_20_biodiesel
|
|
4621
|
+
| :premium_diesel_blend_20_or_more_biodiesel
|
|
4622
|
+
| :b75_diesel_blend_75_biodiesel
|
|
4623
|
+
| :b99_diesel_blend_99_biodiesel
|
|
4624
|
+
| :reserved_for_preauthorization_use_only
|
|
4625
|
+
| :undefined_fuel_reserved_for_proprietary_use
|
|
4626
|
+
| :miscellaneous_fuel
|
|
4627
|
+
| :jet_fuel
|
|
4628
|
+
| :aviation_fuel_regular
|
|
4629
|
+
| :aviation_fuel_premium
|
|
4630
|
+
| :aviation_fuel_jp8
|
|
4631
|
+
| :aviation_fuel_4
|
|
4632
|
+
| :aviation_fuel_5
|
|
4633
|
+
| :biojet_diesel
|
|
4634
|
+
| :aviation_biofuel_gasoline
|
|
4635
|
+
| :undefined_aviation_fuel_reserved_for_proprietary_use
|
|
4636
|
+
| :miscellaneous_aviation_fuel
|
|
4637
|
+
| :marine_fuel_1
|
|
4638
|
+
| :marine_fuel_2
|
|
4639
|
+
| :marine_fuel_3
|
|
4640
|
+
| :marine_fuel_4
|
|
4641
|
+
| :marine_fuel_5
|
|
4642
|
+
| :marine_other
|
|
4643
|
+
| :marine_diesel
|
|
4644
|
+
| :miscellaneous_marine_fuel
|
|
4645
|
+
| :kerosene_low_sulfur
|
|
4646
|
+
| :white_gas
|
|
4647
|
+
| :heating_oil
|
|
4648
|
+
| :other_fuel_non_taxable
|
|
4649
|
+
| :kerosene_ultra_low_sulfur
|
|
4650
|
+
| :electric_vehicle_charging_level_1_110_volt
|
|
4651
|
+
| :electric_vehicle_charging_level_2_240_volt
|
|
4652
|
+
| :electric_vehicle_charging_level_3_480_volt
|
|
4653
|
+
| :renewable_diesel_r95_or_greater_off_road_non_taxable
|
|
4654
|
+
| :biodiesel_blend_1_off_road_non_taxable
|
|
4655
|
+
| :biodiesel_blend_75_off_road_non_taxable
|
|
4656
|
+
| :biodiesel_blend_99_off_road_non_taxable
|
|
4657
|
+
| :biodiesel_blend_100_off_road_non_taxable
|
|
4658
|
+
| :renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
|
|
4659
|
+
| :electric_vehicle_charging_level_4_800_volt
|
|
4660
|
+
| :electric_vehicle_charging_level_5_megawatt
|
|
4661
|
+
| :hydrotreated_vegetable_oil_100
|
|
4662
|
+
| :bio_compressed_natural_gas
|
|
4663
|
+
| :miscellaneous_other_fuel
|
|
4664
|
+
|
|
4665
|
+
module FuelType
|
|
4666
|
+
extend Increase::Internal::Type::Enum
|
|
4667
|
+
|
|
4668
|
+
# Regular
|
|
4669
|
+
REGULAR: :regular
|
|
4670
|
+
|
|
4671
|
+
# Mid or plus
|
|
4672
|
+
MID_OR_PLUS: :mid_or_plus
|
|
4673
|
+
|
|
4674
|
+
# Premium or super
|
|
4675
|
+
PREMIUM_OR_SUPER: :premium_or_super
|
|
4676
|
+
|
|
4677
|
+
# Mid or plus 2
|
|
4678
|
+
MID_OR_PLUS_2: :mid_or_plus_2
|
|
4679
|
+
|
|
4680
|
+
# Premium or super 2
|
|
4681
|
+
PREMIUM_OR_SUPER_2: :premium_or_super_2
|
|
4682
|
+
|
|
4683
|
+
# Regular ethanol 5% blend outside the United States
|
|
4684
|
+
REGULAR_ETHANOL_5_BLEND_NON_US: :regular_ethanol_5_blend_non_us
|
|
4685
|
+
|
|
4686
|
+
# Mid or plus ethanol 5% blend outside the United States
|
|
4687
|
+
MID_OR_PLUS_ETHANOL_5_BLEND_NON_US: :mid_or_plus_ethanol_5_blend_non_us
|
|
4688
|
+
|
|
4689
|
+
# Premium or super ethanol 5% blend outside the United States
|
|
4690
|
+
PREMIUM_OR_SUPER_ETHANOL_5_BLEND_NON_US: :premium_or_super_ethanol_5_blend_non_us
|
|
4691
|
+
|
|
4692
|
+
# Ethanol 7.7% blend
|
|
4693
|
+
ETHANOL_7_7_BLEND: :ethanol_7_7_blend
|
|
4694
|
+
|
|
4695
|
+
# Mid or plus 2 ethanol 5% blend outside the United States
|
|
4696
|
+
MID_OR_PLUS_2_ETHANOL_5_BLEND_NON_US: :mid_or_plus_2_ethanol_5_blend_non_us
|
|
4697
|
+
|
|
4698
|
+
# Green gasoline regular
|
|
4699
|
+
GREEN_GASOLINE_REGULAR: :green_gasoline_regular
|
|
4700
|
+
|
|
4701
|
+
# Green gasoline mid or plus
|
|
4702
|
+
GREEN_GASOLINE_MID_OR_PLUS: :green_gasoline_mid_or_plus
|
|
4703
|
+
|
|
4704
|
+
# Green gasoline premium or super
|
|
4705
|
+
GREEN_GASOLINE_PREMIUM_OR_SUPER: :green_gasoline_premium_or_super
|
|
4706
|
+
|
|
4707
|
+
# Regular diesel 2
|
|
4708
|
+
REGULAR_DIESEL_2: :regular_diesel_2
|
|
4709
|
+
|
|
4710
|
+
# Premium diesel 2
|
|
4711
|
+
PREMIUM_DIESEL_2: :premium_diesel_2
|
|
4712
|
+
|
|
4713
|
+
# Regular diesel 1
|
|
4714
|
+
REGULAR_DIESEL_1: :regular_diesel_1
|
|
4715
|
+
|
|
4716
|
+
# Compressed natural gas
|
|
4717
|
+
COMPRESSED_NATURAL_GAS: :compressed_natural_gas
|
|
4718
|
+
|
|
4719
|
+
# Liquid propane gas
|
|
4720
|
+
LIQUID_PROPANE_GAS: :liquid_propane_gas
|
|
4721
|
+
|
|
4722
|
+
# Liquid natural gas
|
|
4723
|
+
LIQUID_NATURAL_GAS: :liquid_natural_gas
|
|
4724
|
+
|
|
4725
|
+
# E85
|
|
4726
|
+
E85: :e85
|
|
4727
|
+
|
|
4728
|
+
# Regular reformulated
|
|
4729
|
+
REGULAR_REFORMULATED: :regular_reformulated
|
|
4730
|
+
|
|
4731
|
+
# Mid or plus reformulated
|
|
4732
|
+
MID_OR_PLUS_REFORMULATED: :mid_or_plus_reformulated
|
|
4733
|
+
|
|
4734
|
+
# Premium or super reformulated
|
|
4735
|
+
PREMIUM_OR_SUPER_REFORMULATED: :premium_or_super_reformulated
|
|
4736
|
+
|
|
4737
|
+
# Mid or plus 2 reformulated
|
|
4738
|
+
MID_OR_PLUS_2_REFORMULATED: :mid_or_plus_2_reformulated
|
|
4739
|
+
|
|
4740
|
+
# Premium or super 2 reformulated
|
|
4741
|
+
PREMIUM_OR_SUPER_2_REFORMULATED: :premium_or_super_2_reformulated
|
|
4742
|
+
|
|
4743
|
+
# Diesel off-road 1/2 non-taxable
|
|
4744
|
+
DIESEL_OFF_ROAD_1_2_NON_TAXABLE: :diesel_off_road_1_2_non_taxable
|
|
4745
|
+
|
|
4746
|
+
# Diesel off-road non-taxable
|
|
4747
|
+
DIESEL_OFF_ROAD_NON_TAXABLE: :diesel_off_road_non_taxable
|
|
4748
|
+
|
|
4749
|
+
# Biodiesel blend off-road non-taxable
|
|
4750
|
+
BIODIESEL_BLEND_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_off_road_non_taxable
|
|
4751
|
+
|
|
4752
|
+
# Racing fuel
|
|
4753
|
+
RACING_FUEL: :racing_fuel
|
|
4754
|
+
|
|
4755
|
+
# Mid or plus 2 ethanol 10% blend
|
|
4756
|
+
MID_OR_PLUS_2_ETHANOL_10_BLEND: :mid_or_plus_2_ethanol_10_blend
|
|
4757
|
+
|
|
4758
|
+
# Premium or super 2 ethanol 10% blend
|
|
4759
|
+
PREMIUM_OR_SUPER_2_ETHANOL_10_BLEND: :premium_or_super_2_ethanol_10_blend
|
|
4760
|
+
|
|
4761
|
+
# Mid or plus ethanol 2–15% blend
|
|
4762
|
+
MID_OR_PLUS_ETHANOL_2_15_BLEND: :mid_or_plus_ethanol_2_15_blend
|
|
4763
|
+
|
|
4764
|
+
# Premium or super ethanol 2–15% blend
|
|
4765
|
+
PREMIUM_OR_SUPER_ETHANOL_2_15_BLEND: :premium_or_super_ethanol_2_15_blend
|
|
4766
|
+
|
|
4767
|
+
# Premium or super 2 ethanol 5% blend outside the United States
|
|
4768
|
+
PREMIUM_OR_SUPER_2_ETHANOL_5_BLEND_NON_US: :premium_or_super_2_ethanol_5_blend_non_us
|
|
4769
|
+
|
|
4770
|
+
# Regular ethanol 10% blend
|
|
4771
|
+
REGULAR_ETHANOL_10_BLEND: :regular_ethanol_10_blend
|
|
4772
|
+
|
|
4773
|
+
# Mid or plus ethanol 10% blend
|
|
4774
|
+
MID_OR_PLUS_ETHANOL_10_BLEND: :mid_or_plus_ethanol_10_blend
|
|
4775
|
+
|
|
4776
|
+
# Premium or super ethanol 10% blend
|
|
4777
|
+
PREMIUM_OR_SUPER_ETHANOL_10_BLEND: :premium_or_super_ethanol_10_blend
|
|
4778
|
+
|
|
4779
|
+
# B2 diesel blend 2% biodiesel
|
|
4780
|
+
B2_DIESEL_BLEND_2_BIODIESEL: :b2_diesel_blend_2_biodiesel
|
|
4781
|
+
|
|
4782
|
+
# B5 diesel blend 5% biodiesel
|
|
4783
|
+
B5_DIESEL_BLEND_5_BIODIESEL: :b5_diesel_blend_5_biodiesel
|
|
4784
|
+
|
|
4785
|
+
# B10 diesel blend 10% biodiesel
|
|
4786
|
+
B10_DIESEL_BLEND_10_BIODIESEL: :b10_diesel_blend_10_biodiesel
|
|
4787
|
+
|
|
4788
|
+
# B11 diesel blend 11% biodiesel
|
|
4789
|
+
B11_DIESEL_BLEND_11_BIODIESEL: :b11_diesel_blend_11_biodiesel
|
|
4790
|
+
|
|
4791
|
+
# B15 diesel blend 15% biodiesel
|
|
4792
|
+
B15_DIESEL_BLEND_15_BIODIESEL: :b15_diesel_blend_15_biodiesel
|
|
4793
|
+
|
|
4794
|
+
# B20 diesel blend 20% biodiesel
|
|
4795
|
+
B20_DIESEL_BLEND_20_BIODIESEL: :b20_diesel_blend_20_biodiesel
|
|
4796
|
+
|
|
4797
|
+
# B100 diesel blend 100% biodiesel
|
|
4798
|
+
B100_DIESEL_BLEND_100_BIODIESEL: :b100_diesel_blend_100_biodiesel
|
|
4799
|
+
|
|
4800
|
+
# B1 diesel blend 1% biodiesel
|
|
4801
|
+
B1_DIESEL_BLEND_1_BIODIESEL: :b1_diesel_blend_1_biodiesel
|
|
4802
|
+
|
|
4803
|
+
# Additized diesel 2
|
|
4804
|
+
ADDITIZED_DIESEL_2: :additized_diesel_2
|
|
4805
|
+
|
|
4806
|
+
# Additized diesel 3
|
|
4807
|
+
ADDITIZED_DIESEL_3: :additized_diesel_3
|
|
4808
|
+
|
|
4809
|
+
# B7 diesel blend 7% biodiesel outside the United States
|
|
4810
|
+
B7_DIESEL_BLEND_7_BIODIESEL_NON_US: :b7_diesel_blend_7_biodiesel_non_us
|
|
4811
|
+
|
|
4812
|
+
# B7 premium diesel blend 7% biodiesel outside the United States
|
|
4813
|
+
B7_PREMIUM_DIESEL_BLEND_7_BIODIESEL_NON_US: :b7_premium_diesel_blend_7_biodiesel_non_us
|
|
4814
|
+
|
|
4815
|
+
# Renewable diesel R95 or greater
|
|
4816
|
+
RENEWABLE_DIESEL_R95_OR_GREATER: :renewable_diesel_r95_or_greater
|
|
4817
|
+
|
|
4818
|
+
# Renewable diesel biodiesel 6% to 20%
|
|
4819
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20: :renewable_diesel_biodiesel_6_to_20
|
|
4820
|
+
|
|
4821
|
+
# Diesel exhaust fluid pump
|
|
4822
|
+
DIESEL_EXHAUST_FLUID_PUMP: :diesel_exhaust_fluid_pump
|
|
4823
|
+
|
|
4824
|
+
# Premium diesel 1
|
|
4825
|
+
PREMIUM_DIESEL_1: :premium_diesel_1
|
|
4826
|
+
|
|
4827
|
+
# Regular ethanol 15% blend
|
|
4828
|
+
REGULAR_ETHANOL_15_BLEND: :regular_ethanol_15_blend
|
|
4829
|
+
|
|
4830
|
+
# Mid or plus ethanol 15% blend
|
|
4831
|
+
MID_OR_PLUS_ETHANOL_15_BLEND: :mid_or_plus_ethanol_15_blend
|
|
4832
|
+
|
|
4833
|
+
# Premium or super ethanol 15% blend
|
|
4834
|
+
PREMIUM_OR_SUPER_ETHANOL_15_BLEND: :premium_or_super_ethanol_15_blend
|
|
4835
|
+
|
|
4836
|
+
# Premium diesel blend less than 20% biodiesel
|
|
4837
|
+
PREMIUM_DIESEL_BLEND_LESS_THAN_20_BIODIESEL: :premium_diesel_blend_less_than_20_biodiesel
|
|
4838
|
+
|
|
4839
|
+
# Premium diesel blend 20% or more biodiesel
|
|
4840
|
+
PREMIUM_DIESEL_BLEND_20_OR_MORE_BIODIESEL: :premium_diesel_blend_20_or_more_biodiesel
|
|
4841
|
+
|
|
4842
|
+
# B75 diesel blend 75% biodiesel
|
|
4843
|
+
B75_DIESEL_BLEND_75_BIODIESEL: :b75_diesel_blend_75_biodiesel
|
|
4844
|
+
|
|
4845
|
+
# B99 diesel blend 99% biodiesel
|
|
4846
|
+
B99_DIESEL_BLEND_99_BIODIESEL: :b99_diesel_blend_99_biodiesel
|
|
4847
|
+
|
|
4848
|
+
# Reserved for preauthorization use only
|
|
4849
|
+
RESERVED_FOR_PREAUTHORIZATION_USE_ONLY: :reserved_for_preauthorization_use_only
|
|
4850
|
+
|
|
4851
|
+
# Undefined fuel reserved for proprietary use
|
|
4852
|
+
UNDEFINED_FUEL_RESERVED_FOR_PROPRIETARY_USE: :undefined_fuel_reserved_for_proprietary_use
|
|
4853
|
+
|
|
4854
|
+
# Miscellaneous fuel
|
|
4855
|
+
MISCELLANEOUS_FUEL: :miscellaneous_fuel
|
|
4856
|
+
|
|
4857
|
+
# Jet fuel
|
|
4858
|
+
JET_FUEL: :jet_fuel
|
|
4859
|
+
|
|
4860
|
+
# Aviation fuel regular
|
|
4861
|
+
AVIATION_FUEL_REGULAR: :aviation_fuel_regular
|
|
4862
|
+
|
|
4863
|
+
# Aviation fuel premium
|
|
4864
|
+
AVIATION_FUEL_PREMIUM: :aviation_fuel_premium
|
|
4865
|
+
|
|
4866
|
+
# Aviation fuel JP8
|
|
4867
|
+
AVIATION_FUEL_JP8: :aviation_fuel_jp8
|
|
4868
|
+
|
|
4869
|
+
# Aviation fuel 4
|
|
4870
|
+
AVIATION_FUEL_4: :aviation_fuel_4
|
|
4871
|
+
|
|
4872
|
+
# Aviation fuel 5
|
|
4873
|
+
AVIATION_FUEL_5: :aviation_fuel_5
|
|
4874
|
+
|
|
4875
|
+
# Biojet diesel
|
|
4876
|
+
BIOJET_DIESEL: :biojet_diesel
|
|
4877
|
+
|
|
4878
|
+
# Aviation biofuel gasoline
|
|
4879
|
+
AVIATION_BIOFUEL_GASOLINE: :aviation_biofuel_gasoline
|
|
4880
|
+
|
|
4881
|
+
# Undefined aviation fuel reserved for proprietary use
|
|
4882
|
+
UNDEFINED_AVIATION_FUEL_RESERVED_FOR_PROPRIETARY_USE: :undefined_aviation_fuel_reserved_for_proprietary_use
|
|
4883
|
+
|
|
4884
|
+
# Miscellaneous aviation fuel
|
|
4885
|
+
MISCELLANEOUS_AVIATION_FUEL: :miscellaneous_aviation_fuel
|
|
4886
|
+
|
|
4887
|
+
# Marine fuel 1
|
|
4888
|
+
MARINE_FUEL_1: :marine_fuel_1
|
|
4889
|
+
|
|
4890
|
+
# Marine fuel 2
|
|
4891
|
+
MARINE_FUEL_2: :marine_fuel_2
|
|
4892
|
+
|
|
4893
|
+
# Marine fuel 3
|
|
4894
|
+
MARINE_FUEL_3: :marine_fuel_3
|
|
4895
|
+
|
|
4896
|
+
# Marine fuel 4
|
|
4897
|
+
MARINE_FUEL_4: :marine_fuel_4
|
|
4898
|
+
|
|
4899
|
+
# Marine fuel 5
|
|
4900
|
+
MARINE_FUEL_5: :marine_fuel_5
|
|
4901
|
+
|
|
4902
|
+
# Marine other
|
|
4903
|
+
MARINE_OTHER: :marine_other
|
|
4904
|
+
|
|
4905
|
+
# Marine diesel
|
|
4906
|
+
MARINE_DIESEL: :marine_diesel
|
|
4907
|
+
|
|
4908
|
+
# Miscellaneous marine fuel
|
|
4909
|
+
MISCELLANEOUS_MARINE_FUEL: :miscellaneous_marine_fuel
|
|
4910
|
+
|
|
4911
|
+
# Kerosene low sulfur
|
|
4912
|
+
KEROSENE_LOW_SULFUR: :kerosene_low_sulfur
|
|
4913
|
+
|
|
4914
|
+
# White gas
|
|
4915
|
+
WHITE_GAS: :white_gas
|
|
4916
|
+
|
|
4917
|
+
# Heating oil
|
|
4918
|
+
HEATING_OIL: :heating_oil
|
|
4919
|
+
|
|
4920
|
+
# Other fuel non-taxable
|
|
4921
|
+
OTHER_FUEL_NON_TAXABLE: :other_fuel_non_taxable
|
|
4922
|
+
|
|
4923
|
+
# Kerosene ultra low sulfur
|
|
4924
|
+
KEROSENE_ULTRA_LOW_SULFUR: :kerosene_ultra_low_sulfur
|
|
4925
|
+
|
|
4926
|
+
# Electric vehicle charging level 1 110 volt
|
|
4927
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_1_110_VOLT: :electric_vehicle_charging_level_1_110_volt
|
|
4928
|
+
|
|
4929
|
+
# Electric vehicle charging level 2 240 volt
|
|
4930
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_2_240_VOLT: :electric_vehicle_charging_level_2_240_volt
|
|
4931
|
+
|
|
4932
|
+
# Electric vehicle charging level 3 480 volt
|
|
4933
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_3_480_VOLT: :electric_vehicle_charging_level_3_480_volt
|
|
4934
|
+
|
|
4935
|
+
# Renewable diesel R95 or greater off-road non-taxable
|
|
4936
|
+
RENEWABLE_DIESEL_R95_OR_GREATER_OFF_ROAD_NON_TAXABLE: :renewable_diesel_r95_or_greater_off_road_non_taxable
|
|
4937
|
+
|
|
4938
|
+
# Biodiesel blend 1% off-road non-taxable
|
|
4939
|
+
BIODIESEL_BLEND_1_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_1_off_road_non_taxable
|
|
4940
|
+
|
|
4941
|
+
# Biodiesel blend 75% off-road non-taxable
|
|
4942
|
+
BIODIESEL_BLEND_75_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_75_off_road_non_taxable
|
|
4943
|
+
|
|
4944
|
+
# Biodiesel blend 99% off-road non-taxable
|
|
4945
|
+
BIODIESEL_BLEND_99_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_99_off_road_non_taxable
|
|
4946
|
+
|
|
4947
|
+
# Biodiesel blend 100% off-road non-taxable
|
|
4948
|
+
BIODIESEL_BLEND_100_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_100_off_road_non_taxable
|
|
4949
|
+
|
|
4950
|
+
# Renewable diesel biodiesel 6% to 20% off-road non-taxable
|
|
4951
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20_OFF_ROAD_NON_TAXABLE: :renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
|
|
4952
|
+
|
|
4953
|
+
# Electric vehicle charging level 4 800 volt
|
|
4954
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_4_800_VOLT: :electric_vehicle_charging_level_4_800_volt
|
|
4955
|
+
|
|
4956
|
+
# Electric vehicle charging level 5 megawatt
|
|
4957
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_5_MEGAWATT: :electric_vehicle_charging_level_5_megawatt
|
|
4958
|
+
|
|
4959
|
+
# Hydrotreated vegetable oil 100
|
|
4960
|
+
HYDROTREATED_VEGETABLE_OIL_100: :hydrotreated_vegetable_oil_100
|
|
4961
|
+
|
|
4962
|
+
# Bio compressed natural gas
|
|
4963
|
+
BIO_COMPRESSED_NATURAL_GAS: :bio_compressed_natural_gas
|
|
4964
|
+
|
|
4965
|
+
# Miscellaneous other fuel
|
|
4966
|
+
MISCELLANEOUS_OTHER_FUEL: :miscellaneous_other_fuel
|
|
4967
|
+
|
|
4968
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_type]
|
|
4969
|
+
end
|
|
4970
|
+
|
|
4971
|
+
type fuel_unit_of_measure =
|
|
4972
|
+
:liter
|
|
4973
|
+
| :us_gallon
|
|
4974
|
+
| :imperial_gallon
|
|
4975
|
+
| :kilogram
|
|
4976
|
+
| :pound
|
|
4977
|
+
| :charging_minutes
|
|
4978
|
+
| :kilowatt_hour
|
|
4979
|
+
|
|
4980
|
+
module FuelUnitOfMeasure
|
|
4981
|
+
extend Increase::Internal::Type::Enum
|
|
4982
|
+
|
|
4983
|
+
# Liter
|
|
4984
|
+
LITER: :liter
|
|
4985
|
+
|
|
4986
|
+
# US gallon
|
|
4987
|
+
US_GALLON: :us_gallon
|
|
4988
|
+
|
|
4989
|
+
# Imperial gallon
|
|
4990
|
+
IMPERIAL_GALLON: :imperial_gallon
|
|
4991
|
+
|
|
4992
|
+
# Kilogram
|
|
4993
|
+
KILOGRAM: :kilogram
|
|
4994
|
+
|
|
4995
|
+
# Pound
|
|
4996
|
+
POUND: :pound
|
|
4997
|
+
|
|
4998
|
+
# Charging minutes
|
|
4999
|
+
CHARGING_MINUTES: :charging_minutes
|
|
5000
|
+
|
|
5001
|
+
# Kilowatt hour
|
|
5002
|
+
KILOWATT_HOUR: :kilowatt_hour
|
|
5003
|
+
|
|
5004
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure]
|
|
5005
|
+
end
|
|
5006
|
+
|
|
5007
|
+
type purchase_type =
|
|
5008
|
+
:fuel_purchase
|
|
5009
|
+
| :non_fuel_purchase
|
|
5010
|
+
| :fuel_and_non_fuel_purchase
|
|
5011
|
+
| :fuel_purchase_with_multiple_fuel_types
|
|
5012
|
+
|
|
5013
|
+
module PurchaseType
|
|
5014
|
+
extend Increase::Internal::Type::Enum
|
|
5015
|
+
|
|
5016
|
+
# Fuel purchase
|
|
5017
|
+
FUEL_PURCHASE: :fuel_purchase
|
|
5018
|
+
|
|
5019
|
+
# Non-fuel purchase
|
|
5020
|
+
NON_FUEL_PURCHASE: :non_fuel_purchase
|
|
5021
|
+
|
|
5022
|
+
# Fuel and non-fuel purchase
|
|
5023
|
+
FUEL_AND_NON_FUEL_PURCHASE: :fuel_and_non_fuel_purchase
|
|
5024
|
+
|
|
5025
|
+
# Fuel purchase with multiple fuel types
|
|
5026
|
+
FUEL_PURCHASE_WITH_MULTIPLE_FUEL_TYPES: :fuel_purchase_with_multiple_fuel_types
|
|
5027
|
+
|
|
5028
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::purchase_type]
|
|
5029
|
+
end
|
|
5030
|
+
|
|
5031
|
+
type service_type =
|
|
5032
|
+
:full_service | :self_service | :high_speed_dispense
|
|
5033
|
+
|
|
5034
|
+
module ServiceType
|
|
5035
|
+
extend Increase::Internal::Type::Enum
|
|
5036
|
+
|
|
5037
|
+
# Full service
|
|
5038
|
+
FULL_SERVICE: :full_service
|
|
5039
|
+
|
|
5040
|
+
# Self service
|
|
5041
|
+
SELF_SERVICE: :self_service
|
|
5042
|
+
|
|
5043
|
+
# High speed dispense
|
|
5044
|
+
HIGH_SPEED_DISPENSE: :high_speed_dispense
|
|
5045
|
+
|
|
5046
|
+
def self?.values: -> ::Array[Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::service_type]
|
|
5047
|
+
end
|
|
5048
|
+
end
|
|
5049
|
+
|
|
3846
5050
|
type lodging =
|
|
3847
5051
|
{
|
|
3848
5052
|
check_in_date: Date?,
|
|
@@ -5797,6 +7001,22 @@ module Increase
|
|
|
5797
7001
|
def to_hash: -> { originator: String }
|
|
5798
7002
|
end
|
|
5799
7003
|
|
|
7004
|
+
type sepa_instant_transfer_acceptance =
|
|
7005
|
+
{ accepted_at: Time, settlement_amount: Integer }
|
|
7006
|
+
|
|
7007
|
+
class SepaInstantTransferAcceptance < Increase::Internal::Type::BaseModel
|
|
7008
|
+
attr_accessor accepted_at: Time
|
|
7009
|
+
|
|
7010
|
+
attr_accessor settlement_amount: Integer
|
|
7011
|
+
|
|
7012
|
+
def initialize: (
|
|
7013
|
+
accepted_at: Time,
|
|
7014
|
+
settlement_amount: Integer
|
|
7015
|
+
) -> void
|
|
7016
|
+
|
|
7017
|
+
def to_hash: -> { accepted_at: Time, settlement_amount: Integer }
|
|
7018
|
+
end
|
|
7019
|
+
|
|
5800
7020
|
type swift_transfer_intention = { transfer_id: String }
|
|
5801
7021
|
|
|
5802
7022
|
class SwiftTransferIntention < Increase::Internal::Type::BaseModel
|
|
@@ -5817,6 +7037,22 @@ module Increase
|
|
|
5817
7037
|
def to_hash: -> { transfer_id: String }
|
|
5818
7038
|
end
|
|
5819
7039
|
|
|
7040
|
+
type uk_faster_payment_system_transfer_acceptance =
|
|
7041
|
+
{ accepted_at: Time, settlement_amount: Integer }
|
|
7042
|
+
|
|
7043
|
+
class UkFasterPaymentSystemTransferAcceptance < Increase::Internal::Type::BaseModel
|
|
7044
|
+
attr_accessor accepted_at: Time
|
|
7045
|
+
|
|
7046
|
+
attr_accessor settlement_amount: Integer
|
|
7047
|
+
|
|
7048
|
+
def initialize: (
|
|
7049
|
+
accepted_at: Time,
|
|
7050
|
+
settlement_amount: Integer
|
|
7051
|
+
) -> void
|
|
7052
|
+
|
|
7053
|
+
def to_hash: -> { accepted_at: Time, settlement_amount: Integer }
|
|
7054
|
+
end
|
|
7055
|
+
|
|
5820
7056
|
type wire_transfer_intention =
|
|
5821
7057
|
{
|
|
5822
7058
|
account_number: String,
|