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