increase 1.352.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/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 +3 -0
- data/lib/increase/models/transaction.rb +1174 -2
- 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/version.rb +1 -1
- 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 +7 -0
- data/rbi/increase/models/transaction.rbi +4647 -2335
- data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
- data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
- 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 +4 -0
- data/sig/increase/models/transaction.rbs +1186 -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
|
@@ -9290,6 +9290,16 @@ module Increase
|
|
|
9290
9290
|
# @return [String, nil]
|
|
9291
9291
|
required :customer_reference_identifier, String, nil?: true
|
|
9292
9292
|
|
|
9293
|
+
# @!attribute fleet
|
|
9294
|
+
# Fields specific to fleet purchases.
|
|
9295
|
+
#
|
|
9296
|
+
# @return [Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet, nil]
|
|
9297
|
+
required :fleet,
|
|
9298
|
+
-> {
|
|
9299
|
+
Increase::CardPayment::Element::CardRefund::PurchaseDetails::Fleet
|
|
9300
|
+
},
|
|
9301
|
+
nil?: true
|
|
9302
|
+
|
|
9293
9303
|
# @!attribute local_tax_amount
|
|
9294
9304
|
# The state or provincial tax amount in minor units.
|
|
9295
9305
|
#
|
|
@@ -9352,7 +9362,7 @@ module Increase
|
|
|
9352
9362
|
},
|
|
9353
9363
|
nil?: true
|
|
9354
9364
|
|
|
9355
|
-
# @!method initialize(car_rental:, customer_reference_identifier:, local_tax_amount:, local_tax_currency:, lodging:, national_tax_amount:, national_tax_currency:, purchase_identifier:, purchase_identifier_format:, travel:)
|
|
9365
|
+
# @!method initialize(car_rental:, customer_reference_identifier:, fleet:, local_tax_amount:, local_tax_currency:, lodging:, national_tax_amount:, national_tax_currency:, purchase_identifier:, purchase_identifier_format:, travel:)
|
|
9356
9366
|
# Additional details about the card purchase, such as tax and industry-specific
|
|
9357
9367
|
# fields.
|
|
9358
9368
|
#
|
|
@@ -9362,6 +9372,9 @@ module Increase
|
|
|
9362
9372
|
# @param customer_reference_identifier [String, nil]
|
|
9363
9373
|
# An identifier from the merchant for the customer or consumer.
|
|
9364
9374
|
#
|
|
9375
|
+
# @param fleet [Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet, nil]
|
|
9376
|
+
# Fields specific to fleet purchases.
|
|
9377
|
+
#
|
|
9365
9378
|
# @param local_tax_amount [Integer, nil] The state or provincial tax amount in minor units.
|
|
9366
9379
|
#
|
|
9367
9380
|
# @param local_tax_currency [String, nil]
|
|
@@ -9598,6 +9611,579 @@ module Increase
|
|
|
9598
9611
|
end
|
|
9599
9612
|
end
|
|
9600
9613
|
|
|
9614
|
+
# @see Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails#fleet
|
|
9615
|
+
class Fleet < Increase::Internal::Type::BaseModel
|
|
9616
|
+
# @!attribute employee_number
|
|
9617
|
+
# The fleet employee number.
|
|
9618
|
+
#
|
|
9619
|
+
# @return [String, nil]
|
|
9620
|
+
required :employee_number, String, nil?: true
|
|
9621
|
+
|
|
9622
|
+
# @!attribute fuel_quantity
|
|
9623
|
+
# The quantity of fuel purchased, given as a string containing a decimal number in
|
|
9624
|
+
# the indicated unit of measure.
|
|
9625
|
+
#
|
|
9626
|
+
# @return [String, nil]
|
|
9627
|
+
required :fuel_quantity, String, nil?: true
|
|
9628
|
+
|
|
9629
|
+
# @!attribute fuel_type
|
|
9630
|
+
# The type of fuel purchased.
|
|
9631
|
+
#
|
|
9632
|
+
# @return [Symbol, Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::FuelType, nil]
|
|
9633
|
+
required :fuel_type,
|
|
9634
|
+
enum: -> {
|
|
9635
|
+
Increase::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::FuelType
|
|
9636
|
+
},
|
|
9637
|
+
nil?: true
|
|
9638
|
+
|
|
9639
|
+
# @!attribute fuel_unit_cost_amount
|
|
9640
|
+
# The cost per unit of fuel in minor units.
|
|
9641
|
+
#
|
|
9642
|
+
# @return [Integer, nil]
|
|
9643
|
+
required :fuel_unit_cost_amount, Integer, nil?: true
|
|
9644
|
+
|
|
9645
|
+
# @!attribute fuel_unit_cost_currency
|
|
9646
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fuel unit
|
|
9647
|
+
# cost.
|
|
9648
|
+
#
|
|
9649
|
+
# @return [String, nil]
|
|
9650
|
+
required :fuel_unit_cost_currency, String, nil?: true
|
|
9651
|
+
|
|
9652
|
+
# @!attribute fuel_unit_of_measure
|
|
9653
|
+
# The unit of measure for the fuel quantity.
|
|
9654
|
+
#
|
|
9655
|
+
# @return [Symbol, Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::FuelUnitOfMeasure, nil]
|
|
9656
|
+
required :fuel_unit_of_measure,
|
|
9657
|
+
enum: -> {
|
|
9658
|
+
Increase::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::FuelUnitOfMeasure
|
|
9659
|
+
},
|
|
9660
|
+
nil?: true
|
|
9661
|
+
|
|
9662
|
+
# @!attribute gross_fuel_price_amount
|
|
9663
|
+
# The gross fuel price in minor units.
|
|
9664
|
+
#
|
|
9665
|
+
# @return [Integer, nil]
|
|
9666
|
+
required :gross_fuel_price_amount, Integer, nil?: true
|
|
9667
|
+
|
|
9668
|
+
# @!attribute gross_fuel_price_currency
|
|
9669
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross fuel
|
|
9670
|
+
# price.
|
|
9671
|
+
#
|
|
9672
|
+
# @return [String, nil]
|
|
9673
|
+
required :gross_fuel_price_currency, String, nil?: true
|
|
9674
|
+
|
|
9675
|
+
# @!attribute gross_non_fuel_price_amount
|
|
9676
|
+
# The gross non-fuel price in minor units.
|
|
9677
|
+
#
|
|
9678
|
+
# @return [Integer, nil]
|
|
9679
|
+
required :gross_non_fuel_price_amount, Integer, nil?: true
|
|
9680
|
+
|
|
9681
|
+
# @!attribute gross_non_fuel_price_currency
|
|
9682
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross
|
|
9683
|
+
# non-fuel price.
|
|
9684
|
+
#
|
|
9685
|
+
# @return [String, nil]
|
|
9686
|
+
required :gross_non_fuel_price_currency, String, nil?: true
|
|
9687
|
+
|
|
9688
|
+
# @!attribute net_fuel_price_amount
|
|
9689
|
+
# The net fuel price in minor units.
|
|
9690
|
+
#
|
|
9691
|
+
# @return [Integer, nil]
|
|
9692
|
+
required :net_fuel_price_amount, Integer, nil?: true
|
|
9693
|
+
|
|
9694
|
+
# @!attribute net_fuel_price_currency
|
|
9695
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net fuel
|
|
9696
|
+
# price.
|
|
9697
|
+
#
|
|
9698
|
+
# @return [String, nil]
|
|
9699
|
+
required :net_fuel_price_currency, String, nil?: true
|
|
9700
|
+
|
|
9701
|
+
# @!attribute net_non_fuel_price_amount
|
|
9702
|
+
# The net non-fuel price in minor units.
|
|
9703
|
+
#
|
|
9704
|
+
# @return [Integer, nil]
|
|
9705
|
+
required :net_non_fuel_price_amount, Integer, nil?: true
|
|
9706
|
+
|
|
9707
|
+
# @!attribute net_non_fuel_price_currency
|
|
9708
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net non-fuel
|
|
9709
|
+
# price.
|
|
9710
|
+
#
|
|
9711
|
+
# @return [String, nil]
|
|
9712
|
+
required :net_non_fuel_price_currency, String, nil?: true
|
|
9713
|
+
|
|
9714
|
+
# @!attribute odometer_reading
|
|
9715
|
+
# The odometer reading reported by the merchant.
|
|
9716
|
+
#
|
|
9717
|
+
# @return [Integer, nil]
|
|
9718
|
+
required :odometer_reading, Integer, nil?: true
|
|
9719
|
+
|
|
9720
|
+
# @!attribute purchase_type
|
|
9721
|
+
# The type of fleet purchase.
|
|
9722
|
+
#
|
|
9723
|
+
# @return [Symbol, Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::PurchaseType, nil]
|
|
9724
|
+
required :purchase_type,
|
|
9725
|
+
enum: -> {
|
|
9726
|
+
Increase::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::PurchaseType
|
|
9727
|
+
},
|
|
9728
|
+
nil?: true
|
|
9729
|
+
|
|
9730
|
+
# @!attribute service_type
|
|
9731
|
+
# The type of service provided.
|
|
9732
|
+
#
|
|
9733
|
+
# @return [Symbol, Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::ServiceType, nil]
|
|
9734
|
+
required :service_type,
|
|
9735
|
+
enum: -> {
|
|
9736
|
+
Increase::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::ServiceType
|
|
9737
|
+
},
|
|
9738
|
+
nil?: true
|
|
9739
|
+
|
|
9740
|
+
# @!attribute trailer_number
|
|
9741
|
+
# The fleet trailer number.
|
|
9742
|
+
#
|
|
9743
|
+
# @return [String, nil]
|
|
9744
|
+
required :trailer_number, String, nil?: true
|
|
9745
|
+
|
|
9746
|
+
# @!method initialize(employee_number:, fuel_quantity:, fuel_type:, fuel_unit_cost_amount:, fuel_unit_cost_currency:, fuel_unit_of_measure:, gross_fuel_price_amount:, gross_fuel_price_currency:, gross_non_fuel_price_amount:, gross_non_fuel_price_currency:, net_fuel_price_amount:, net_fuel_price_currency:, net_non_fuel_price_amount:, net_non_fuel_price_currency:, odometer_reading:, purchase_type:, service_type:, trailer_number:)
|
|
9747
|
+
# Fields specific to fleet purchases.
|
|
9748
|
+
#
|
|
9749
|
+
# @param employee_number [String, nil] The fleet employee number.
|
|
9750
|
+
#
|
|
9751
|
+
# @param fuel_quantity [String, nil]
|
|
9752
|
+
# The quantity of fuel purchased, given as a string containing a decimal number in
|
|
9753
|
+
# the indicated unit of measure.
|
|
9754
|
+
#
|
|
9755
|
+
# @param fuel_type [Symbol, Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::FuelType, nil]
|
|
9756
|
+
# The type of fuel purchased.
|
|
9757
|
+
#
|
|
9758
|
+
# @param fuel_unit_cost_amount [Integer, nil] The cost per unit of fuel in minor units.
|
|
9759
|
+
#
|
|
9760
|
+
# @param fuel_unit_cost_currency [String, nil]
|
|
9761
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fuel unit
|
|
9762
|
+
# cost.
|
|
9763
|
+
#
|
|
9764
|
+
# @param fuel_unit_of_measure [Symbol, Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::FuelUnitOfMeasure, nil]
|
|
9765
|
+
# The unit of measure for the fuel quantity.
|
|
9766
|
+
#
|
|
9767
|
+
# @param gross_fuel_price_amount [Integer, nil] The gross fuel price in minor units.
|
|
9768
|
+
#
|
|
9769
|
+
# @param gross_fuel_price_currency [String, nil]
|
|
9770
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross fuel
|
|
9771
|
+
# price.
|
|
9772
|
+
#
|
|
9773
|
+
# @param gross_non_fuel_price_amount [Integer, nil] The gross non-fuel price in minor units.
|
|
9774
|
+
#
|
|
9775
|
+
# @param gross_non_fuel_price_currency [String, nil]
|
|
9776
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross
|
|
9777
|
+
# non-fuel price.
|
|
9778
|
+
#
|
|
9779
|
+
# @param net_fuel_price_amount [Integer, nil] The net fuel price in minor units.
|
|
9780
|
+
#
|
|
9781
|
+
# @param net_fuel_price_currency [String, nil]
|
|
9782
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net fuel
|
|
9783
|
+
# price.
|
|
9784
|
+
#
|
|
9785
|
+
# @param net_non_fuel_price_amount [Integer, nil] The net non-fuel price in minor units.
|
|
9786
|
+
#
|
|
9787
|
+
# @param net_non_fuel_price_currency [String, nil]
|
|
9788
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net non-fuel
|
|
9789
|
+
# price.
|
|
9790
|
+
#
|
|
9791
|
+
# @param odometer_reading [Integer, nil] The odometer reading reported by the merchant.
|
|
9792
|
+
#
|
|
9793
|
+
# @param purchase_type [Symbol, Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::PurchaseType, nil]
|
|
9794
|
+
# The type of fleet purchase.
|
|
9795
|
+
#
|
|
9796
|
+
# @param service_type [Symbol, Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet::ServiceType, nil]
|
|
9797
|
+
# The type of service provided.
|
|
9798
|
+
#
|
|
9799
|
+
# @param trailer_number [String, nil] The fleet trailer number.
|
|
9800
|
+
|
|
9801
|
+
# The type of fuel purchased.
|
|
9802
|
+
#
|
|
9803
|
+
# @see Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet#fuel_type
|
|
9804
|
+
module FuelType
|
|
9805
|
+
extend Increase::Internal::Type::Enum
|
|
9806
|
+
|
|
9807
|
+
# Regular
|
|
9808
|
+
REGULAR = :regular
|
|
9809
|
+
|
|
9810
|
+
# Mid or plus
|
|
9811
|
+
MID_OR_PLUS = :mid_or_plus
|
|
9812
|
+
|
|
9813
|
+
# Premium or super
|
|
9814
|
+
PREMIUM_OR_SUPER = :premium_or_super
|
|
9815
|
+
|
|
9816
|
+
# Mid or plus 2
|
|
9817
|
+
MID_OR_PLUS_2 = :mid_or_plus_2
|
|
9818
|
+
|
|
9819
|
+
# Premium or super 2
|
|
9820
|
+
PREMIUM_OR_SUPER_2 = :premium_or_super_2
|
|
9821
|
+
|
|
9822
|
+
# Regular ethanol 5% blend outside the United States
|
|
9823
|
+
REGULAR_ETHANOL_5_BLEND_NON_US = :regular_ethanol_5_blend_non_us
|
|
9824
|
+
|
|
9825
|
+
# Mid or plus ethanol 5% blend outside the United States
|
|
9826
|
+
MID_OR_PLUS_ETHANOL_5_BLEND_NON_US = :mid_or_plus_ethanol_5_blend_non_us
|
|
9827
|
+
|
|
9828
|
+
# Premium or super ethanol 5% blend outside the United States
|
|
9829
|
+
PREMIUM_OR_SUPER_ETHANOL_5_BLEND_NON_US = :premium_or_super_ethanol_5_blend_non_us
|
|
9830
|
+
|
|
9831
|
+
# Ethanol 7.7% blend
|
|
9832
|
+
ETHANOL_7_7_BLEND = :ethanol_7_7_blend
|
|
9833
|
+
|
|
9834
|
+
# Mid or plus 2 ethanol 5% blend outside the United States
|
|
9835
|
+
MID_OR_PLUS_2_ETHANOL_5_BLEND_NON_US = :mid_or_plus_2_ethanol_5_blend_non_us
|
|
9836
|
+
|
|
9837
|
+
# Green gasoline regular
|
|
9838
|
+
GREEN_GASOLINE_REGULAR = :green_gasoline_regular
|
|
9839
|
+
|
|
9840
|
+
# Green gasoline mid or plus
|
|
9841
|
+
GREEN_GASOLINE_MID_OR_PLUS = :green_gasoline_mid_or_plus
|
|
9842
|
+
|
|
9843
|
+
# Green gasoline premium or super
|
|
9844
|
+
GREEN_GASOLINE_PREMIUM_OR_SUPER = :green_gasoline_premium_or_super
|
|
9845
|
+
|
|
9846
|
+
# Regular diesel 2
|
|
9847
|
+
REGULAR_DIESEL_2 = :regular_diesel_2
|
|
9848
|
+
|
|
9849
|
+
# Premium diesel 2
|
|
9850
|
+
PREMIUM_DIESEL_2 = :premium_diesel_2
|
|
9851
|
+
|
|
9852
|
+
# Regular diesel 1
|
|
9853
|
+
REGULAR_DIESEL_1 = :regular_diesel_1
|
|
9854
|
+
|
|
9855
|
+
# Compressed natural gas
|
|
9856
|
+
COMPRESSED_NATURAL_GAS = :compressed_natural_gas
|
|
9857
|
+
|
|
9858
|
+
# Liquid propane gas
|
|
9859
|
+
LIQUID_PROPANE_GAS = :liquid_propane_gas
|
|
9860
|
+
|
|
9861
|
+
# Liquid natural gas
|
|
9862
|
+
LIQUID_NATURAL_GAS = :liquid_natural_gas
|
|
9863
|
+
|
|
9864
|
+
# E85
|
|
9865
|
+
E85 = :e85
|
|
9866
|
+
|
|
9867
|
+
# Regular reformulated
|
|
9868
|
+
REGULAR_REFORMULATED = :regular_reformulated
|
|
9869
|
+
|
|
9870
|
+
# Mid or plus reformulated
|
|
9871
|
+
MID_OR_PLUS_REFORMULATED = :mid_or_plus_reformulated
|
|
9872
|
+
|
|
9873
|
+
# Premium or super reformulated
|
|
9874
|
+
PREMIUM_OR_SUPER_REFORMULATED = :premium_or_super_reformulated
|
|
9875
|
+
|
|
9876
|
+
# Mid or plus 2 reformulated
|
|
9877
|
+
MID_OR_PLUS_2_REFORMULATED = :mid_or_plus_2_reformulated
|
|
9878
|
+
|
|
9879
|
+
# Premium or super 2 reformulated
|
|
9880
|
+
PREMIUM_OR_SUPER_2_REFORMULATED = :premium_or_super_2_reformulated
|
|
9881
|
+
|
|
9882
|
+
# Diesel off-road 1/2 non-taxable
|
|
9883
|
+
DIESEL_OFF_ROAD_1_2_NON_TAXABLE = :diesel_off_road_1_2_non_taxable
|
|
9884
|
+
|
|
9885
|
+
# Diesel off-road non-taxable
|
|
9886
|
+
DIESEL_OFF_ROAD_NON_TAXABLE = :diesel_off_road_non_taxable
|
|
9887
|
+
|
|
9888
|
+
# Biodiesel blend off-road non-taxable
|
|
9889
|
+
BIODIESEL_BLEND_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_off_road_non_taxable
|
|
9890
|
+
|
|
9891
|
+
# Racing fuel
|
|
9892
|
+
RACING_FUEL = :racing_fuel
|
|
9893
|
+
|
|
9894
|
+
# Mid or plus 2 ethanol 10% blend
|
|
9895
|
+
MID_OR_PLUS_2_ETHANOL_10_BLEND = :mid_or_plus_2_ethanol_10_blend
|
|
9896
|
+
|
|
9897
|
+
# Premium or super 2 ethanol 10% blend
|
|
9898
|
+
PREMIUM_OR_SUPER_2_ETHANOL_10_BLEND = :premium_or_super_2_ethanol_10_blend
|
|
9899
|
+
|
|
9900
|
+
# Mid or plus ethanol 2–15% blend
|
|
9901
|
+
MID_OR_PLUS_ETHANOL_2_15_BLEND = :mid_or_plus_ethanol_2_15_blend
|
|
9902
|
+
|
|
9903
|
+
# Premium or super ethanol 2–15% blend
|
|
9904
|
+
PREMIUM_OR_SUPER_ETHANOL_2_15_BLEND = :premium_or_super_ethanol_2_15_blend
|
|
9905
|
+
|
|
9906
|
+
# Premium or super 2 ethanol 5% blend outside the United States
|
|
9907
|
+
PREMIUM_OR_SUPER_2_ETHANOL_5_BLEND_NON_US = :premium_or_super_2_ethanol_5_blend_non_us
|
|
9908
|
+
|
|
9909
|
+
# Regular ethanol 10% blend
|
|
9910
|
+
REGULAR_ETHANOL_10_BLEND = :regular_ethanol_10_blend
|
|
9911
|
+
|
|
9912
|
+
# Mid or plus ethanol 10% blend
|
|
9913
|
+
MID_OR_PLUS_ETHANOL_10_BLEND = :mid_or_plus_ethanol_10_blend
|
|
9914
|
+
|
|
9915
|
+
# Premium or super ethanol 10% blend
|
|
9916
|
+
PREMIUM_OR_SUPER_ETHANOL_10_BLEND = :premium_or_super_ethanol_10_blend
|
|
9917
|
+
|
|
9918
|
+
# B2 diesel blend 2% biodiesel
|
|
9919
|
+
B2_DIESEL_BLEND_2_BIODIESEL = :b2_diesel_blend_2_biodiesel
|
|
9920
|
+
|
|
9921
|
+
# B5 diesel blend 5% biodiesel
|
|
9922
|
+
B5_DIESEL_BLEND_5_BIODIESEL = :b5_diesel_blend_5_biodiesel
|
|
9923
|
+
|
|
9924
|
+
# B10 diesel blend 10% biodiesel
|
|
9925
|
+
B10_DIESEL_BLEND_10_BIODIESEL = :b10_diesel_blend_10_biodiesel
|
|
9926
|
+
|
|
9927
|
+
# B11 diesel blend 11% biodiesel
|
|
9928
|
+
B11_DIESEL_BLEND_11_BIODIESEL = :b11_diesel_blend_11_biodiesel
|
|
9929
|
+
|
|
9930
|
+
# B15 diesel blend 15% biodiesel
|
|
9931
|
+
B15_DIESEL_BLEND_15_BIODIESEL = :b15_diesel_blend_15_biodiesel
|
|
9932
|
+
|
|
9933
|
+
# B20 diesel blend 20% biodiesel
|
|
9934
|
+
B20_DIESEL_BLEND_20_BIODIESEL = :b20_diesel_blend_20_biodiesel
|
|
9935
|
+
|
|
9936
|
+
# B100 diesel blend 100% biodiesel
|
|
9937
|
+
B100_DIESEL_BLEND_100_BIODIESEL = :b100_diesel_blend_100_biodiesel
|
|
9938
|
+
|
|
9939
|
+
# B1 diesel blend 1% biodiesel
|
|
9940
|
+
B1_DIESEL_BLEND_1_BIODIESEL = :b1_diesel_blend_1_biodiesel
|
|
9941
|
+
|
|
9942
|
+
# Additized diesel 2
|
|
9943
|
+
ADDITIZED_DIESEL_2 = :additized_diesel_2
|
|
9944
|
+
|
|
9945
|
+
# Additized diesel 3
|
|
9946
|
+
ADDITIZED_DIESEL_3 = :additized_diesel_3
|
|
9947
|
+
|
|
9948
|
+
# B7 diesel blend 7% biodiesel outside the United States
|
|
9949
|
+
B7_DIESEL_BLEND_7_BIODIESEL_NON_US = :b7_diesel_blend_7_biodiesel_non_us
|
|
9950
|
+
|
|
9951
|
+
# B7 premium diesel blend 7% biodiesel outside the United States
|
|
9952
|
+
B7_PREMIUM_DIESEL_BLEND_7_BIODIESEL_NON_US = :b7_premium_diesel_blend_7_biodiesel_non_us
|
|
9953
|
+
|
|
9954
|
+
# Renewable diesel R95 or greater
|
|
9955
|
+
RENEWABLE_DIESEL_R95_OR_GREATER = :renewable_diesel_r95_or_greater
|
|
9956
|
+
|
|
9957
|
+
# Renewable diesel biodiesel 6% to 20%
|
|
9958
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20 = :renewable_diesel_biodiesel_6_to_20
|
|
9959
|
+
|
|
9960
|
+
# Diesel exhaust fluid pump
|
|
9961
|
+
DIESEL_EXHAUST_FLUID_PUMP = :diesel_exhaust_fluid_pump
|
|
9962
|
+
|
|
9963
|
+
# Premium diesel 1
|
|
9964
|
+
PREMIUM_DIESEL_1 = :premium_diesel_1
|
|
9965
|
+
|
|
9966
|
+
# Regular ethanol 15% blend
|
|
9967
|
+
REGULAR_ETHANOL_15_BLEND = :regular_ethanol_15_blend
|
|
9968
|
+
|
|
9969
|
+
# Mid or plus ethanol 15% blend
|
|
9970
|
+
MID_OR_PLUS_ETHANOL_15_BLEND = :mid_or_plus_ethanol_15_blend
|
|
9971
|
+
|
|
9972
|
+
# Premium or super ethanol 15% blend
|
|
9973
|
+
PREMIUM_OR_SUPER_ETHANOL_15_BLEND = :premium_or_super_ethanol_15_blend
|
|
9974
|
+
|
|
9975
|
+
# Premium diesel blend less than 20% biodiesel
|
|
9976
|
+
PREMIUM_DIESEL_BLEND_LESS_THAN_20_BIODIESEL = :premium_diesel_blend_less_than_20_biodiesel
|
|
9977
|
+
|
|
9978
|
+
# Premium diesel blend 20% or more biodiesel
|
|
9979
|
+
PREMIUM_DIESEL_BLEND_20_OR_MORE_BIODIESEL = :premium_diesel_blend_20_or_more_biodiesel
|
|
9980
|
+
|
|
9981
|
+
# B75 diesel blend 75% biodiesel
|
|
9982
|
+
B75_DIESEL_BLEND_75_BIODIESEL = :b75_diesel_blend_75_biodiesel
|
|
9983
|
+
|
|
9984
|
+
# B99 diesel blend 99% biodiesel
|
|
9985
|
+
B99_DIESEL_BLEND_99_BIODIESEL = :b99_diesel_blend_99_biodiesel
|
|
9986
|
+
|
|
9987
|
+
# Reserved for preauthorization use only
|
|
9988
|
+
RESERVED_FOR_PREAUTHORIZATION_USE_ONLY = :reserved_for_preauthorization_use_only
|
|
9989
|
+
|
|
9990
|
+
# Undefined fuel reserved for proprietary use
|
|
9991
|
+
UNDEFINED_FUEL_RESERVED_FOR_PROPRIETARY_USE = :undefined_fuel_reserved_for_proprietary_use
|
|
9992
|
+
|
|
9993
|
+
# Miscellaneous fuel
|
|
9994
|
+
MISCELLANEOUS_FUEL = :miscellaneous_fuel
|
|
9995
|
+
|
|
9996
|
+
# Jet fuel
|
|
9997
|
+
JET_FUEL = :jet_fuel
|
|
9998
|
+
|
|
9999
|
+
# Aviation fuel regular
|
|
10000
|
+
AVIATION_FUEL_REGULAR = :aviation_fuel_regular
|
|
10001
|
+
|
|
10002
|
+
# Aviation fuel premium
|
|
10003
|
+
AVIATION_FUEL_PREMIUM = :aviation_fuel_premium
|
|
10004
|
+
|
|
10005
|
+
# Aviation fuel JP8
|
|
10006
|
+
AVIATION_FUEL_JP8 = :aviation_fuel_jp8
|
|
10007
|
+
|
|
10008
|
+
# Aviation fuel 4
|
|
10009
|
+
AVIATION_FUEL_4 = :aviation_fuel_4
|
|
10010
|
+
|
|
10011
|
+
# Aviation fuel 5
|
|
10012
|
+
AVIATION_FUEL_5 = :aviation_fuel_5
|
|
10013
|
+
|
|
10014
|
+
# Biojet diesel
|
|
10015
|
+
BIOJET_DIESEL = :biojet_diesel
|
|
10016
|
+
|
|
10017
|
+
# Aviation biofuel gasoline
|
|
10018
|
+
AVIATION_BIOFUEL_GASOLINE = :aviation_biofuel_gasoline
|
|
10019
|
+
|
|
10020
|
+
# Undefined aviation fuel reserved for proprietary use
|
|
10021
|
+
UNDEFINED_AVIATION_FUEL_RESERVED_FOR_PROPRIETARY_USE =
|
|
10022
|
+
:undefined_aviation_fuel_reserved_for_proprietary_use
|
|
10023
|
+
|
|
10024
|
+
# Miscellaneous aviation fuel
|
|
10025
|
+
MISCELLANEOUS_AVIATION_FUEL = :miscellaneous_aviation_fuel
|
|
10026
|
+
|
|
10027
|
+
# Marine fuel 1
|
|
10028
|
+
MARINE_FUEL_1 = :marine_fuel_1
|
|
10029
|
+
|
|
10030
|
+
# Marine fuel 2
|
|
10031
|
+
MARINE_FUEL_2 = :marine_fuel_2
|
|
10032
|
+
|
|
10033
|
+
# Marine fuel 3
|
|
10034
|
+
MARINE_FUEL_3 = :marine_fuel_3
|
|
10035
|
+
|
|
10036
|
+
# Marine fuel 4
|
|
10037
|
+
MARINE_FUEL_4 = :marine_fuel_4
|
|
10038
|
+
|
|
10039
|
+
# Marine fuel 5
|
|
10040
|
+
MARINE_FUEL_5 = :marine_fuel_5
|
|
10041
|
+
|
|
10042
|
+
# Marine other
|
|
10043
|
+
MARINE_OTHER = :marine_other
|
|
10044
|
+
|
|
10045
|
+
# Marine diesel
|
|
10046
|
+
MARINE_DIESEL = :marine_diesel
|
|
10047
|
+
|
|
10048
|
+
# Miscellaneous marine fuel
|
|
10049
|
+
MISCELLANEOUS_MARINE_FUEL = :miscellaneous_marine_fuel
|
|
10050
|
+
|
|
10051
|
+
# Kerosene low sulfur
|
|
10052
|
+
KEROSENE_LOW_SULFUR = :kerosene_low_sulfur
|
|
10053
|
+
|
|
10054
|
+
# White gas
|
|
10055
|
+
WHITE_GAS = :white_gas
|
|
10056
|
+
|
|
10057
|
+
# Heating oil
|
|
10058
|
+
HEATING_OIL = :heating_oil
|
|
10059
|
+
|
|
10060
|
+
# Other fuel non-taxable
|
|
10061
|
+
OTHER_FUEL_NON_TAXABLE = :other_fuel_non_taxable
|
|
10062
|
+
|
|
10063
|
+
# Kerosene ultra low sulfur
|
|
10064
|
+
KEROSENE_ULTRA_LOW_SULFUR = :kerosene_ultra_low_sulfur
|
|
10065
|
+
|
|
10066
|
+
# Electric vehicle charging level 1 110 volt
|
|
10067
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_1_110_VOLT = :electric_vehicle_charging_level_1_110_volt
|
|
10068
|
+
|
|
10069
|
+
# Electric vehicle charging level 2 240 volt
|
|
10070
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_2_240_VOLT = :electric_vehicle_charging_level_2_240_volt
|
|
10071
|
+
|
|
10072
|
+
# Electric vehicle charging level 3 480 volt
|
|
10073
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_3_480_VOLT = :electric_vehicle_charging_level_3_480_volt
|
|
10074
|
+
|
|
10075
|
+
# Renewable diesel R95 or greater off-road non-taxable
|
|
10076
|
+
RENEWABLE_DIESEL_R95_OR_GREATER_OFF_ROAD_NON_TAXABLE =
|
|
10077
|
+
:renewable_diesel_r95_or_greater_off_road_non_taxable
|
|
10078
|
+
|
|
10079
|
+
# Biodiesel blend 1% off-road non-taxable
|
|
10080
|
+
BIODIESEL_BLEND_1_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_1_off_road_non_taxable
|
|
10081
|
+
|
|
10082
|
+
# Biodiesel blend 75% off-road non-taxable
|
|
10083
|
+
BIODIESEL_BLEND_75_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_75_off_road_non_taxable
|
|
10084
|
+
|
|
10085
|
+
# Biodiesel blend 99% off-road non-taxable
|
|
10086
|
+
BIODIESEL_BLEND_99_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_99_off_road_non_taxable
|
|
10087
|
+
|
|
10088
|
+
# Biodiesel blend 100% off-road non-taxable
|
|
10089
|
+
BIODIESEL_BLEND_100_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_100_off_road_non_taxable
|
|
10090
|
+
|
|
10091
|
+
# Renewable diesel biodiesel 6% to 20% off-road non-taxable
|
|
10092
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20_OFF_ROAD_NON_TAXABLE =
|
|
10093
|
+
:renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
|
|
10094
|
+
|
|
10095
|
+
# Electric vehicle charging level 4 800 volt
|
|
10096
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_4_800_VOLT = :electric_vehicle_charging_level_4_800_volt
|
|
10097
|
+
|
|
10098
|
+
# Electric vehicle charging level 5 megawatt
|
|
10099
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_5_MEGAWATT = :electric_vehicle_charging_level_5_megawatt
|
|
10100
|
+
|
|
10101
|
+
# Hydrotreated vegetable oil 100
|
|
10102
|
+
HYDROTREATED_VEGETABLE_OIL_100 = :hydrotreated_vegetable_oil_100
|
|
10103
|
+
|
|
10104
|
+
# Bio compressed natural gas
|
|
10105
|
+
BIO_COMPRESSED_NATURAL_GAS = :bio_compressed_natural_gas
|
|
10106
|
+
|
|
10107
|
+
# Miscellaneous other fuel
|
|
10108
|
+
MISCELLANEOUS_OTHER_FUEL = :miscellaneous_other_fuel
|
|
10109
|
+
|
|
10110
|
+
# @!method self.values
|
|
10111
|
+
# @return [Array<Symbol>]
|
|
10112
|
+
end
|
|
10113
|
+
|
|
10114
|
+
# The unit of measure for the fuel quantity.
|
|
10115
|
+
#
|
|
10116
|
+
# @see Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet#fuel_unit_of_measure
|
|
10117
|
+
module FuelUnitOfMeasure
|
|
10118
|
+
extend Increase::Internal::Type::Enum
|
|
10119
|
+
|
|
10120
|
+
# Liter
|
|
10121
|
+
LITER = :liter
|
|
10122
|
+
|
|
10123
|
+
# US gallon
|
|
10124
|
+
US_GALLON = :us_gallon
|
|
10125
|
+
|
|
10126
|
+
# Imperial gallon
|
|
10127
|
+
IMPERIAL_GALLON = :imperial_gallon
|
|
10128
|
+
|
|
10129
|
+
# Kilogram
|
|
10130
|
+
KILOGRAM = :kilogram
|
|
10131
|
+
|
|
10132
|
+
# Pound
|
|
10133
|
+
POUND = :pound
|
|
10134
|
+
|
|
10135
|
+
# Charging minutes
|
|
10136
|
+
CHARGING_MINUTES = :charging_minutes
|
|
10137
|
+
|
|
10138
|
+
# Kilowatt hour
|
|
10139
|
+
KILOWATT_HOUR = :kilowatt_hour
|
|
10140
|
+
|
|
10141
|
+
# @!method self.values
|
|
10142
|
+
# @return [Array<Symbol>]
|
|
10143
|
+
end
|
|
10144
|
+
|
|
10145
|
+
# The type of fleet purchase.
|
|
10146
|
+
#
|
|
10147
|
+
# @see Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet#purchase_type
|
|
10148
|
+
module PurchaseType
|
|
10149
|
+
extend Increase::Internal::Type::Enum
|
|
10150
|
+
|
|
10151
|
+
# Fuel purchase
|
|
10152
|
+
FUEL_PURCHASE = :fuel_purchase
|
|
10153
|
+
|
|
10154
|
+
# Non-fuel purchase
|
|
10155
|
+
NON_FUEL_PURCHASE = :non_fuel_purchase
|
|
10156
|
+
|
|
10157
|
+
# Fuel and non-fuel purchase
|
|
10158
|
+
FUEL_AND_NON_FUEL_PURCHASE = :fuel_and_non_fuel_purchase
|
|
10159
|
+
|
|
10160
|
+
# Fuel purchase with multiple fuel types
|
|
10161
|
+
FUEL_PURCHASE_WITH_MULTIPLE_FUEL_TYPES = :fuel_purchase_with_multiple_fuel_types
|
|
10162
|
+
|
|
10163
|
+
# @!method self.values
|
|
10164
|
+
# @return [Array<Symbol>]
|
|
10165
|
+
end
|
|
10166
|
+
|
|
10167
|
+
# The type of service provided.
|
|
10168
|
+
#
|
|
10169
|
+
# @see Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails::Fleet#service_type
|
|
10170
|
+
module ServiceType
|
|
10171
|
+
extend Increase::Internal::Type::Enum
|
|
10172
|
+
|
|
10173
|
+
# Full service
|
|
10174
|
+
FULL_SERVICE = :full_service
|
|
10175
|
+
|
|
10176
|
+
# Self service
|
|
10177
|
+
SELF_SERVICE = :self_service
|
|
10178
|
+
|
|
10179
|
+
# High speed dispense
|
|
10180
|
+
HIGH_SPEED_DISPENSE = :high_speed_dispense
|
|
10181
|
+
|
|
10182
|
+
# @!method self.values
|
|
10183
|
+
# @return [Array<Symbol>]
|
|
10184
|
+
end
|
|
10185
|
+
end
|
|
10186
|
+
|
|
9601
10187
|
# @see Increase::Models::CardPayment::Element::CardRefund::PurchaseDetails#lodging
|
|
9602
10188
|
class Lodging < Increase::Internal::Type::BaseModel
|
|
9603
10189
|
# @!attribute check_in_date
|
|
@@ -11438,6 +12024,16 @@ module Increase
|
|
|
11438
12024
|
# @return [String, nil]
|
|
11439
12025
|
required :customer_reference_identifier, String, nil?: true
|
|
11440
12026
|
|
|
12027
|
+
# @!attribute fleet
|
|
12028
|
+
# Fields specific to fleet purchases.
|
|
12029
|
+
#
|
|
12030
|
+
# @return [Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet, nil]
|
|
12031
|
+
required :fleet,
|
|
12032
|
+
-> {
|
|
12033
|
+
Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet
|
|
12034
|
+
},
|
|
12035
|
+
nil?: true
|
|
12036
|
+
|
|
11441
12037
|
# @!attribute local_tax_amount
|
|
11442
12038
|
# The state or provincial tax amount in minor units.
|
|
11443
12039
|
#
|
|
@@ -11496,7 +12092,7 @@ module Increase
|
|
|
11496
12092
|
-> { Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Travel },
|
|
11497
12093
|
nil?: true
|
|
11498
12094
|
|
|
11499
|
-
# @!method initialize(car_rental:, customer_reference_identifier:, local_tax_amount:, local_tax_currency:, lodging:, national_tax_amount:, national_tax_currency:, purchase_identifier:, purchase_identifier_format:, travel:)
|
|
12095
|
+
# @!method initialize(car_rental:, customer_reference_identifier:, fleet:, local_tax_amount:, local_tax_currency:, lodging:, national_tax_amount:, national_tax_currency:, purchase_identifier:, purchase_identifier_format:, travel:)
|
|
11500
12096
|
# Additional details about the card purchase, such as tax and industry-specific
|
|
11501
12097
|
# fields.
|
|
11502
12098
|
#
|
|
@@ -11506,6 +12102,9 @@ module Increase
|
|
|
11506
12102
|
# @param customer_reference_identifier [String, nil]
|
|
11507
12103
|
# An identifier from the merchant for the customer or consumer.
|
|
11508
12104
|
#
|
|
12105
|
+
# @param fleet [Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet, nil]
|
|
12106
|
+
# Fields specific to fleet purchases.
|
|
12107
|
+
#
|
|
11509
12108
|
# @param local_tax_amount [Integer, nil] The state or provincial tax amount in minor units.
|
|
11510
12109
|
#
|
|
11511
12110
|
# @param local_tax_currency [String, nil]
|
|
@@ -11742,6 +12341,579 @@ module Increase
|
|
|
11742
12341
|
end
|
|
11743
12342
|
end
|
|
11744
12343
|
|
|
12344
|
+
# @see Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails#fleet
|
|
12345
|
+
class Fleet < Increase::Internal::Type::BaseModel
|
|
12346
|
+
# @!attribute employee_number
|
|
12347
|
+
# The fleet employee number.
|
|
12348
|
+
#
|
|
12349
|
+
# @return [String, nil]
|
|
12350
|
+
required :employee_number, String, nil?: true
|
|
12351
|
+
|
|
12352
|
+
# @!attribute fuel_quantity
|
|
12353
|
+
# The quantity of fuel purchased, given as a string containing a decimal number in
|
|
12354
|
+
# the indicated unit of measure.
|
|
12355
|
+
#
|
|
12356
|
+
# @return [String, nil]
|
|
12357
|
+
required :fuel_quantity, String, nil?: true
|
|
12358
|
+
|
|
12359
|
+
# @!attribute fuel_type
|
|
12360
|
+
# The type of fuel purchased.
|
|
12361
|
+
#
|
|
12362
|
+
# @return [Symbol, Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::FuelType, nil]
|
|
12363
|
+
required :fuel_type,
|
|
12364
|
+
enum: -> {
|
|
12365
|
+
Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::FuelType
|
|
12366
|
+
},
|
|
12367
|
+
nil?: true
|
|
12368
|
+
|
|
12369
|
+
# @!attribute fuel_unit_cost_amount
|
|
12370
|
+
# The cost per unit of fuel in minor units.
|
|
12371
|
+
#
|
|
12372
|
+
# @return [Integer, nil]
|
|
12373
|
+
required :fuel_unit_cost_amount, Integer, nil?: true
|
|
12374
|
+
|
|
12375
|
+
# @!attribute fuel_unit_cost_currency
|
|
12376
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fuel unit
|
|
12377
|
+
# cost.
|
|
12378
|
+
#
|
|
12379
|
+
# @return [String, nil]
|
|
12380
|
+
required :fuel_unit_cost_currency, String, nil?: true
|
|
12381
|
+
|
|
12382
|
+
# @!attribute fuel_unit_of_measure
|
|
12383
|
+
# The unit of measure for the fuel quantity.
|
|
12384
|
+
#
|
|
12385
|
+
# @return [Symbol, Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::FuelUnitOfMeasure, nil]
|
|
12386
|
+
required :fuel_unit_of_measure,
|
|
12387
|
+
enum: -> {
|
|
12388
|
+
Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::FuelUnitOfMeasure
|
|
12389
|
+
},
|
|
12390
|
+
nil?: true
|
|
12391
|
+
|
|
12392
|
+
# @!attribute gross_fuel_price_amount
|
|
12393
|
+
# The gross fuel price in minor units.
|
|
12394
|
+
#
|
|
12395
|
+
# @return [Integer, nil]
|
|
12396
|
+
required :gross_fuel_price_amount, Integer, nil?: true
|
|
12397
|
+
|
|
12398
|
+
# @!attribute gross_fuel_price_currency
|
|
12399
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross fuel
|
|
12400
|
+
# price.
|
|
12401
|
+
#
|
|
12402
|
+
# @return [String, nil]
|
|
12403
|
+
required :gross_fuel_price_currency, String, nil?: true
|
|
12404
|
+
|
|
12405
|
+
# @!attribute gross_non_fuel_price_amount
|
|
12406
|
+
# The gross non-fuel price in minor units.
|
|
12407
|
+
#
|
|
12408
|
+
# @return [Integer, nil]
|
|
12409
|
+
required :gross_non_fuel_price_amount, Integer, nil?: true
|
|
12410
|
+
|
|
12411
|
+
# @!attribute gross_non_fuel_price_currency
|
|
12412
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross
|
|
12413
|
+
# non-fuel price.
|
|
12414
|
+
#
|
|
12415
|
+
# @return [String, nil]
|
|
12416
|
+
required :gross_non_fuel_price_currency, String, nil?: true
|
|
12417
|
+
|
|
12418
|
+
# @!attribute net_fuel_price_amount
|
|
12419
|
+
# The net fuel price in minor units.
|
|
12420
|
+
#
|
|
12421
|
+
# @return [Integer, nil]
|
|
12422
|
+
required :net_fuel_price_amount, Integer, nil?: true
|
|
12423
|
+
|
|
12424
|
+
# @!attribute net_fuel_price_currency
|
|
12425
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net fuel
|
|
12426
|
+
# price.
|
|
12427
|
+
#
|
|
12428
|
+
# @return [String, nil]
|
|
12429
|
+
required :net_fuel_price_currency, String, nil?: true
|
|
12430
|
+
|
|
12431
|
+
# @!attribute net_non_fuel_price_amount
|
|
12432
|
+
# The net non-fuel price in minor units.
|
|
12433
|
+
#
|
|
12434
|
+
# @return [Integer, nil]
|
|
12435
|
+
required :net_non_fuel_price_amount, Integer, nil?: true
|
|
12436
|
+
|
|
12437
|
+
# @!attribute net_non_fuel_price_currency
|
|
12438
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net non-fuel
|
|
12439
|
+
# price.
|
|
12440
|
+
#
|
|
12441
|
+
# @return [String, nil]
|
|
12442
|
+
required :net_non_fuel_price_currency, String, nil?: true
|
|
12443
|
+
|
|
12444
|
+
# @!attribute odometer_reading
|
|
12445
|
+
# The odometer reading reported by the merchant.
|
|
12446
|
+
#
|
|
12447
|
+
# @return [Integer, nil]
|
|
12448
|
+
required :odometer_reading, Integer, nil?: true
|
|
12449
|
+
|
|
12450
|
+
# @!attribute purchase_type
|
|
12451
|
+
# The type of fleet purchase.
|
|
12452
|
+
#
|
|
12453
|
+
# @return [Symbol, Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::PurchaseType, nil]
|
|
12454
|
+
required :purchase_type,
|
|
12455
|
+
enum: -> {
|
|
12456
|
+
Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::PurchaseType
|
|
12457
|
+
},
|
|
12458
|
+
nil?: true
|
|
12459
|
+
|
|
12460
|
+
# @!attribute service_type
|
|
12461
|
+
# The type of service provided.
|
|
12462
|
+
#
|
|
12463
|
+
# @return [Symbol, Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::ServiceType, nil]
|
|
12464
|
+
required :service_type,
|
|
12465
|
+
enum: -> {
|
|
12466
|
+
Increase::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::ServiceType
|
|
12467
|
+
},
|
|
12468
|
+
nil?: true
|
|
12469
|
+
|
|
12470
|
+
# @!attribute trailer_number
|
|
12471
|
+
# The fleet trailer number.
|
|
12472
|
+
#
|
|
12473
|
+
# @return [String, nil]
|
|
12474
|
+
required :trailer_number, String, nil?: true
|
|
12475
|
+
|
|
12476
|
+
# @!method initialize(employee_number:, fuel_quantity:, fuel_type:, fuel_unit_cost_amount:, fuel_unit_cost_currency:, fuel_unit_of_measure:, gross_fuel_price_amount:, gross_fuel_price_currency:, gross_non_fuel_price_amount:, gross_non_fuel_price_currency:, net_fuel_price_amount:, net_fuel_price_currency:, net_non_fuel_price_amount:, net_non_fuel_price_currency:, odometer_reading:, purchase_type:, service_type:, trailer_number:)
|
|
12477
|
+
# Fields specific to fleet purchases.
|
|
12478
|
+
#
|
|
12479
|
+
# @param employee_number [String, nil] The fleet employee number.
|
|
12480
|
+
#
|
|
12481
|
+
# @param fuel_quantity [String, nil]
|
|
12482
|
+
# The quantity of fuel purchased, given as a string containing a decimal number in
|
|
12483
|
+
# the indicated unit of measure.
|
|
12484
|
+
#
|
|
12485
|
+
# @param fuel_type [Symbol, Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::FuelType, nil]
|
|
12486
|
+
# The type of fuel purchased.
|
|
12487
|
+
#
|
|
12488
|
+
# @param fuel_unit_cost_amount [Integer, nil] The cost per unit of fuel in minor units.
|
|
12489
|
+
#
|
|
12490
|
+
# @param fuel_unit_cost_currency [String, nil]
|
|
12491
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fuel unit
|
|
12492
|
+
# cost.
|
|
12493
|
+
#
|
|
12494
|
+
# @param fuel_unit_of_measure [Symbol, Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::FuelUnitOfMeasure, nil]
|
|
12495
|
+
# The unit of measure for the fuel quantity.
|
|
12496
|
+
#
|
|
12497
|
+
# @param gross_fuel_price_amount [Integer, nil] The gross fuel price in minor units.
|
|
12498
|
+
#
|
|
12499
|
+
# @param gross_fuel_price_currency [String, nil]
|
|
12500
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross fuel
|
|
12501
|
+
# price.
|
|
12502
|
+
#
|
|
12503
|
+
# @param gross_non_fuel_price_amount [Integer, nil] The gross non-fuel price in minor units.
|
|
12504
|
+
#
|
|
12505
|
+
# @param gross_non_fuel_price_currency [String, nil]
|
|
12506
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross
|
|
12507
|
+
# non-fuel price.
|
|
12508
|
+
#
|
|
12509
|
+
# @param net_fuel_price_amount [Integer, nil] The net fuel price in minor units.
|
|
12510
|
+
#
|
|
12511
|
+
# @param net_fuel_price_currency [String, nil]
|
|
12512
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net fuel
|
|
12513
|
+
# price.
|
|
12514
|
+
#
|
|
12515
|
+
# @param net_non_fuel_price_amount [Integer, nil] The net non-fuel price in minor units.
|
|
12516
|
+
#
|
|
12517
|
+
# @param net_non_fuel_price_currency [String, nil]
|
|
12518
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net non-fuel
|
|
12519
|
+
# price.
|
|
12520
|
+
#
|
|
12521
|
+
# @param odometer_reading [Integer, nil] The odometer reading reported by the merchant.
|
|
12522
|
+
#
|
|
12523
|
+
# @param purchase_type [Symbol, Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::PurchaseType, nil]
|
|
12524
|
+
# The type of fleet purchase.
|
|
12525
|
+
#
|
|
12526
|
+
# @param service_type [Symbol, Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet::ServiceType, nil]
|
|
12527
|
+
# The type of service provided.
|
|
12528
|
+
#
|
|
12529
|
+
# @param trailer_number [String, nil] The fleet trailer number.
|
|
12530
|
+
|
|
12531
|
+
# The type of fuel purchased.
|
|
12532
|
+
#
|
|
12533
|
+
# @see Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet#fuel_type
|
|
12534
|
+
module FuelType
|
|
12535
|
+
extend Increase::Internal::Type::Enum
|
|
12536
|
+
|
|
12537
|
+
# Regular
|
|
12538
|
+
REGULAR = :regular
|
|
12539
|
+
|
|
12540
|
+
# Mid or plus
|
|
12541
|
+
MID_OR_PLUS = :mid_or_plus
|
|
12542
|
+
|
|
12543
|
+
# Premium or super
|
|
12544
|
+
PREMIUM_OR_SUPER = :premium_or_super
|
|
12545
|
+
|
|
12546
|
+
# Mid or plus 2
|
|
12547
|
+
MID_OR_PLUS_2 = :mid_or_plus_2
|
|
12548
|
+
|
|
12549
|
+
# Premium or super 2
|
|
12550
|
+
PREMIUM_OR_SUPER_2 = :premium_or_super_2
|
|
12551
|
+
|
|
12552
|
+
# Regular ethanol 5% blend outside the United States
|
|
12553
|
+
REGULAR_ETHANOL_5_BLEND_NON_US = :regular_ethanol_5_blend_non_us
|
|
12554
|
+
|
|
12555
|
+
# Mid or plus ethanol 5% blend outside the United States
|
|
12556
|
+
MID_OR_PLUS_ETHANOL_5_BLEND_NON_US = :mid_or_plus_ethanol_5_blend_non_us
|
|
12557
|
+
|
|
12558
|
+
# Premium or super ethanol 5% blend outside the United States
|
|
12559
|
+
PREMIUM_OR_SUPER_ETHANOL_5_BLEND_NON_US = :premium_or_super_ethanol_5_blend_non_us
|
|
12560
|
+
|
|
12561
|
+
# Ethanol 7.7% blend
|
|
12562
|
+
ETHANOL_7_7_BLEND = :ethanol_7_7_blend
|
|
12563
|
+
|
|
12564
|
+
# Mid or plus 2 ethanol 5% blend outside the United States
|
|
12565
|
+
MID_OR_PLUS_2_ETHANOL_5_BLEND_NON_US = :mid_or_plus_2_ethanol_5_blend_non_us
|
|
12566
|
+
|
|
12567
|
+
# Green gasoline regular
|
|
12568
|
+
GREEN_GASOLINE_REGULAR = :green_gasoline_regular
|
|
12569
|
+
|
|
12570
|
+
# Green gasoline mid or plus
|
|
12571
|
+
GREEN_GASOLINE_MID_OR_PLUS = :green_gasoline_mid_or_plus
|
|
12572
|
+
|
|
12573
|
+
# Green gasoline premium or super
|
|
12574
|
+
GREEN_GASOLINE_PREMIUM_OR_SUPER = :green_gasoline_premium_or_super
|
|
12575
|
+
|
|
12576
|
+
# Regular diesel 2
|
|
12577
|
+
REGULAR_DIESEL_2 = :regular_diesel_2
|
|
12578
|
+
|
|
12579
|
+
# Premium diesel 2
|
|
12580
|
+
PREMIUM_DIESEL_2 = :premium_diesel_2
|
|
12581
|
+
|
|
12582
|
+
# Regular diesel 1
|
|
12583
|
+
REGULAR_DIESEL_1 = :regular_diesel_1
|
|
12584
|
+
|
|
12585
|
+
# Compressed natural gas
|
|
12586
|
+
COMPRESSED_NATURAL_GAS = :compressed_natural_gas
|
|
12587
|
+
|
|
12588
|
+
# Liquid propane gas
|
|
12589
|
+
LIQUID_PROPANE_GAS = :liquid_propane_gas
|
|
12590
|
+
|
|
12591
|
+
# Liquid natural gas
|
|
12592
|
+
LIQUID_NATURAL_GAS = :liquid_natural_gas
|
|
12593
|
+
|
|
12594
|
+
# E85
|
|
12595
|
+
E85 = :e85
|
|
12596
|
+
|
|
12597
|
+
# Regular reformulated
|
|
12598
|
+
REGULAR_REFORMULATED = :regular_reformulated
|
|
12599
|
+
|
|
12600
|
+
# Mid or plus reformulated
|
|
12601
|
+
MID_OR_PLUS_REFORMULATED = :mid_or_plus_reformulated
|
|
12602
|
+
|
|
12603
|
+
# Premium or super reformulated
|
|
12604
|
+
PREMIUM_OR_SUPER_REFORMULATED = :premium_or_super_reformulated
|
|
12605
|
+
|
|
12606
|
+
# Mid or plus 2 reformulated
|
|
12607
|
+
MID_OR_PLUS_2_REFORMULATED = :mid_or_plus_2_reformulated
|
|
12608
|
+
|
|
12609
|
+
# Premium or super 2 reformulated
|
|
12610
|
+
PREMIUM_OR_SUPER_2_REFORMULATED = :premium_or_super_2_reformulated
|
|
12611
|
+
|
|
12612
|
+
# Diesel off-road 1/2 non-taxable
|
|
12613
|
+
DIESEL_OFF_ROAD_1_2_NON_TAXABLE = :diesel_off_road_1_2_non_taxable
|
|
12614
|
+
|
|
12615
|
+
# Diesel off-road non-taxable
|
|
12616
|
+
DIESEL_OFF_ROAD_NON_TAXABLE = :diesel_off_road_non_taxable
|
|
12617
|
+
|
|
12618
|
+
# Biodiesel blend off-road non-taxable
|
|
12619
|
+
BIODIESEL_BLEND_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_off_road_non_taxable
|
|
12620
|
+
|
|
12621
|
+
# Racing fuel
|
|
12622
|
+
RACING_FUEL = :racing_fuel
|
|
12623
|
+
|
|
12624
|
+
# Mid or plus 2 ethanol 10% blend
|
|
12625
|
+
MID_OR_PLUS_2_ETHANOL_10_BLEND = :mid_or_plus_2_ethanol_10_blend
|
|
12626
|
+
|
|
12627
|
+
# Premium or super 2 ethanol 10% blend
|
|
12628
|
+
PREMIUM_OR_SUPER_2_ETHANOL_10_BLEND = :premium_or_super_2_ethanol_10_blend
|
|
12629
|
+
|
|
12630
|
+
# Mid or plus ethanol 2–15% blend
|
|
12631
|
+
MID_OR_PLUS_ETHANOL_2_15_BLEND = :mid_or_plus_ethanol_2_15_blend
|
|
12632
|
+
|
|
12633
|
+
# Premium or super ethanol 2–15% blend
|
|
12634
|
+
PREMIUM_OR_SUPER_ETHANOL_2_15_BLEND = :premium_or_super_ethanol_2_15_blend
|
|
12635
|
+
|
|
12636
|
+
# Premium or super 2 ethanol 5% blend outside the United States
|
|
12637
|
+
PREMIUM_OR_SUPER_2_ETHANOL_5_BLEND_NON_US = :premium_or_super_2_ethanol_5_blend_non_us
|
|
12638
|
+
|
|
12639
|
+
# Regular ethanol 10% blend
|
|
12640
|
+
REGULAR_ETHANOL_10_BLEND = :regular_ethanol_10_blend
|
|
12641
|
+
|
|
12642
|
+
# Mid or plus ethanol 10% blend
|
|
12643
|
+
MID_OR_PLUS_ETHANOL_10_BLEND = :mid_or_plus_ethanol_10_blend
|
|
12644
|
+
|
|
12645
|
+
# Premium or super ethanol 10% blend
|
|
12646
|
+
PREMIUM_OR_SUPER_ETHANOL_10_BLEND = :premium_or_super_ethanol_10_blend
|
|
12647
|
+
|
|
12648
|
+
# B2 diesel blend 2% biodiesel
|
|
12649
|
+
B2_DIESEL_BLEND_2_BIODIESEL = :b2_diesel_blend_2_biodiesel
|
|
12650
|
+
|
|
12651
|
+
# B5 diesel blend 5% biodiesel
|
|
12652
|
+
B5_DIESEL_BLEND_5_BIODIESEL = :b5_diesel_blend_5_biodiesel
|
|
12653
|
+
|
|
12654
|
+
# B10 diesel blend 10% biodiesel
|
|
12655
|
+
B10_DIESEL_BLEND_10_BIODIESEL = :b10_diesel_blend_10_biodiesel
|
|
12656
|
+
|
|
12657
|
+
# B11 diesel blend 11% biodiesel
|
|
12658
|
+
B11_DIESEL_BLEND_11_BIODIESEL = :b11_diesel_blend_11_biodiesel
|
|
12659
|
+
|
|
12660
|
+
# B15 diesel blend 15% biodiesel
|
|
12661
|
+
B15_DIESEL_BLEND_15_BIODIESEL = :b15_diesel_blend_15_biodiesel
|
|
12662
|
+
|
|
12663
|
+
# B20 diesel blend 20% biodiesel
|
|
12664
|
+
B20_DIESEL_BLEND_20_BIODIESEL = :b20_diesel_blend_20_biodiesel
|
|
12665
|
+
|
|
12666
|
+
# B100 diesel blend 100% biodiesel
|
|
12667
|
+
B100_DIESEL_BLEND_100_BIODIESEL = :b100_diesel_blend_100_biodiesel
|
|
12668
|
+
|
|
12669
|
+
# B1 diesel blend 1% biodiesel
|
|
12670
|
+
B1_DIESEL_BLEND_1_BIODIESEL = :b1_diesel_blend_1_biodiesel
|
|
12671
|
+
|
|
12672
|
+
# Additized diesel 2
|
|
12673
|
+
ADDITIZED_DIESEL_2 = :additized_diesel_2
|
|
12674
|
+
|
|
12675
|
+
# Additized diesel 3
|
|
12676
|
+
ADDITIZED_DIESEL_3 = :additized_diesel_3
|
|
12677
|
+
|
|
12678
|
+
# B7 diesel blend 7% biodiesel outside the United States
|
|
12679
|
+
B7_DIESEL_BLEND_7_BIODIESEL_NON_US = :b7_diesel_blend_7_biodiesel_non_us
|
|
12680
|
+
|
|
12681
|
+
# B7 premium diesel blend 7% biodiesel outside the United States
|
|
12682
|
+
B7_PREMIUM_DIESEL_BLEND_7_BIODIESEL_NON_US = :b7_premium_diesel_blend_7_biodiesel_non_us
|
|
12683
|
+
|
|
12684
|
+
# Renewable diesel R95 or greater
|
|
12685
|
+
RENEWABLE_DIESEL_R95_OR_GREATER = :renewable_diesel_r95_or_greater
|
|
12686
|
+
|
|
12687
|
+
# Renewable diesel biodiesel 6% to 20%
|
|
12688
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20 = :renewable_diesel_biodiesel_6_to_20
|
|
12689
|
+
|
|
12690
|
+
# Diesel exhaust fluid pump
|
|
12691
|
+
DIESEL_EXHAUST_FLUID_PUMP = :diesel_exhaust_fluid_pump
|
|
12692
|
+
|
|
12693
|
+
# Premium diesel 1
|
|
12694
|
+
PREMIUM_DIESEL_1 = :premium_diesel_1
|
|
12695
|
+
|
|
12696
|
+
# Regular ethanol 15% blend
|
|
12697
|
+
REGULAR_ETHANOL_15_BLEND = :regular_ethanol_15_blend
|
|
12698
|
+
|
|
12699
|
+
# Mid or plus ethanol 15% blend
|
|
12700
|
+
MID_OR_PLUS_ETHANOL_15_BLEND = :mid_or_plus_ethanol_15_blend
|
|
12701
|
+
|
|
12702
|
+
# Premium or super ethanol 15% blend
|
|
12703
|
+
PREMIUM_OR_SUPER_ETHANOL_15_BLEND = :premium_or_super_ethanol_15_blend
|
|
12704
|
+
|
|
12705
|
+
# Premium diesel blend less than 20% biodiesel
|
|
12706
|
+
PREMIUM_DIESEL_BLEND_LESS_THAN_20_BIODIESEL = :premium_diesel_blend_less_than_20_biodiesel
|
|
12707
|
+
|
|
12708
|
+
# Premium diesel blend 20% or more biodiesel
|
|
12709
|
+
PREMIUM_DIESEL_BLEND_20_OR_MORE_BIODIESEL = :premium_diesel_blend_20_or_more_biodiesel
|
|
12710
|
+
|
|
12711
|
+
# B75 diesel blend 75% biodiesel
|
|
12712
|
+
B75_DIESEL_BLEND_75_BIODIESEL = :b75_diesel_blend_75_biodiesel
|
|
12713
|
+
|
|
12714
|
+
# B99 diesel blend 99% biodiesel
|
|
12715
|
+
B99_DIESEL_BLEND_99_BIODIESEL = :b99_diesel_blend_99_biodiesel
|
|
12716
|
+
|
|
12717
|
+
# Reserved for preauthorization use only
|
|
12718
|
+
RESERVED_FOR_PREAUTHORIZATION_USE_ONLY = :reserved_for_preauthorization_use_only
|
|
12719
|
+
|
|
12720
|
+
# Undefined fuel reserved for proprietary use
|
|
12721
|
+
UNDEFINED_FUEL_RESERVED_FOR_PROPRIETARY_USE = :undefined_fuel_reserved_for_proprietary_use
|
|
12722
|
+
|
|
12723
|
+
# Miscellaneous fuel
|
|
12724
|
+
MISCELLANEOUS_FUEL = :miscellaneous_fuel
|
|
12725
|
+
|
|
12726
|
+
# Jet fuel
|
|
12727
|
+
JET_FUEL = :jet_fuel
|
|
12728
|
+
|
|
12729
|
+
# Aviation fuel regular
|
|
12730
|
+
AVIATION_FUEL_REGULAR = :aviation_fuel_regular
|
|
12731
|
+
|
|
12732
|
+
# Aviation fuel premium
|
|
12733
|
+
AVIATION_FUEL_PREMIUM = :aviation_fuel_premium
|
|
12734
|
+
|
|
12735
|
+
# Aviation fuel JP8
|
|
12736
|
+
AVIATION_FUEL_JP8 = :aviation_fuel_jp8
|
|
12737
|
+
|
|
12738
|
+
# Aviation fuel 4
|
|
12739
|
+
AVIATION_FUEL_4 = :aviation_fuel_4
|
|
12740
|
+
|
|
12741
|
+
# Aviation fuel 5
|
|
12742
|
+
AVIATION_FUEL_5 = :aviation_fuel_5
|
|
12743
|
+
|
|
12744
|
+
# Biojet diesel
|
|
12745
|
+
BIOJET_DIESEL = :biojet_diesel
|
|
12746
|
+
|
|
12747
|
+
# Aviation biofuel gasoline
|
|
12748
|
+
AVIATION_BIOFUEL_GASOLINE = :aviation_biofuel_gasoline
|
|
12749
|
+
|
|
12750
|
+
# Undefined aviation fuel reserved for proprietary use
|
|
12751
|
+
UNDEFINED_AVIATION_FUEL_RESERVED_FOR_PROPRIETARY_USE =
|
|
12752
|
+
:undefined_aviation_fuel_reserved_for_proprietary_use
|
|
12753
|
+
|
|
12754
|
+
# Miscellaneous aviation fuel
|
|
12755
|
+
MISCELLANEOUS_AVIATION_FUEL = :miscellaneous_aviation_fuel
|
|
12756
|
+
|
|
12757
|
+
# Marine fuel 1
|
|
12758
|
+
MARINE_FUEL_1 = :marine_fuel_1
|
|
12759
|
+
|
|
12760
|
+
# Marine fuel 2
|
|
12761
|
+
MARINE_FUEL_2 = :marine_fuel_2
|
|
12762
|
+
|
|
12763
|
+
# Marine fuel 3
|
|
12764
|
+
MARINE_FUEL_3 = :marine_fuel_3
|
|
12765
|
+
|
|
12766
|
+
# Marine fuel 4
|
|
12767
|
+
MARINE_FUEL_4 = :marine_fuel_4
|
|
12768
|
+
|
|
12769
|
+
# Marine fuel 5
|
|
12770
|
+
MARINE_FUEL_5 = :marine_fuel_5
|
|
12771
|
+
|
|
12772
|
+
# Marine other
|
|
12773
|
+
MARINE_OTHER = :marine_other
|
|
12774
|
+
|
|
12775
|
+
# Marine diesel
|
|
12776
|
+
MARINE_DIESEL = :marine_diesel
|
|
12777
|
+
|
|
12778
|
+
# Miscellaneous marine fuel
|
|
12779
|
+
MISCELLANEOUS_MARINE_FUEL = :miscellaneous_marine_fuel
|
|
12780
|
+
|
|
12781
|
+
# Kerosene low sulfur
|
|
12782
|
+
KEROSENE_LOW_SULFUR = :kerosene_low_sulfur
|
|
12783
|
+
|
|
12784
|
+
# White gas
|
|
12785
|
+
WHITE_GAS = :white_gas
|
|
12786
|
+
|
|
12787
|
+
# Heating oil
|
|
12788
|
+
HEATING_OIL = :heating_oil
|
|
12789
|
+
|
|
12790
|
+
# Other fuel non-taxable
|
|
12791
|
+
OTHER_FUEL_NON_TAXABLE = :other_fuel_non_taxable
|
|
12792
|
+
|
|
12793
|
+
# Kerosene ultra low sulfur
|
|
12794
|
+
KEROSENE_ULTRA_LOW_SULFUR = :kerosene_ultra_low_sulfur
|
|
12795
|
+
|
|
12796
|
+
# Electric vehicle charging level 1 110 volt
|
|
12797
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_1_110_VOLT = :electric_vehicle_charging_level_1_110_volt
|
|
12798
|
+
|
|
12799
|
+
# Electric vehicle charging level 2 240 volt
|
|
12800
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_2_240_VOLT = :electric_vehicle_charging_level_2_240_volt
|
|
12801
|
+
|
|
12802
|
+
# Electric vehicle charging level 3 480 volt
|
|
12803
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_3_480_VOLT = :electric_vehicle_charging_level_3_480_volt
|
|
12804
|
+
|
|
12805
|
+
# Renewable diesel R95 or greater off-road non-taxable
|
|
12806
|
+
RENEWABLE_DIESEL_R95_OR_GREATER_OFF_ROAD_NON_TAXABLE =
|
|
12807
|
+
:renewable_diesel_r95_or_greater_off_road_non_taxable
|
|
12808
|
+
|
|
12809
|
+
# Biodiesel blend 1% off-road non-taxable
|
|
12810
|
+
BIODIESEL_BLEND_1_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_1_off_road_non_taxable
|
|
12811
|
+
|
|
12812
|
+
# Biodiesel blend 75% off-road non-taxable
|
|
12813
|
+
BIODIESEL_BLEND_75_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_75_off_road_non_taxable
|
|
12814
|
+
|
|
12815
|
+
# Biodiesel blend 99% off-road non-taxable
|
|
12816
|
+
BIODIESEL_BLEND_99_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_99_off_road_non_taxable
|
|
12817
|
+
|
|
12818
|
+
# Biodiesel blend 100% off-road non-taxable
|
|
12819
|
+
BIODIESEL_BLEND_100_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_100_off_road_non_taxable
|
|
12820
|
+
|
|
12821
|
+
# Renewable diesel biodiesel 6% to 20% off-road non-taxable
|
|
12822
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20_OFF_ROAD_NON_TAXABLE =
|
|
12823
|
+
:renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
|
|
12824
|
+
|
|
12825
|
+
# Electric vehicle charging level 4 800 volt
|
|
12826
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_4_800_VOLT = :electric_vehicle_charging_level_4_800_volt
|
|
12827
|
+
|
|
12828
|
+
# Electric vehicle charging level 5 megawatt
|
|
12829
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_5_MEGAWATT = :electric_vehicle_charging_level_5_megawatt
|
|
12830
|
+
|
|
12831
|
+
# Hydrotreated vegetable oil 100
|
|
12832
|
+
HYDROTREATED_VEGETABLE_OIL_100 = :hydrotreated_vegetable_oil_100
|
|
12833
|
+
|
|
12834
|
+
# Bio compressed natural gas
|
|
12835
|
+
BIO_COMPRESSED_NATURAL_GAS = :bio_compressed_natural_gas
|
|
12836
|
+
|
|
12837
|
+
# Miscellaneous other fuel
|
|
12838
|
+
MISCELLANEOUS_OTHER_FUEL = :miscellaneous_other_fuel
|
|
12839
|
+
|
|
12840
|
+
# @!method self.values
|
|
12841
|
+
# @return [Array<Symbol>]
|
|
12842
|
+
end
|
|
12843
|
+
|
|
12844
|
+
# The unit of measure for the fuel quantity.
|
|
12845
|
+
#
|
|
12846
|
+
# @see Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet#fuel_unit_of_measure
|
|
12847
|
+
module FuelUnitOfMeasure
|
|
12848
|
+
extend Increase::Internal::Type::Enum
|
|
12849
|
+
|
|
12850
|
+
# Liter
|
|
12851
|
+
LITER = :liter
|
|
12852
|
+
|
|
12853
|
+
# US gallon
|
|
12854
|
+
US_GALLON = :us_gallon
|
|
12855
|
+
|
|
12856
|
+
# Imperial gallon
|
|
12857
|
+
IMPERIAL_GALLON = :imperial_gallon
|
|
12858
|
+
|
|
12859
|
+
# Kilogram
|
|
12860
|
+
KILOGRAM = :kilogram
|
|
12861
|
+
|
|
12862
|
+
# Pound
|
|
12863
|
+
POUND = :pound
|
|
12864
|
+
|
|
12865
|
+
# Charging minutes
|
|
12866
|
+
CHARGING_MINUTES = :charging_minutes
|
|
12867
|
+
|
|
12868
|
+
# Kilowatt hour
|
|
12869
|
+
KILOWATT_HOUR = :kilowatt_hour
|
|
12870
|
+
|
|
12871
|
+
# @!method self.values
|
|
12872
|
+
# @return [Array<Symbol>]
|
|
12873
|
+
end
|
|
12874
|
+
|
|
12875
|
+
# The type of fleet purchase.
|
|
12876
|
+
#
|
|
12877
|
+
# @see Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet#purchase_type
|
|
12878
|
+
module PurchaseType
|
|
12879
|
+
extend Increase::Internal::Type::Enum
|
|
12880
|
+
|
|
12881
|
+
# Fuel purchase
|
|
12882
|
+
FUEL_PURCHASE = :fuel_purchase
|
|
12883
|
+
|
|
12884
|
+
# Non-fuel purchase
|
|
12885
|
+
NON_FUEL_PURCHASE = :non_fuel_purchase
|
|
12886
|
+
|
|
12887
|
+
# Fuel and non-fuel purchase
|
|
12888
|
+
FUEL_AND_NON_FUEL_PURCHASE = :fuel_and_non_fuel_purchase
|
|
12889
|
+
|
|
12890
|
+
# Fuel purchase with multiple fuel types
|
|
12891
|
+
FUEL_PURCHASE_WITH_MULTIPLE_FUEL_TYPES = :fuel_purchase_with_multiple_fuel_types
|
|
12892
|
+
|
|
12893
|
+
# @!method self.values
|
|
12894
|
+
# @return [Array<Symbol>]
|
|
12895
|
+
end
|
|
12896
|
+
|
|
12897
|
+
# The type of service provided.
|
|
12898
|
+
#
|
|
12899
|
+
# @see Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails::Fleet#service_type
|
|
12900
|
+
module ServiceType
|
|
12901
|
+
extend Increase::Internal::Type::Enum
|
|
12902
|
+
|
|
12903
|
+
# Full service
|
|
12904
|
+
FULL_SERVICE = :full_service
|
|
12905
|
+
|
|
12906
|
+
# Self service
|
|
12907
|
+
SELF_SERVICE = :self_service
|
|
12908
|
+
|
|
12909
|
+
# High speed dispense
|
|
12910
|
+
HIGH_SPEED_DISPENSE = :high_speed_dispense
|
|
12911
|
+
|
|
12912
|
+
# @!method self.values
|
|
12913
|
+
# @return [Array<Symbol>]
|
|
12914
|
+
end
|
|
12915
|
+
end
|
|
12916
|
+
|
|
11745
12917
|
# @see Increase::Models::CardPayment::Element::CardSettlement::PurchaseDetails#lodging
|
|
11746
12918
|
class Lodging < Increase::Internal::Type::BaseModel
|
|
11747
12919
|
# @!attribute check_in_date
|