increase 1.352.0 → 1.354.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.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/increase/models/ach_transfer.rb +3 -3
  4. data/lib/increase/models/beneficial_owner_create_params.rb +3 -0
  5. data/lib/increase/models/beneficial_owner_update_params.rb +3 -0
  6. data/lib/increase/models/card_payment.rb +1177 -2
  7. data/lib/increase/models/check_transfer.rb +15 -9
  8. data/lib/increase/models/declined_transaction.rb +3 -0
  9. data/lib/increase/models/digital_wallet_token.rb +15 -0
  10. data/lib/increase/models/entity.rb +47 -1
  11. data/lib/increase/models/entity_beneficial_owner.rb +3 -0
  12. data/lib/increase/models/entity_create_params.rb +3 -0
  13. data/lib/increase/models/export.rb +19 -19
  14. data/lib/increase/models/export_create_params.rb +15 -15
  15. data/lib/increase/models/export_list_params.rb +19 -19
  16. data/lib/increase/models/inbound_wire_transfer.rb +10 -1
  17. data/lib/increase/models/real_time_decision.rb +3 -0
  18. data/lib/increase/models/real_time_decision_action_params.rb +3 -0
  19. data/lib/increase/models/simulations/digital_wallet_token_request_create_response.rb +9 -0
  20. data/lib/increase/models/simulations/entity_update_validation_params.rb +3 -0
  21. data/lib/increase/models/transaction.rb +1184 -3
  22. data/lib/increase/models/wire_drawdown_request.rb +3 -3
  23. data/lib/increase/models/wire_drawdown_request_list_params.rb +3 -3
  24. data/lib/increase/version.rb +1 -1
  25. data/rbi/increase/models/ach_transfer.rbi +3 -3
  26. data/rbi/increase/models/beneficial_owner_create_params.rbi +7 -0
  27. data/rbi/increase/models/beneficial_owner_update_params.rbi +7 -0
  28. data/rbi/increase/models/card_payment.rbi +5281 -2962
  29. data/rbi/increase/models/check_transfer.rbi +15 -9
  30. data/rbi/increase/models/declined_transaction.rbi +7 -0
  31. data/rbi/increase/models/digital_wallet_token.rbi +35 -0
  32. data/rbi/increase/models/entity.rbi +107 -0
  33. data/rbi/increase/models/entity_beneficial_owner.rbi +7 -0
  34. data/rbi/increase/models/entity_create_params.rbi +7 -0
  35. data/rbi/increase/models/export.rbi +32 -32
  36. data/rbi/increase/models/export_create_params.rbi +29 -29
  37. data/rbi/increase/models/export_list_params.rbi +37 -37
  38. data/rbi/increase/models/inbound_wire_transfer.rbi +8 -0
  39. data/rbi/increase/models/real_time_decision.rbi +7 -0
  40. data/rbi/increase/models/real_time_decision_action_params.rbi +7 -0
  41. data/rbi/increase/models/simulations/digital_wallet_token_request_create_response.rbi +21 -0
  42. data/rbi/increase/models/simulations/entity_update_validation_params.rbi +7 -0
  43. data/rbi/increase/models/transaction.rbi +4656 -2336
  44. data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
  45. data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
  46. data/sig/increase/models/ach_transfer.rbs +4 -4
  47. data/sig/increase/models/beneficial_owner_create_params.rbs +4 -0
  48. data/sig/increase/models/beneficial_owner_update_params.rbs +4 -0
  49. data/sig/increase/models/card_payment.rbs +1190 -0
  50. data/sig/increase/models/declined_transaction.rbs +4 -0
  51. data/sig/increase/models/digital_wallet_token.rbs +31 -2
  52. data/sig/increase/models/entity.rbs +43 -0
  53. data/sig/increase/models/entity_beneficial_owner.rbs +4 -0
  54. data/sig/increase/models/entity_create_params.rbs +4 -0
  55. data/sig/increase/models/export.rbs +28 -28
  56. data/sig/increase/models/export_create_params.rbs +22 -22
  57. data/sig/increase/models/export_list_params.rbs +28 -28
  58. data/sig/increase/models/inbound_wire_transfer.rbs +5 -0
  59. data/sig/increase/models/real_time_decision.rbs +4 -0
  60. data/sig/increase/models/real_time_decision_action_params.rbs +4 -0
  61. data/sig/increase/models/simulations/digital_wallet_token_request_create_response.rbs +12 -0
  62. data/sig/increase/models/simulations/entity_update_validation_params.rbs +4 -0
  63. data/sig/increase/models/transaction.rbs +1191 -0
  64. data/sig/increase/models/wire_drawdown_request.rbs +4 -4
  65. data/sig/increase/models/wire_drawdown_request_list_params.rbs +4 -4
  66. metadata +2 -2
@@ -3816,6 +3816,7 @@ module Increase
3816
3816
  | :exceeds_approval_limit
3817
3817
  | :card_temporarily_disabled
3818
3818
  | :suspected_fraud
3819
+ | :additional_customer_authentication_required
3819
3820
  | :other
3820
3821
 
3821
3822
  module RealTimeDecisionReason
@@ -3836,6 +3837,9 @@ module Increase
3836
3837
  # The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
3837
3838
  SUSPECTED_FRAUD: :suspected_fraud
3838
3839
 
3840
+ # Additional customer authentication is required to complete the transaction, such as 3DS.
3841
+ ADDITIONAL_CUSTOMER_AUTHENTICATION_REQUIRED: :additional_customer_authentication_required
3842
+
3839
3843
  # The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
3840
3844
  OTHER: :other
3841
3845
 
@@ -6387,6 +6391,7 @@ module Increase
6387
6391
  {
6388
6392
  car_rental: Increase::CardPayment::Element::CardRefund::PurchaseDetails::CarRental?,
6389
6393
  customer_reference_identifier: String?,
6394
+ fleet: Increase::CardPayment::Element::CardRefund::PurchaseDetails::Fleet?,
6390
6395
  local_tax_amount: Integer?,
6391
6396
  local_tax_currency: String?,
6392
6397
  lodging: Increase::CardPayment::Element::CardRefund::PurchaseDetails::Lodging?,
@@ -6402,6 +6407,8 @@ module Increase
6402
6407
 
6403
6408
  attr_accessor customer_reference_identifier: String?
6404
6409
 
6410
+ attr_accessor fleet: Increase::CardPayment::Element::CardRefund::PurchaseDetails::Fleet?
6411
+
6405
6412
  attr_accessor local_tax_amount: Integer?
6406
6413
 
6407
6414
  attr_accessor local_tax_currency: String?
@@ -6421,6 +6428,7 @@ module Increase
6421
6428
  def initialize: (
6422
6429
  car_rental: Increase::CardPayment::Element::CardRefund::PurchaseDetails::CarRental?,
6423
6430
  customer_reference_identifier: String?,
6431
+ fleet: Increase::CardPayment::Element::CardRefund::PurchaseDetails::Fleet?,
6424
6432
  local_tax_amount: Integer?,
6425
6433
  local_tax_currency: String?,
6426
6434
  lodging: Increase::CardPayment::Element::CardRefund::PurchaseDetails::Lodging?,
@@ -6434,6 +6442,7 @@ module Increase
6434
6442
  def to_hash: -> {
6435
6443
  car_rental: Increase::CardPayment::Element::CardRefund::PurchaseDetails::CarRental?,
6436
6444
  customer_reference_identifier: String?,
6445
+ fleet: Increase::CardPayment::Element::CardRefund::PurchaseDetails::Fleet?,
6437
6446
  local_tax_amount: Integer?,
6438
6447
  local_tax_currency: String?,
6439
6448
  lodging: Increase::CardPayment::Element::CardRefund::PurchaseDetails::Lodging?,
@@ -6583,6 +6592,594 @@ module Increase
6583
6592
  end
6584
6593
  end
6585
6594
 
6595
+ type fleet =
6596
+ {
6597
+ employee_number: String?,
6598
+ fuel_quantity: String?,
6599
+ fuel_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_type?,
6600
+ fuel_unit_cost_amount: Integer?,
6601
+ fuel_unit_cost_currency: String?,
6602
+ fuel_unit_of_measure: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure?,
6603
+ gross_fuel_price_amount: Integer?,
6604
+ gross_fuel_price_currency: String?,
6605
+ gross_non_fuel_price_amount: Integer?,
6606
+ gross_non_fuel_price_currency: String?,
6607
+ net_fuel_price_amount: Integer?,
6608
+ net_fuel_price_currency: String?,
6609
+ net_non_fuel_price_amount: Integer?,
6610
+ net_non_fuel_price_currency: String?,
6611
+ odometer_reading: Integer?,
6612
+ purchase_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::purchase_type?,
6613
+ service_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::service_type?,
6614
+ trailer_number: String?
6615
+ }
6616
+
6617
+ class Fleet < Increase::Internal::Type::BaseModel
6618
+ attr_accessor employee_number: String?
6619
+
6620
+ attr_accessor fuel_quantity: String?
6621
+
6622
+ attr_accessor fuel_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_type?
6623
+
6624
+ attr_accessor fuel_unit_cost_amount: Integer?
6625
+
6626
+ attr_accessor fuel_unit_cost_currency: String?
6627
+
6628
+ attr_accessor fuel_unit_of_measure: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure?
6629
+
6630
+ attr_accessor gross_fuel_price_amount: Integer?
6631
+
6632
+ attr_accessor gross_fuel_price_currency: String?
6633
+
6634
+ attr_accessor gross_non_fuel_price_amount: Integer?
6635
+
6636
+ attr_accessor gross_non_fuel_price_currency: String?
6637
+
6638
+ attr_accessor net_fuel_price_amount: Integer?
6639
+
6640
+ attr_accessor net_fuel_price_currency: String?
6641
+
6642
+ attr_accessor net_non_fuel_price_amount: Integer?
6643
+
6644
+ attr_accessor net_non_fuel_price_currency: String?
6645
+
6646
+ attr_accessor odometer_reading: Integer?
6647
+
6648
+ attr_accessor purchase_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::purchase_type?
6649
+
6650
+ attr_accessor service_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::service_type?
6651
+
6652
+ attr_accessor trailer_number: String?
6653
+
6654
+ def initialize: (
6655
+ employee_number: String?,
6656
+ fuel_quantity: String?,
6657
+ fuel_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_type?,
6658
+ fuel_unit_cost_amount: Integer?,
6659
+ fuel_unit_cost_currency: String?,
6660
+ fuel_unit_of_measure: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure?,
6661
+ gross_fuel_price_amount: Integer?,
6662
+ gross_fuel_price_currency: String?,
6663
+ gross_non_fuel_price_amount: Integer?,
6664
+ gross_non_fuel_price_currency: String?,
6665
+ net_fuel_price_amount: Integer?,
6666
+ net_fuel_price_currency: String?,
6667
+ net_non_fuel_price_amount: Integer?,
6668
+ net_non_fuel_price_currency: String?,
6669
+ odometer_reading: Integer?,
6670
+ purchase_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::purchase_type?,
6671
+ service_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::service_type?,
6672
+ trailer_number: String?
6673
+ ) -> void
6674
+
6675
+ def to_hash: -> {
6676
+ employee_number: String?,
6677
+ fuel_quantity: String?,
6678
+ fuel_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_type?,
6679
+ fuel_unit_cost_amount: Integer?,
6680
+ fuel_unit_cost_currency: String?,
6681
+ fuel_unit_of_measure: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure?,
6682
+ gross_fuel_price_amount: Integer?,
6683
+ gross_fuel_price_currency: String?,
6684
+ gross_non_fuel_price_amount: Integer?,
6685
+ gross_non_fuel_price_currency: String?,
6686
+ net_fuel_price_amount: Integer?,
6687
+ net_fuel_price_currency: String?,
6688
+ net_non_fuel_price_amount: Integer?,
6689
+ net_non_fuel_price_currency: String?,
6690
+ odometer_reading: Integer?,
6691
+ purchase_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::purchase_type?,
6692
+ service_type: Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::service_type?,
6693
+ trailer_number: String?
6694
+ }
6695
+
6696
+ type fuel_type =
6697
+ :regular
6698
+ | :mid_or_plus
6699
+ | :premium_or_super
6700
+ | :mid_or_plus_2
6701
+ | :premium_or_super_2
6702
+ | :regular_ethanol_5_blend_non_us
6703
+ | :mid_or_plus_ethanol_5_blend_non_us
6704
+ | :premium_or_super_ethanol_5_blend_non_us
6705
+ | :ethanol_7_7_blend
6706
+ | :mid_or_plus_2_ethanol_5_blend_non_us
6707
+ | :green_gasoline_regular
6708
+ | :green_gasoline_mid_or_plus
6709
+ | :green_gasoline_premium_or_super
6710
+ | :regular_diesel_2
6711
+ | :premium_diesel_2
6712
+ | :regular_diesel_1
6713
+ | :compressed_natural_gas
6714
+ | :liquid_propane_gas
6715
+ | :liquid_natural_gas
6716
+ | :e85
6717
+ | :regular_reformulated
6718
+ | :mid_or_plus_reformulated
6719
+ | :premium_or_super_reformulated
6720
+ | :mid_or_plus_2_reformulated
6721
+ | :premium_or_super_2_reformulated
6722
+ | :diesel_off_road_1_2_non_taxable
6723
+ | :diesel_off_road_non_taxable
6724
+ | :biodiesel_blend_off_road_non_taxable
6725
+ | :racing_fuel
6726
+ | :mid_or_plus_2_ethanol_10_blend
6727
+ | :premium_or_super_2_ethanol_10_blend
6728
+ | :mid_or_plus_ethanol_2_15_blend
6729
+ | :premium_or_super_ethanol_2_15_blend
6730
+ | :premium_or_super_2_ethanol_5_blend_non_us
6731
+ | :regular_ethanol_10_blend
6732
+ | :mid_or_plus_ethanol_10_blend
6733
+ | :premium_or_super_ethanol_10_blend
6734
+ | :b2_diesel_blend_2_biodiesel
6735
+ | :b5_diesel_blend_5_biodiesel
6736
+ | :b10_diesel_blend_10_biodiesel
6737
+ | :b11_diesel_blend_11_biodiesel
6738
+ | :b15_diesel_blend_15_biodiesel
6739
+ | :b20_diesel_blend_20_biodiesel
6740
+ | :b100_diesel_blend_100_biodiesel
6741
+ | :b1_diesel_blend_1_biodiesel
6742
+ | :additized_diesel_2
6743
+ | :additized_diesel_3
6744
+ | :b7_diesel_blend_7_biodiesel_non_us
6745
+ | :b7_premium_diesel_blend_7_biodiesel_non_us
6746
+ | :renewable_diesel_r95_or_greater
6747
+ | :renewable_diesel_biodiesel_6_to_20
6748
+ | :diesel_exhaust_fluid_pump
6749
+ | :premium_diesel_1
6750
+ | :regular_ethanol_15_blend
6751
+ | :mid_or_plus_ethanol_15_blend
6752
+ | :premium_or_super_ethanol_15_blend
6753
+ | :premium_diesel_blend_less_than_20_biodiesel
6754
+ | :premium_diesel_blend_20_or_more_biodiesel
6755
+ | :b75_diesel_blend_75_biodiesel
6756
+ | :b99_diesel_blend_99_biodiesel
6757
+ | :reserved_for_preauthorization_use_only
6758
+ | :undefined_fuel_reserved_for_proprietary_use
6759
+ | :miscellaneous_fuel
6760
+ | :jet_fuel
6761
+ | :aviation_fuel_regular
6762
+ | :aviation_fuel_premium
6763
+ | :aviation_fuel_jp8
6764
+ | :aviation_fuel_4
6765
+ | :aviation_fuel_5
6766
+ | :biojet_diesel
6767
+ | :aviation_biofuel_gasoline
6768
+ | :undefined_aviation_fuel_reserved_for_proprietary_use
6769
+ | :miscellaneous_aviation_fuel
6770
+ | :marine_fuel_1
6771
+ | :marine_fuel_2
6772
+ | :marine_fuel_3
6773
+ | :marine_fuel_4
6774
+ | :marine_fuel_5
6775
+ | :marine_other
6776
+ | :marine_diesel
6777
+ | :miscellaneous_marine_fuel
6778
+ | :kerosene_low_sulfur
6779
+ | :white_gas
6780
+ | :heating_oil
6781
+ | :other_fuel_non_taxable
6782
+ | :kerosene_ultra_low_sulfur
6783
+ | :electric_vehicle_charging_level_1_110_volt
6784
+ | :electric_vehicle_charging_level_2_240_volt
6785
+ | :electric_vehicle_charging_level_3_480_volt
6786
+ | :renewable_diesel_r95_or_greater_off_road_non_taxable
6787
+ | :biodiesel_blend_1_off_road_non_taxable
6788
+ | :biodiesel_blend_75_off_road_non_taxable
6789
+ | :biodiesel_blend_99_off_road_non_taxable
6790
+ | :biodiesel_blend_100_off_road_non_taxable
6791
+ | :renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
6792
+ | :electric_vehicle_charging_level_4_800_volt
6793
+ | :electric_vehicle_charging_level_5_megawatt
6794
+ | :hydrotreated_vegetable_oil_100
6795
+ | :bio_compressed_natural_gas
6796
+ | :miscellaneous_other_fuel
6797
+
6798
+ module FuelType
6799
+ extend Increase::Internal::Type::Enum
6800
+
6801
+ # Regular
6802
+ REGULAR: :regular
6803
+
6804
+ # Mid or plus
6805
+ MID_OR_PLUS: :mid_or_plus
6806
+
6807
+ # Premium or super
6808
+ PREMIUM_OR_SUPER: :premium_or_super
6809
+
6810
+ # Mid or plus 2
6811
+ MID_OR_PLUS_2: :mid_or_plus_2
6812
+
6813
+ # Premium or super 2
6814
+ PREMIUM_OR_SUPER_2: :premium_or_super_2
6815
+
6816
+ # Regular ethanol 5% blend outside the United States
6817
+ REGULAR_ETHANOL_5_BLEND_NON_US: :regular_ethanol_5_blend_non_us
6818
+
6819
+ # Mid or plus ethanol 5% blend outside the United States
6820
+ MID_OR_PLUS_ETHANOL_5_BLEND_NON_US: :mid_or_plus_ethanol_5_blend_non_us
6821
+
6822
+ # Premium or super ethanol 5% blend outside the United States
6823
+ PREMIUM_OR_SUPER_ETHANOL_5_BLEND_NON_US: :premium_or_super_ethanol_5_blend_non_us
6824
+
6825
+ # Ethanol 7.7% blend
6826
+ ETHANOL_7_7_BLEND: :ethanol_7_7_blend
6827
+
6828
+ # Mid or plus 2 ethanol 5% blend outside the United States
6829
+ MID_OR_PLUS_2_ETHANOL_5_BLEND_NON_US: :mid_or_plus_2_ethanol_5_blend_non_us
6830
+
6831
+ # Green gasoline regular
6832
+ GREEN_GASOLINE_REGULAR: :green_gasoline_regular
6833
+
6834
+ # Green gasoline mid or plus
6835
+ GREEN_GASOLINE_MID_OR_PLUS: :green_gasoline_mid_or_plus
6836
+
6837
+ # Green gasoline premium or super
6838
+ GREEN_GASOLINE_PREMIUM_OR_SUPER: :green_gasoline_premium_or_super
6839
+
6840
+ # Regular diesel 2
6841
+ REGULAR_DIESEL_2: :regular_diesel_2
6842
+
6843
+ # Premium diesel 2
6844
+ PREMIUM_DIESEL_2: :premium_diesel_2
6845
+
6846
+ # Regular diesel 1
6847
+ REGULAR_DIESEL_1: :regular_diesel_1
6848
+
6849
+ # Compressed natural gas
6850
+ COMPRESSED_NATURAL_GAS: :compressed_natural_gas
6851
+
6852
+ # Liquid propane gas
6853
+ LIQUID_PROPANE_GAS: :liquid_propane_gas
6854
+
6855
+ # Liquid natural gas
6856
+ LIQUID_NATURAL_GAS: :liquid_natural_gas
6857
+
6858
+ # E85
6859
+ E85: :e85
6860
+
6861
+ # Regular reformulated
6862
+ REGULAR_REFORMULATED: :regular_reformulated
6863
+
6864
+ # Mid or plus reformulated
6865
+ MID_OR_PLUS_REFORMULATED: :mid_or_plus_reformulated
6866
+
6867
+ # Premium or super reformulated
6868
+ PREMIUM_OR_SUPER_REFORMULATED: :premium_or_super_reformulated
6869
+
6870
+ # Mid or plus 2 reformulated
6871
+ MID_OR_PLUS_2_REFORMULATED: :mid_or_plus_2_reformulated
6872
+
6873
+ # Premium or super 2 reformulated
6874
+ PREMIUM_OR_SUPER_2_REFORMULATED: :premium_or_super_2_reformulated
6875
+
6876
+ # Diesel off-road 1/2 non-taxable
6877
+ DIESEL_OFF_ROAD_1_2_NON_TAXABLE: :diesel_off_road_1_2_non_taxable
6878
+
6879
+ # Diesel off-road non-taxable
6880
+ DIESEL_OFF_ROAD_NON_TAXABLE: :diesel_off_road_non_taxable
6881
+
6882
+ # Biodiesel blend off-road non-taxable
6883
+ BIODIESEL_BLEND_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_off_road_non_taxable
6884
+
6885
+ # Racing fuel
6886
+ RACING_FUEL: :racing_fuel
6887
+
6888
+ # Mid or plus 2 ethanol 10% blend
6889
+ MID_OR_PLUS_2_ETHANOL_10_BLEND: :mid_or_plus_2_ethanol_10_blend
6890
+
6891
+ # Premium or super 2 ethanol 10% blend
6892
+ PREMIUM_OR_SUPER_2_ETHANOL_10_BLEND: :premium_or_super_2_ethanol_10_blend
6893
+
6894
+ # Mid or plus ethanol 2–15% blend
6895
+ MID_OR_PLUS_ETHANOL_2_15_BLEND: :mid_or_plus_ethanol_2_15_blend
6896
+
6897
+ # Premium or super ethanol 2–15% blend
6898
+ PREMIUM_OR_SUPER_ETHANOL_2_15_BLEND: :premium_or_super_ethanol_2_15_blend
6899
+
6900
+ # Premium or super 2 ethanol 5% blend outside the United States
6901
+ PREMIUM_OR_SUPER_2_ETHANOL_5_BLEND_NON_US: :premium_or_super_2_ethanol_5_blend_non_us
6902
+
6903
+ # Regular ethanol 10% blend
6904
+ REGULAR_ETHANOL_10_BLEND: :regular_ethanol_10_blend
6905
+
6906
+ # Mid or plus ethanol 10% blend
6907
+ MID_OR_PLUS_ETHANOL_10_BLEND: :mid_or_plus_ethanol_10_blend
6908
+
6909
+ # Premium or super ethanol 10% blend
6910
+ PREMIUM_OR_SUPER_ETHANOL_10_BLEND: :premium_or_super_ethanol_10_blend
6911
+
6912
+ # B2 diesel blend 2% biodiesel
6913
+ B2_DIESEL_BLEND_2_BIODIESEL: :b2_diesel_blend_2_biodiesel
6914
+
6915
+ # B5 diesel blend 5% biodiesel
6916
+ B5_DIESEL_BLEND_5_BIODIESEL: :b5_diesel_blend_5_biodiesel
6917
+
6918
+ # B10 diesel blend 10% biodiesel
6919
+ B10_DIESEL_BLEND_10_BIODIESEL: :b10_diesel_blend_10_biodiesel
6920
+
6921
+ # B11 diesel blend 11% biodiesel
6922
+ B11_DIESEL_BLEND_11_BIODIESEL: :b11_diesel_blend_11_biodiesel
6923
+
6924
+ # B15 diesel blend 15% biodiesel
6925
+ B15_DIESEL_BLEND_15_BIODIESEL: :b15_diesel_blend_15_biodiesel
6926
+
6927
+ # B20 diesel blend 20% biodiesel
6928
+ B20_DIESEL_BLEND_20_BIODIESEL: :b20_diesel_blend_20_biodiesel
6929
+
6930
+ # B100 diesel blend 100% biodiesel
6931
+ B100_DIESEL_BLEND_100_BIODIESEL: :b100_diesel_blend_100_biodiesel
6932
+
6933
+ # B1 diesel blend 1% biodiesel
6934
+ B1_DIESEL_BLEND_1_BIODIESEL: :b1_diesel_blend_1_biodiesel
6935
+
6936
+ # Additized diesel 2
6937
+ ADDITIZED_DIESEL_2: :additized_diesel_2
6938
+
6939
+ # Additized diesel 3
6940
+ ADDITIZED_DIESEL_3: :additized_diesel_3
6941
+
6942
+ # B7 diesel blend 7% biodiesel outside the United States
6943
+ B7_DIESEL_BLEND_7_BIODIESEL_NON_US: :b7_diesel_blend_7_biodiesel_non_us
6944
+
6945
+ # B7 premium diesel blend 7% biodiesel outside the United States
6946
+ B7_PREMIUM_DIESEL_BLEND_7_BIODIESEL_NON_US: :b7_premium_diesel_blend_7_biodiesel_non_us
6947
+
6948
+ # Renewable diesel R95 or greater
6949
+ RENEWABLE_DIESEL_R95_OR_GREATER: :renewable_diesel_r95_or_greater
6950
+
6951
+ # Renewable diesel biodiesel 6% to 20%
6952
+ RENEWABLE_DIESEL_BIODIESEL_6_TO_20: :renewable_diesel_biodiesel_6_to_20
6953
+
6954
+ # Diesel exhaust fluid pump
6955
+ DIESEL_EXHAUST_FLUID_PUMP: :diesel_exhaust_fluid_pump
6956
+
6957
+ # Premium diesel 1
6958
+ PREMIUM_DIESEL_1: :premium_diesel_1
6959
+
6960
+ # Regular ethanol 15% blend
6961
+ REGULAR_ETHANOL_15_BLEND: :regular_ethanol_15_blend
6962
+
6963
+ # Mid or plus ethanol 15% blend
6964
+ MID_OR_PLUS_ETHANOL_15_BLEND: :mid_or_plus_ethanol_15_blend
6965
+
6966
+ # Premium or super ethanol 15% blend
6967
+ PREMIUM_OR_SUPER_ETHANOL_15_BLEND: :premium_or_super_ethanol_15_blend
6968
+
6969
+ # Premium diesel blend less than 20% biodiesel
6970
+ PREMIUM_DIESEL_BLEND_LESS_THAN_20_BIODIESEL: :premium_diesel_blend_less_than_20_biodiesel
6971
+
6972
+ # Premium diesel blend 20% or more biodiesel
6973
+ PREMIUM_DIESEL_BLEND_20_OR_MORE_BIODIESEL: :premium_diesel_blend_20_or_more_biodiesel
6974
+
6975
+ # B75 diesel blend 75% biodiesel
6976
+ B75_DIESEL_BLEND_75_BIODIESEL: :b75_diesel_blend_75_biodiesel
6977
+
6978
+ # B99 diesel blend 99% biodiesel
6979
+ B99_DIESEL_BLEND_99_BIODIESEL: :b99_diesel_blend_99_biodiesel
6980
+
6981
+ # Reserved for preauthorization use only
6982
+ RESERVED_FOR_PREAUTHORIZATION_USE_ONLY: :reserved_for_preauthorization_use_only
6983
+
6984
+ # Undefined fuel reserved for proprietary use
6985
+ UNDEFINED_FUEL_RESERVED_FOR_PROPRIETARY_USE: :undefined_fuel_reserved_for_proprietary_use
6986
+
6987
+ # Miscellaneous fuel
6988
+ MISCELLANEOUS_FUEL: :miscellaneous_fuel
6989
+
6990
+ # Jet fuel
6991
+ JET_FUEL: :jet_fuel
6992
+
6993
+ # Aviation fuel regular
6994
+ AVIATION_FUEL_REGULAR: :aviation_fuel_regular
6995
+
6996
+ # Aviation fuel premium
6997
+ AVIATION_FUEL_PREMIUM: :aviation_fuel_premium
6998
+
6999
+ # Aviation fuel JP8
7000
+ AVIATION_FUEL_JP8: :aviation_fuel_jp8
7001
+
7002
+ # Aviation fuel 4
7003
+ AVIATION_FUEL_4: :aviation_fuel_4
7004
+
7005
+ # Aviation fuel 5
7006
+ AVIATION_FUEL_5: :aviation_fuel_5
7007
+
7008
+ # Biojet diesel
7009
+ BIOJET_DIESEL: :biojet_diesel
7010
+
7011
+ # Aviation biofuel gasoline
7012
+ AVIATION_BIOFUEL_GASOLINE: :aviation_biofuel_gasoline
7013
+
7014
+ # Undefined aviation fuel reserved for proprietary use
7015
+ UNDEFINED_AVIATION_FUEL_RESERVED_FOR_PROPRIETARY_USE: :undefined_aviation_fuel_reserved_for_proprietary_use
7016
+
7017
+ # Miscellaneous aviation fuel
7018
+ MISCELLANEOUS_AVIATION_FUEL: :miscellaneous_aviation_fuel
7019
+
7020
+ # Marine fuel 1
7021
+ MARINE_FUEL_1: :marine_fuel_1
7022
+
7023
+ # Marine fuel 2
7024
+ MARINE_FUEL_2: :marine_fuel_2
7025
+
7026
+ # Marine fuel 3
7027
+ MARINE_FUEL_3: :marine_fuel_3
7028
+
7029
+ # Marine fuel 4
7030
+ MARINE_FUEL_4: :marine_fuel_4
7031
+
7032
+ # Marine fuel 5
7033
+ MARINE_FUEL_5: :marine_fuel_5
7034
+
7035
+ # Marine other
7036
+ MARINE_OTHER: :marine_other
7037
+
7038
+ # Marine diesel
7039
+ MARINE_DIESEL: :marine_diesel
7040
+
7041
+ # Miscellaneous marine fuel
7042
+ MISCELLANEOUS_MARINE_FUEL: :miscellaneous_marine_fuel
7043
+
7044
+ # Kerosene low sulfur
7045
+ KEROSENE_LOW_SULFUR: :kerosene_low_sulfur
7046
+
7047
+ # White gas
7048
+ WHITE_GAS: :white_gas
7049
+
7050
+ # Heating oil
7051
+ HEATING_OIL: :heating_oil
7052
+
7053
+ # Other fuel non-taxable
7054
+ OTHER_FUEL_NON_TAXABLE: :other_fuel_non_taxable
7055
+
7056
+ # Kerosene ultra low sulfur
7057
+ KEROSENE_ULTRA_LOW_SULFUR: :kerosene_ultra_low_sulfur
7058
+
7059
+ # Electric vehicle charging level 1 110 volt
7060
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_1_110_VOLT: :electric_vehicle_charging_level_1_110_volt
7061
+
7062
+ # Electric vehicle charging level 2 240 volt
7063
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_2_240_VOLT: :electric_vehicle_charging_level_2_240_volt
7064
+
7065
+ # Electric vehicle charging level 3 480 volt
7066
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_3_480_VOLT: :electric_vehicle_charging_level_3_480_volt
7067
+
7068
+ # Renewable diesel R95 or greater off-road non-taxable
7069
+ RENEWABLE_DIESEL_R95_OR_GREATER_OFF_ROAD_NON_TAXABLE: :renewable_diesel_r95_or_greater_off_road_non_taxable
7070
+
7071
+ # Biodiesel blend 1% off-road non-taxable
7072
+ BIODIESEL_BLEND_1_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_1_off_road_non_taxable
7073
+
7074
+ # Biodiesel blend 75% off-road non-taxable
7075
+ BIODIESEL_BLEND_75_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_75_off_road_non_taxable
7076
+
7077
+ # Biodiesel blend 99% off-road non-taxable
7078
+ BIODIESEL_BLEND_99_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_99_off_road_non_taxable
7079
+
7080
+ # Biodiesel blend 100% off-road non-taxable
7081
+ BIODIESEL_BLEND_100_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_100_off_road_non_taxable
7082
+
7083
+ # Renewable diesel biodiesel 6% to 20% off-road non-taxable
7084
+ RENEWABLE_DIESEL_BIODIESEL_6_TO_20_OFF_ROAD_NON_TAXABLE: :renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
7085
+
7086
+ # Electric vehicle charging level 4 800 volt
7087
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_4_800_VOLT: :electric_vehicle_charging_level_4_800_volt
7088
+
7089
+ # Electric vehicle charging level 5 megawatt
7090
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_5_MEGAWATT: :electric_vehicle_charging_level_5_megawatt
7091
+
7092
+ # Hydrotreated vegetable oil 100
7093
+ HYDROTREATED_VEGETABLE_OIL_100: :hydrotreated_vegetable_oil_100
7094
+
7095
+ # Bio compressed natural gas
7096
+ BIO_COMPRESSED_NATURAL_GAS: :bio_compressed_natural_gas
7097
+
7098
+ # Miscellaneous other fuel
7099
+ MISCELLANEOUS_OTHER_FUEL: :miscellaneous_other_fuel
7100
+
7101
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_type]
7102
+ end
7103
+
7104
+ type fuel_unit_of_measure =
7105
+ :liter
7106
+ | :us_gallon
7107
+ | :imperial_gallon
7108
+ | :kilogram
7109
+ | :pound
7110
+ | :charging_minutes
7111
+ | :kilowatt_hour
7112
+
7113
+ module FuelUnitOfMeasure
7114
+ extend Increase::Internal::Type::Enum
7115
+
7116
+ # Liter
7117
+ LITER: :liter
7118
+
7119
+ # US gallon
7120
+ US_GALLON: :us_gallon
7121
+
7122
+ # Imperial gallon
7123
+ IMPERIAL_GALLON: :imperial_gallon
7124
+
7125
+ # Kilogram
7126
+ KILOGRAM: :kilogram
7127
+
7128
+ # Pound
7129
+ POUND: :pound
7130
+
7131
+ # Charging minutes
7132
+ CHARGING_MINUTES: :charging_minutes
7133
+
7134
+ # Kilowatt hour
7135
+ KILOWATT_HOUR: :kilowatt_hour
7136
+
7137
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::fuel_unit_of_measure]
7138
+ end
7139
+
7140
+ type purchase_type =
7141
+ :fuel_purchase
7142
+ | :non_fuel_purchase
7143
+ | :fuel_and_non_fuel_purchase
7144
+ | :fuel_purchase_with_multiple_fuel_types
7145
+
7146
+ module PurchaseType
7147
+ extend Increase::Internal::Type::Enum
7148
+
7149
+ # Fuel purchase
7150
+ FUEL_PURCHASE: :fuel_purchase
7151
+
7152
+ # Non-fuel purchase
7153
+ NON_FUEL_PURCHASE: :non_fuel_purchase
7154
+
7155
+ # Fuel and non-fuel purchase
7156
+ FUEL_AND_NON_FUEL_PURCHASE: :fuel_and_non_fuel_purchase
7157
+
7158
+ # Fuel purchase with multiple fuel types
7159
+ FUEL_PURCHASE_WITH_MULTIPLE_FUEL_TYPES: :fuel_purchase_with_multiple_fuel_types
7160
+
7161
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::purchase_type]
7162
+ end
7163
+
7164
+ type service_type =
7165
+ :full_service | :self_service | :high_speed_dispense
7166
+
7167
+ module ServiceType
7168
+ extend Increase::Internal::Type::Enum
7169
+
7170
+ # Full service
7171
+ FULL_SERVICE: :full_service
7172
+
7173
+ # Self service
7174
+ SELF_SERVICE: :self_service
7175
+
7176
+ # High speed dispense
7177
+ HIGH_SPEED_DISPENSE: :high_speed_dispense
7178
+
7179
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::service_type]
7180
+ end
7181
+ end
7182
+
6586
7183
  type lodging =
6587
7184
  {
6588
7185
  check_in_date: Date?,
@@ -7979,6 +8576,7 @@ module Increase
7979
8576
  {
7980
8577
  car_rental: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::CarRental?,
7981
8578
  customer_reference_identifier: String?,
8579
+ fleet: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet?,
7982
8580
  local_tax_amount: Integer?,
7983
8581
  local_tax_currency: String?,
7984
8582
  lodging: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Lodging?,
@@ -7994,6 +8592,8 @@ module Increase
7994
8592
 
7995
8593
  attr_accessor customer_reference_identifier: String?
7996
8594
 
8595
+ attr_accessor fleet: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet?
8596
+
7997
8597
  attr_accessor local_tax_amount: Integer?
7998
8598
 
7999
8599
  attr_accessor local_tax_currency: String?
@@ -8013,6 +8613,7 @@ module Increase
8013
8613
  def initialize: (
8014
8614
  car_rental: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::CarRental?,
8015
8615
  customer_reference_identifier: String?,
8616
+ fleet: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet?,
8016
8617
  local_tax_amount: Integer?,
8017
8618
  local_tax_currency: String?,
8018
8619
  lodging: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Lodging?,
@@ -8026,6 +8627,7 @@ module Increase
8026
8627
  def to_hash: -> {
8027
8628
  car_rental: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::CarRental?,
8028
8629
  customer_reference_identifier: String?,
8630
+ fleet: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet?,
8029
8631
  local_tax_amount: Integer?,
8030
8632
  local_tax_currency: String?,
8031
8633
  lodging: Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Lodging?,
@@ -8175,6 +8777,594 @@ module Increase
8175
8777
  end
8176
8778
  end
8177
8779
 
8780
+ type fleet =
8781
+ {
8782
+ employee_number: String?,
8783
+ fuel_quantity: String?,
8784
+ fuel_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_type?,
8785
+ fuel_unit_cost_amount: Integer?,
8786
+ fuel_unit_cost_currency: String?,
8787
+ fuel_unit_of_measure: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure?,
8788
+ gross_fuel_price_amount: Integer?,
8789
+ gross_fuel_price_currency: String?,
8790
+ gross_non_fuel_price_amount: Integer?,
8791
+ gross_non_fuel_price_currency: String?,
8792
+ net_fuel_price_amount: Integer?,
8793
+ net_fuel_price_currency: String?,
8794
+ net_non_fuel_price_amount: Integer?,
8795
+ net_non_fuel_price_currency: String?,
8796
+ odometer_reading: Integer?,
8797
+ purchase_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::purchase_type?,
8798
+ service_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::service_type?,
8799
+ trailer_number: String?
8800
+ }
8801
+
8802
+ class Fleet < Increase::Internal::Type::BaseModel
8803
+ attr_accessor employee_number: String?
8804
+
8805
+ attr_accessor fuel_quantity: String?
8806
+
8807
+ attr_accessor fuel_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_type?
8808
+
8809
+ attr_accessor fuel_unit_cost_amount: Integer?
8810
+
8811
+ attr_accessor fuel_unit_cost_currency: String?
8812
+
8813
+ attr_accessor fuel_unit_of_measure: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure?
8814
+
8815
+ attr_accessor gross_fuel_price_amount: Integer?
8816
+
8817
+ attr_accessor gross_fuel_price_currency: String?
8818
+
8819
+ attr_accessor gross_non_fuel_price_amount: Integer?
8820
+
8821
+ attr_accessor gross_non_fuel_price_currency: String?
8822
+
8823
+ attr_accessor net_fuel_price_amount: Integer?
8824
+
8825
+ attr_accessor net_fuel_price_currency: String?
8826
+
8827
+ attr_accessor net_non_fuel_price_amount: Integer?
8828
+
8829
+ attr_accessor net_non_fuel_price_currency: String?
8830
+
8831
+ attr_accessor odometer_reading: Integer?
8832
+
8833
+ attr_accessor purchase_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::purchase_type?
8834
+
8835
+ attr_accessor service_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::service_type?
8836
+
8837
+ attr_accessor trailer_number: String?
8838
+
8839
+ def initialize: (
8840
+ employee_number: String?,
8841
+ fuel_quantity: String?,
8842
+ fuel_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_type?,
8843
+ fuel_unit_cost_amount: Integer?,
8844
+ fuel_unit_cost_currency: String?,
8845
+ fuel_unit_of_measure: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure?,
8846
+ gross_fuel_price_amount: Integer?,
8847
+ gross_fuel_price_currency: String?,
8848
+ gross_non_fuel_price_amount: Integer?,
8849
+ gross_non_fuel_price_currency: String?,
8850
+ net_fuel_price_amount: Integer?,
8851
+ net_fuel_price_currency: String?,
8852
+ net_non_fuel_price_amount: Integer?,
8853
+ net_non_fuel_price_currency: String?,
8854
+ odometer_reading: Integer?,
8855
+ purchase_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::purchase_type?,
8856
+ service_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::service_type?,
8857
+ trailer_number: String?
8858
+ ) -> void
8859
+
8860
+ def to_hash: -> {
8861
+ employee_number: String?,
8862
+ fuel_quantity: String?,
8863
+ fuel_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_type?,
8864
+ fuel_unit_cost_amount: Integer?,
8865
+ fuel_unit_cost_currency: String?,
8866
+ fuel_unit_of_measure: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure?,
8867
+ gross_fuel_price_amount: Integer?,
8868
+ gross_fuel_price_currency: String?,
8869
+ gross_non_fuel_price_amount: Integer?,
8870
+ gross_non_fuel_price_currency: String?,
8871
+ net_fuel_price_amount: Integer?,
8872
+ net_fuel_price_currency: String?,
8873
+ net_non_fuel_price_amount: Integer?,
8874
+ net_non_fuel_price_currency: String?,
8875
+ odometer_reading: Integer?,
8876
+ purchase_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::purchase_type?,
8877
+ service_type: Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::service_type?,
8878
+ trailer_number: String?
8879
+ }
8880
+
8881
+ type fuel_type =
8882
+ :regular
8883
+ | :mid_or_plus
8884
+ | :premium_or_super
8885
+ | :mid_or_plus_2
8886
+ | :premium_or_super_2
8887
+ | :regular_ethanol_5_blend_non_us
8888
+ | :mid_or_plus_ethanol_5_blend_non_us
8889
+ | :premium_or_super_ethanol_5_blend_non_us
8890
+ | :ethanol_7_7_blend
8891
+ | :mid_or_plus_2_ethanol_5_blend_non_us
8892
+ | :green_gasoline_regular
8893
+ | :green_gasoline_mid_or_plus
8894
+ | :green_gasoline_premium_or_super
8895
+ | :regular_diesel_2
8896
+ | :premium_diesel_2
8897
+ | :regular_diesel_1
8898
+ | :compressed_natural_gas
8899
+ | :liquid_propane_gas
8900
+ | :liquid_natural_gas
8901
+ | :e85
8902
+ | :regular_reformulated
8903
+ | :mid_or_plus_reformulated
8904
+ | :premium_or_super_reformulated
8905
+ | :mid_or_plus_2_reformulated
8906
+ | :premium_or_super_2_reformulated
8907
+ | :diesel_off_road_1_2_non_taxable
8908
+ | :diesel_off_road_non_taxable
8909
+ | :biodiesel_blend_off_road_non_taxable
8910
+ | :racing_fuel
8911
+ | :mid_or_plus_2_ethanol_10_blend
8912
+ | :premium_or_super_2_ethanol_10_blend
8913
+ | :mid_or_plus_ethanol_2_15_blend
8914
+ | :premium_or_super_ethanol_2_15_blend
8915
+ | :premium_or_super_2_ethanol_5_blend_non_us
8916
+ | :regular_ethanol_10_blend
8917
+ | :mid_or_plus_ethanol_10_blend
8918
+ | :premium_or_super_ethanol_10_blend
8919
+ | :b2_diesel_blend_2_biodiesel
8920
+ | :b5_diesel_blend_5_biodiesel
8921
+ | :b10_diesel_blend_10_biodiesel
8922
+ | :b11_diesel_blend_11_biodiesel
8923
+ | :b15_diesel_blend_15_biodiesel
8924
+ | :b20_diesel_blend_20_biodiesel
8925
+ | :b100_diesel_blend_100_biodiesel
8926
+ | :b1_diesel_blend_1_biodiesel
8927
+ | :additized_diesel_2
8928
+ | :additized_diesel_3
8929
+ | :b7_diesel_blend_7_biodiesel_non_us
8930
+ | :b7_premium_diesel_blend_7_biodiesel_non_us
8931
+ | :renewable_diesel_r95_or_greater
8932
+ | :renewable_diesel_biodiesel_6_to_20
8933
+ | :diesel_exhaust_fluid_pump
8934
+ | :premium_diesel_1
8935
+ | :regular_ethanol_15_blend
8936
+ | :mid_or_plus_ethanol_15_blend
8937
+ | :premium_or_super_ethanol_15_blend
8938
+ | :premium_diesel_blend_less_than_20_biodiesel
8939
+ | :premium_diesel_blend_20_or_more_biodiesel
8940
+ | :b75_diesel_blend_75_biodiesel
8941
+ | :b99_diesel_blend_99_biodiesel
8942
+ | :reserved_for_preauthorization_use_only
8943
+ | :undefined_fuel_reserved_for_proprietary_use
8944
+ | :miscellaneous_fuel
8945
+ | :jet_fuel
8946
+ | :aviation_fuel_regular
8947
+ | :aviation_fuel_premium
8948
+ | :aviation_fuel_jp8
8949
+ | :aviation_fuel_4
8950
+ | :aviation_fuel_5
8951
+ | :biojet_diesel
8952
+ | :aviation_biofuel_gasoline
8953
+ | :undefined_aviation_fuel_reserved_for_proprietary_use
8954
+ | :miscellaneous_aviation_fuel
8955
+ | :marine_fuel_1
8956
+ | :marine_fuel_2
8957
+ | :marine_fuel_3
8958
+ | :marine_fuel_4
8959
+ | :marine_fuel_5
8960
+ | :marine_other
8961
+ | :marine_diesel
8962
+ | :miscellaneous_marine_fuel
8963
+ | :kerosene_low_sulfur
8964
+ | :white_gas
8965
+ | :heating_oil
8966
+ | :other_fuel_non_taxable
8967
+ | :kerosene_ultra_low_sulfur
8968
+ | :electric_vehicle_charging_level_1_110_volt
8969
+ | :electric_vehicle_charging_level_2_240_volt
8970
+ | :electric_vehicle_charging_level_3_480_volt
8971
+ | :renewable_diesel_r95_or_greater_off_road_non_taxable
8972
+ | :biodiesel_blend_1_off_road_non_taxable
8973
+ | :biodiesel_blend_75_off_road_non_taxable
8974
+ | :biodiesel_blend_99_off_road_non_taxable
8975
+ | :biodiesel_blend_100_off_road_non_taxable
8976
+ | :renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
8977
+ | :electric_vehicle_charging_level_4_800_volt
8978
+ | :electric_vehicle_charging_level_5_megawatt
8979
+ | :hydrotreated_vegetable_oil_100
8980
+ | :bio_compressed_natural_gas
8981
+ | :miscellaneous_other_fuel
8982
+
8983
+ module FuelType
8984
+ extend Increase::Internal::Type::Enum
8985
+
8986
+ # Regular
8987
+ REGULAR: :regular
8988
+
8989
+ # Mid or plus
8990
+ MID_OR_PLUS: :mid_or_plus
8991
+
8992
+ # Premium or super
8993
+ PREMIUM_OR_SUPER: :premium_or_super
8994
+
8995
+ # Mid or plus 2
8996
+ MID_OR_PLUS_2: :mid_or_plus_2
8997
+
8998
+ # Premium or super 2
8999
+ PREMIUM_OR_SUPER_2: :premium_or_super_2
9000
+
9001
+ # Regular ethanol 5% blend outside the United States
9002
+ REGULAR_ETHANOL_5_BLEND_NON_US: :regular_ethanol_5_blend_non_us
9003
+
9004
+ # Mid or plus ethanol 5% blend outside the United States
9005
+ MID_OR_PLUS_ETHANOL_5_BLEND_NON_US: :mid_or_plus_ethanol_5_blend_non_us
9006
+
9007
+ # Premium or super ethanol 5% blend outside the United States
9008
+ PREMIUM_OR_SUPER_ETHANOL_5_BLEND_NON_US: :premium_or_super_ethanol_5_blend_non_us
9009
+
9010
+ # Ethanol 7.7% blend
9011
+ ETHANOL_7_7_BLEND: :ethanol_7_7_blend
9012
+
9013
+ # Mid or plus 2 ethanol 5% blend outside the United States
9014
+ MID_OR_PLUS_2_ETHANOL_5_BLEND_NON_US: :mid_or_plus_2_ethanol_5_blend_non_us
9015
+
9016
+ # Green gasoline regular
9017
+ GREEN_GASOLINE_REGULAR: :green_gasoline_regular
9018
+
9019
+ # Green gasoline mid or plus
9020
+ GREEN_GASOLINE_MID_OR_PLUS: :green_gasoline_mid_or_plus
9021
+
9022
+ # Green gasoline premium or super
9023
+ GREEN_GASOLINE_PREMIUM_OR_SUPER: :green_gasoline_premium_or_super
9024
+
9025
+ # Regular diesel 2
9026
+ REGULAR_DIESEL_2: :regular_diesel_2
9027
+
9028
+ # Premium diesel 2
9029
+ PREMIUM_DIESEL_2: :premium_diesel_2
9030
+
9031
+ # Regular diesel 1
9032
+ REGULAR_DIESEL_1: :regular_diesel_1
9033
+
9034
+ # Compressed natural gas
9035
+ COMPRESSED_NATURAL_GAS: :compressed_natural_gas
9036
+
9037
+ # Liquid propane gas
9038
+ LIQUID_PROPANE_GAS: :liquid_propane_gas
9039
+
9040
+ # Liquid natural gas
9041
+ LIQUID_NATURAL_GAS: :liquid_natural_gas
9042
+
9043
+ # E85
9044
+ E85: :e85
9045
+
9046
+ # Regular reformulated
9047
+ REGULAR_REFORMULATED: :regular_reformulated
9048
+
9049
+ # Mid or plus reformulated
9050
+ MID_OR_PLUS_REFORMULATED: :mid_or_plus_reformulated
9051
+
9052
+ # Premium or super reformulated
9053
+ PREMIUM_OR_SUPER_REFORMULATED: :premium_or_super_reformulated
9054
+
9055
+ # Mid or plus 2 reformulated
9056
+ MID_OR_PLUS_2_REFORMULATED: :mid_or_plus_2_reformulated
9057
+
9058
+ # Premium or super 2 reformulated
9059
+ PREMIUM_OR_SUPER_2_REFORMULATED: :premium_or_super_2_reformulated
9060
+
9061
+ # Diesel off-road 1/2 non-taxable
9062
+ DIESEL_OFF_ROAD_1_2_NON_TAXABLE: :diesel_off_road_1_2_non_taxable
9063
+
9064
+ # Diesel off-road non-taxable
9065
+ DIESEL_OFF_ROAD_NON_TAXABLE: :diesel_off_road_non_taxable
9066
+
9067
+ # Biodiesel blend off-road non-taxable
9068
+ BIODIESEL_BLEND_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_off_road_non_taxable
9069
+
9070
+ # Racing fuel
9071
+ RACING_FUEL: :racing_fuel
9072
+
9073
+ # Mid or plus 2 ethanol 10% blend
9074
+ MID_OR_PLUS_2_ETHANOL_10_BLEND: :mid_or_plus_2_ethanol_10_blend
9075
+
9076
+ # Premium or super 2 ethanol 10% blend
9077
+ PREMIUM_OR_SUPER_2_ETHANOL_10_BLEND: :premium_or_super_2_ethanol_10_blend
9078
+
9079
+ # Mid or plus ethanol 2–15% blend
9080
+ MID_OR_PLUS_ETHANOL_2_15_BLEND: :mid_or_plus_ethanol_2_15_blend
9081
+
9082
+ # Premium or super ethanol 2–15% blend
9083
+ PREMIUM_OR_SUPER_ETHANOL_2_15_BLEND: :premium_or_super_ethanol_2_15_blend
9084
+
9085
+ # Premium or super 2 ethanol 5% blend outside the United States
9086
+ PREMIUM_OR_SUPER_2_ETHANOL_5_BLEND_NON_US: :premium_or_super_2_ethanol_5_blend_non_us
9087
+
9088
+ # Regular ethanol 10% blend
9089
+ REGULAR_ETHANOL_10_BLEND: :regular_ethanol_10_blend
9090
+
9091
+ # Mid or plus ethanol 10% blend
9092
+ MID_OR_PLUS_ETHANOL_10_BLEND: :mid_or_plus_ethanol_10_blend
9093
+
9094
+ # Premium or super ethanol 10% blend
9095
+ PREMIUM_OR_SUPER_ETHANOL_10_BLEND: :premium_or_super_ethanol_10_blend
9096
+
9097
+ # B2 diesel blend 2% biodiesel
9098
+ B2_DIESEL_BLEND_2_BIODIESEL: :b2_diesel_blend_2_biodiesel
9099
+
9100
+ # B5 diesel blend 5% biodiesel
9101
+ B5_DIESEL_BLEND_5_BIODIESEL: :b5_diesel_blend_5_biodiesel
9102
+
9103
+ # B10 diesel blend 10% biodiesel
9104
+ B10_DIESEL_BLEND_10_BIODIESEL: :b10_diesel_blend_10_biodiesel
9105
+
9106
+ # B11 diesel blend 11% biodiesel
9107
+ B11_DIESEL_BLEND_11_BIODIESEL: :b11_diesel_blend_11_biodiesel
9108
+
9109
+ # B15 diesel blend 15% biodiesel
9110
+ B15_DIESEL_BLEND_15_BIODIESEL: :b15_diesel_blend_15_biodiesel
9111
+
9112
+ # B20 diesel blend 20% biodiesel
9113
+ B20_DIESEL_BLEND_20_BIODIESEL: :b20_diesel_blend_20_biodiesel
9114
+
9115
+ # B100 diesel blend 100% biodiesel
9116
+ B100_DIESEL_BLEND_100_BIODIESEL: :b100_diesel_blend_100_biodiesel
9117
+
9118
+ # B1 diesel blend 1% biodiesel
9119
+ B1_DIESEL_BLEND_1_BIODIESEL: :b1_diesel_blend_1_biodiesel
9120
+
9121
+ # Additized diesel 2
9122
+ ADDITIZED_DIESEL_2: :additized_diesel_2
9123
+
9124
+ # Additized diesel 3
9125
+ ADDITIZED_DIESEL_3: :additized_diesel_3
9126
+
9127
+ # B7 diesel blend 7% biodiesel outside the United States
9128
+ B7_DIESEL_BLEND_7_BIODIESEL_NON_US: :b7_diesel_blend_7_biodiesel_non_us
9129
+
9130
+ # B7 premium diesel blend 7% biodiesel outside the United States
9131
+ B7_PREMIUM_DIESEL_BLEND_7_BIODIESEL_NON_US: :b7_premium_diesel_blend_7_biodiesel_non_us
9132
+
9133
+ # Renewable diesel R95 or greater
9134
+ RENEWABLE_DIESEL_R95_OR_GREATER: :renewable_diesel_r95_or_greater
9135
+
9136
+ # Renewable diesel biodiesel 6% to 20%
9137
+ RENEWABLE_DIESEL_BIODIESEL_6_TO_20: :renewable_diesel_biodiesel_6_to_20
9138
+
9139
+ # Diesel exhaust fluid pump
9140
+ DIESEL_EXHAUST_FLUID_PUMP: :diesel_exhaust_fluid_pump
9141
+
9142
+ # Premium diesel 1
9143
+ PREMIUM_DIESEL_1: :premium_diesel_1
9144
+
9145
+ # Regular ethanol 15% blend
9146
+ REGULAR_ETHANOL_15_BLEND: :regular_ethanol_15_blend
9147
+
9148
+ # Mid or plus ethanol 15% blend
9149
+ MID_OR_PLUS_ETHANOL_15_BLEND: :mid_or_plus_ethanol_15_blend
9150
+
9151
+ # Premium or super ethanol 15% blend
9152
+ PREMIUM_OR_SUPER_ETHANOL_15_BLEND: :premium_or_super_ethanol_15_blend
9153
+
9154
+ # Premium diesel blend less than 20% biodiesel
9155
+ PREMIUM_DIESEL_BLEND_LESS_THAN_20_BIODIESEL: :premium_diesel_blend_less_than_20_biodiesel
9156
+
9157
+ # Premium diesel blend 20% or more biodiesel
9158
+ PREMIUM_DIESEL_BLEND_20_OR_MORE_BIODIESEL: :premium_diesel_blend_20_or_more_biodiesel
9159
+
9160
+ # B75 diesel blend 75% biodiesel
9161
+ B75_DIESEL_BLEND_75_BIODIESEL: :b75_diesel_blend_75_biodiesel
9162
+
9163
+ # B99 diesel blend 99% biodiesel
9164
+ B99_DIESEL_BLEND_99_BIODIESEL: :b99_diesel_blend_99_biodiesel
9165
+
9166
+ # Reserved for preauthorization use only
9167
+ RESERVED_FOR_PREAUTHORIZATION_USE_ONLY: :reserved_for_preauthorization_use_only
9168
+
9169
+ # Undefined fuel reserved for proprietary use
9170
+ UNDEFINED_FUEL_RESERVED_FOR_PROPRIETARY_USE: :undefined_fuel_reserved_for_proprietary_use
9171
+
9172
+ # Miscellaneous fuel
9173
+ MISCELLANEOUS_FUEL: :miscellaneous_fuel
9174
+
9175
+ # Jet fuel
9176
+ JET_FUEL: :jet_fuel
9177
+
9178
+ # Aviation fuel regular
9179
+ AVIATION_FUEL_REGULAR: :aviation_fuel_regular
9180
+
9181
+ # Aviation fuel premium
9182
+ AVIATION_FUEL_PREMIUM: :aviation_fuel_premium
9183
+
9184
+ # Aviation fuel JP8
9185
+ AVIATION_FUEL_JP8: :aviation_fuel_jp8
9186
+
9187
+ # Aviation fuel 4
9188
+ AVIATION_FUEL_4: :aviation_fuel_4
9189
+
9190
+ # Aviation fuel 5
9191
+ AVIATION_FUEL_5: :aviation_fuel_5
9192
+
9193
+ # Biojet diesel
9194
+ BIOJET_DIESEL: :biojet_diesel
9195
+
9196
+ # Aviation biofuel gasoline
9197
+ AVIATION_BIOFUEL_GASOLINE: :aviation_biofuel_gasoline
9198
+
9199
+ # Undefined aviation fuel reserved for proprietary use
9200
+ UNDEFINED_AVIATION_FUEL_RESERVED_FOR_PROPRIETARY_USE: :undefined_aviation_fuel_reserved_for_proprietary_use
9201
+
9202
+ # Miscellaneous aviation fuel
9203
+ MISCELLANEOUS_AVIATION_FUEL: :miscellaneous_aviation_fuel
9204
+
9205
+ # Marine fuel 1
9206
+ MARINE_FUEL_1: :marine_fuel_1
9207
+
9208
+ # Marine fuel 2
9209
+ MARINE_FUEL_2: :marine_fuel_2
9210
+
9211
+ # Marine fuel 3
9212
+ MARINE_FUEL_3: :marine_fuel_3
9213
+
9214
+ # Marine fuel 4
9215
+ MARINE_FUEL_4: :marine_fuel_4
9216
+
9217
+ # Marine fuel 5
9218
+ MARINE_FUEL_5: :marine_fuel_5
9219
+
9220
+ # Marine other
9221
+ MARINE_OTHER: :marine_other
9222
+
9223
+ # Marine diesel
9224
+ MARINE_DIESEL: :marine_diesel
9225
+
9226
+ # Miscellaneous marine fuel
9227
+ MISCELLANEOUS_MARINE_FUEL: :miscellaneous_marine_fuel
9228
+
9229
+ # Kerosene low sulfur
9230
+ KEROSENE_LOW_SULFUR: :kerosene_low_sulfur
9231
+
9232
+ # White gas
9233
+ WHITE_GAS: :white_gas
9234
+
9235
+ # Heating oil
9236
+ HEATING_OIL: :heating_oil
9237
+
9238
+ # Other fuel non-taxable
9239
+ OTHER_FUEL_NON_TAXABLE: :other_fuel_non_taxable
9240
+
9241
+ # Kerosene ultra low sulfur
9242
+ KEROSENE_ULTRA_LOW_SULFUR: :kerosene_ultra_low_sulfur
9243
+
9244
+ # Electric vehicle charging level 1 110 volt
9245
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_1_110_VOLT: :electric_vehicle_charging_level_1_110_volt
9246
+
9247
+ # Electric vehicle charging level 2 240 volt
9248
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_2_240_VOLT: :electric_vehicle_charging_level_2_240_volt
9249
+
9250
+ # Electric vehicle charging level 3 480 volt
9251
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_3_480_VOLT: :electric_vehicle_charging_level_3_480_volt
9252
+
9253
+ # Renewable diesel R95 or greater off-road non-taxable
9254
+ RENEWABLE_DIESEL_R95_OR_GREATER_OFF_ROAD_NON_TAXABLE: :renewable_diesel_r95_or_greater_off_road_non_taxable
9255
+
9256
+ # Biodiesel blend 1% off-road non-taxable
9257
+ BIODIESEL_BLEND_1_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_1_off_road_non_taxable
9258
+
9259
+ # Biodiesel blend 75% off-road non-taxable
9260
+ BIODIESEL_BLEND_75_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_75_off_road_non_taxable
9261
+
9262
+ # Biodiesel blend 99% off-road non-taxable
9263
+ BIODIESEL_BLEND_99_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_99_off_road_non_taxable
9264
+
9265
+ # Biodiesel blend 100% off-road non-taxable
9266
+ BIODIESEL_BLEND_100_OFF_ROAD_NON_TAXABLE: :biodiesel_blend_100_off_road_non_taxable
9267
+
9268
+ # Renewable diesel biodiesel 6% to 20% off-road non-taxable
9269
+ RENEWABLE_DIESEL_BIODIESEL_6_TO_20_OFF_ROAD_NON_TAXABLE: :renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
9270
+
9271
+ # Electric vehicle charging level 4 800 volt
9272
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_4_800_VOLT: :electric_vehicle_charging_level_4_800_volt
9273
+
9274
+ # Electric vehicle charging level 5 megawatt
9275
+ ELECTRIC_VEHICLE_CHARGING_LEVEL_5_MEGAWATT: :electric_vehicle_charging_level_5_megawatt
9276
+
9277
+ # Hydrotreated vegetable oil 100
9278
+ HYDROTREATED_VEGETABLE_OIL_100: :hydrotreated_vegetable_oil_100
9279
+
9280
+ # Bio compressed natural gas
9281
+ BIO_COMPRESSED_NATURAL_GAS: :bio_compressed_natural_gas
9282
+
9283
+ # Miscellaneous other fuel
9284
+ MISCELLANEOUS_OTHER_FUEL: :miscellaneous_other_fuel
9285
+
9286
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_type]
9287
+ end
9288
+
9289
+ type fuel_unit_of_measure =
9290
+ :liter
9291
+ | :us_gallon
9292
+ | :imperial_gallon
9293
+ | :kilogram
9294
+ | :pound
9295
+ | :charging_minutes
9296
+ | :kilowatt_hour
9297
+
9298
+ module FuelUnitOfMeasure
9299
+ extend Increase::Internal::Type::Enum
9300
+
9301
+ # Liter
9302
+ LITER: :liter
9303
+
9304
+ # US gallon
9305
+ US_GALLON: :us_gallon
9306
+
9307
+ # Imperial gallon
9308
+ IMPERIAL_GALLON: :imperial_gallon
9309
+
9310
+ # Kilogram
9311
+ KILOGRAM: :kilogram
9312
+
9313
+ # Pound
9314
+ POUND: :pound
9315
+
9316
+ # Charging minutes
9317
+ CHARGING_MINUTES: :charging_minutes
9318
+
9319
+ # Kilowatt hour
9320
+ KILOWATT_HOUR: :kilowatt_hour
9321
+
9322
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::fuel_unit_of_measure]
9323
+ end
9324
+
9325
+ type purchase_type =
9326
+ :fuel_purchase
9327
+ | :non_fuel_purchase
9328
+ | :fuel_and_non_fuel_purchase
9329
+ | :fuel_purchase_with_multiple_fuel_types
9330
+
9331
+ module PurchaseType
9332
+ extend Increase::Internal::Type::Enum
9333
+
9334
+ # Fuel purchase
9335
+ FUEL_PURCHASE: :fuel_purchase
9336
+
9337
+ # Non-fuel purchase
9338
+ NON_FUEL_PURCHASE: :non_fuel_purchase
9339
+
9340
+ # Fuel and non-fuel purchase
9341
+ FUEL_AND_NON_FUEL_PURCHASE: :fuel_and_non_fuel_purchase
9342
+
9343
+ # Fuel purchase with multiple fuel types
9344
+ FUEL_PURCHASE_WITH_MULTIPLE_FUEL_TYPES: :fuel_purchase_with_multiple_fuel_types
9345
+
9346
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::purchase_type]
9347
+ end
9348
+
9349
+ type service_type =
9350
+ :full_service | :self_service | :high_speed_dispense
9351
+
9352
+ module ServiceType
9353
+ extend Increase::Internal::Type::Enum
9354
+
9355
+ # Full service
9356
+ FULL_SERVICE: :full_service
9357
+
9358
+ # Self service
9359
+ SELF_SERVICE: :self_service
9360
+
9361
+ # High speed dispense
9362
+ HIGH_SPEED_DISPENSE: :high_speed_dispense
9363
+
9364
+ def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::service_type]
9365
+ end
9366
+ end
9367
+
8178
9368
  type lodging =
8179
9369
  {
8180
9370
  check_in_date: Date?,