increase 1.351.0 → 1.353.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/increase/models/account_statement.rb +12 -4
- data/lib/increase/models/balance_lookup.rb +1 -59
- data/lib/increase/models/beneficial_owner_create_params.rb +3 -0
- data/lib/increase/models/beneficial_owner_update_params.rb +3 -0
- data/lib/increase/models/card_payment.rb +1174 -2
- data/lib/increase/models/check_transfer.rb +15 -9
- data/lib/increase/models/entity.rb +18 -0
- data/lib/increase/models/entity_beneficial_owner.rb +3 -0
- data/lib/increase/models/entity_create_params.rb +36 -20
- data/lib/increase/models/entity_update_params.rb +33 -20
- data/lib/increase/models/event.rb +12 -0
- data/lib/increase/models/event_list_params.rb +12 -0
- data/lib/increase/models/event_subscription.rb +12 -0
- data/lib/increase/models/event_subscription_create_params.rb +12 -0
- data/lib/increase/models/inbound_ach_transfer.rb +9 -1
- data/lib/increase/models/pending_transaction.rb +121 -1
- data/lib/increase/models/pending_transaction_list_params.rb +6 -0
- data/lib/increase/models/simulations/physical_card_create_params.rb +9 -6
- data/lib/increase/models/transaction.rb +1277 -3
- data/lib/increase/models/transaction_list_params.rb +6 -0
- data/lib/increase/models/unwrap_webhook_event.rb +12 -0
- data/lib/increase/models/wire_drawdown_request.rb +3 -3
- data/lib/increase/models/wire_drawdown_request_list_params.rb +3 -3
- data/lib/increase/resources/simulations/account_statements.rb +2 -1
- data/lib/increase/resources/simulations/physical_cards.rb +5 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_statement.rbi +12 -4
- data/rbi/increase/models/balance_lookup.rbi +3 -87
- data/rbi/increase/models/beneficial_owner_create_params.rbi +7 -0
- data/rbi/increase/models/beneficial_owner_update_params.rbi +7 -0
- data/rbi/increase/models/card_payment.rbi +5276 -2964
- data/rbi/increase/models/check_transfer.rbi +15 -9
- data/rbi/increase/models/entity.rbi +42 -0
- data/rbi/increase/models/entity_beneficial_owner.rbi +7 -0
- data/rbi/increase/models/entity_create_params.rbi +46 -21
- data/rbi/increase/models/entity_update_params.rbi +39 -21
- data/rbi/increase/models/event.rbi +28 -0
- data/rbi/increase/models/event_list_params.rbi +28 -0
- data/rbi/increase/models/event_subscription.rbi +28 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +28 -0
- data/rbi/increase/models/inbound_ach_transfer.rbi +8 -0
- data/rbi/increase/models/pending_transaction.rbi +254 -0
- data/rbi/increase/models/pending_transaction_list_params.rbi +14 -0
- data/rbi/increase/models/simulations/physical_card_create_params.rbi +8 -6
- data/rbi/increase/models/transaction.rbi +4848 -2358
- data/rbi/increase/models/transaction_list_params.rbi +14 -0
- data/rbi/increase/models/unwrap_webhook_event.rbi +28 -0
- data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
- data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
- data/rbi/increase/resources/simulations/account_statements.rbi +2 -1
- data/rbi/increase/resources/simulations/physical_cards.rbi +4 -3
- data/sig/increase/models/balance_lookup.rbs +3 -42
- data/sig/increase/models/beneficial_owner_create_params.rbs +4 -0
- data/sig/increase/models/beneficial_owner_update_params.rbs +4 -0
- data/sig/increase/models/card_payment.rbs +1186 -0
- data/sig/increase/models/entity.rbs +24 -0
- data/sig/increase/models/entity_beneficial_owner.rbs +4 -0
- data/sig/increase/models/entity_create_params.rbs +24 -11
- data/sig/increase/models/entity_update_params.rbs +20 -11
- data/sig/increase/models/event.rbs +16 -0
- data/sig/increase/models/event_list_params.rbs +16 -0
- data/sig/increase/models/event_subscription.rbs +16 -0
- data/sig/increase/models/event_subscription_create_params.rbs +16 -0
- data/sig/increase/models/inbound_ach_transfer.rbs +5 -0
- data/sig/increase/models/pending_transaction.rbs +84 -0
- data/sig/increase/models/pending_transaction_list_params.rbs +8 -0
- data/sig/increase/models/transaction.rbs +1236 -0
- data/sig/increase/models/transaction_list_params.rbs +8 -0
- data/sig/increase/models/unwrap_webhook_event.rbs +16 -0
- data/sig/increase/models/wire_drawdown_request.rbs +4 -4
- data/sig/increase/models/wire_drawdown_request_list_params.rbs +4 -4
- metadata +2 -2
|
@@ -545,6 +545,18 @@ module Increase
|
|
|
545
545
|
# @return [Increase::Models::Transaction::Source::SampleFunds, nil]
|
|
546
546
|
optional :sample_funds, -> { Increase::Transaction::Source::SampleFunds }, nil?: true
|
|
547
547
|
|
|
548
|
+
# @!attribute sepa_instant_transfer_acceptance
|
|
549
|
+
# A SEPA Instant Transfer Acceptance object. This field will be present in the
|
|
550
|
+
# JSON response if and only if `category` is equal to
|
|
551
|
+
# `sepa_instant_transfer_acceptance`. A SEPA Instant Transfer Acceptance is
|
|
552
|
+
# created when a SEPA Instant Transfer sent from Increase is accepted by the
|
|
553
|
+
# recipient's bank.
|
|
554
|
+
#
|
|
555
|
+
# @return [Increase::Models::Transaction::Source::SepaInstantTransferAcceptance, nil]
|
|
556
|
+
optional :sepa_instant_transfer_acceptance,
|
|
557
|
+
-> { Increase::Transaction::Source::SepaInstantTransferAcceptance },
|
|
558
|
+
nil?: true
|
|
559
|
+
|
|
548
560
|
# @!attribute swift_transfer_intention
|
|
549
561
|
# A Swift Transfer Intention object. This field will be present in the JSON
|
|
550
562
|
# response if and only if `category` is equal to `swift_transfer_intention`. A
|
|
@@ -563,6 +575,18 @@ module Increase
|
|
|
563
575
|
# @return [Increase::Models::Transaction::Source::SwiftTransferReturn, nil]
|
|
564
576
|
optional :swift_transfer_return, -> { Increase::Transaction::Source::SwiftTransferReturn }, nil?: true
|
|
565
577
|
|
|
578
|
+
# @!attribute uk_faster_payment_system_transfer_acceptance
|
|
579
|
+
# An UK Faster Payment System Transfer Acceptance object. This field will be
|
|
580
|
+
# present in the JSON response if and only if `category` is equal to
|
|
581
|
+
# `uk_faster_payment_system_transfer_acceptance`. A UK Faster Payment System
|
|
582
|
+
# Transfer Acceptance is created when a UK Faster Payment System Transfer sent
|
|
583
|
+
# from Increase is accepted by the recipient's bank.
|
|
584
|
+
#
|
|
585
|
+
# @return [Increase::Models::Transaction::Source::UkFasterPaymentSystemTransferAcceptance, nil]
|
|
586
|
+
optional :uk_faster_payment_system_transfer_acceptance,
|
|
587
|
+
-> { Increase::Transaction::Source::UkFasterPaymentSystemTransferAcceptance },
|
|
588
|
+
nil?: true
|
|
589
|
+
|
|
566
590
|
# @!attribute wire_transfer_intention
|
|
567
591
|
# A Wire Transfer Intention object. This field will be present in the JSON
|
|
568
592
|
# response if and only if `category` is equal to `wire_transfer_intention`. A Wire
|
|
@@ -575,7 +599,7 @@ module Increase
|
|
|
575
599
|
},
|
|
576
600
|
nil?: true
|
|
577
601
|
|
|
578
|
-
# @!method initialize(category:, account_revenue_payment: nil, account_transfer_intention: nil, ach_transfer_intention: nil, ach_transfer_rejection: nil, ach_transfer_return: nil, blockchain_offramp_transfer_settlement: nil, blockchain_onramp_transfer_intention: nil, card_dispute_acceptance: nil, card_dispute_financial: nil, card_dispute_loss: nil, card_financial: nil, card_push_transfer_acceptance: nil, card_refund: nil, card_revenue_payment: nil, card_settlement: nil, cashback_payment: nil, check_deposit_acceptance: nil, check_deposit_return: nil, check_transfer_deposit: nil, fednow_transfer_acknowledgement: nil, fednow_transfer_return: nil, fee_payment: nil, inbound_ach_transfer: nil, inbound_ach_transfer_return_intention: nil, inbound_check_adjustment: nil, inbound_check_deposit_return_intention: nil, inbound_fednow_transfer_confirmation: nil, inbound_real_time_payments_transfer_confirmation: nil, inbound_wire_reversal: nil, inbound_wire_transfer: nil, inbound_wire_transfer_reversal: nil, interest_payment: nil, internal_source: nil, other: nil, real_time_payments_transfer_acknowledgement: nil, sample_funds: nil, swift_transfer_intention: nil, swift_transfer_return: nil, wire_transfer_intention: nil)
|
|
602
|
+
# @!method initialize(category:, account_revenue_payment: nil, account_transfer_intention: nil, ach_transfer_intention: nil, ach_transfer_rejection: nil, ach_transfer_return: nil, blockchain_offramp_transfer_settlement: nil, blockchain_onramp_transfer_intention: nil, card_dispute_acceptance: nil, card_dispute_financial: nil, card_dispute_loss: nil, card_financial: nil, card_push_transfer_acceptance: nil, card_refund: nil, card_revenue_payment: nil, card_settlement: nil, cashback_payment: nil, check_deposit_acceptance: nil, check_deposit_return: nil, check_transfer_deposit: nil, fednow_transfer_acknowledgement: nil, fednow_transfer_return: nil, fee_payment: nil, inbound_ach_transfer: nil, inbound_ach_transfer_return_intention: nil, inbound_check_adjustment: nil, inbound_check_deposit_return_intention: nil, inbound_fednow_transfer_confirmation: nil, inbound_real_time_payments_transfer_confirmation: nil, inbound_wire_reversal: nil, inbound_wire_transfer: nil, inbound_wire_transfer_reversal: nil, interest_payment: nil, internal_source: nil, other: nil, real_time_payments_transfer_acknowledgement: nil, sample_funds: nil, sepa_instant_transfer_acceptance: nil, swift_transfer_intention: nil, swift_transfer_return: nil, uk_faster_payment_system_transfer_acceptance: nil, wire_transfer_intention: nil)
|
|
579
603
|
# This is an object giving more details on the network-level event that caused the
|
|
580
604
|
# Transaction. Note that for backwards compatibility reasons, additional
|
|
581
605
|
# undocumented keys may appear in this object. These should be treated as
|
|
@@ -806,6 +830,13 @@ module Increase
|
|
|
806
830
|
# only if `category` is equal to `sample_funds`. Sample funds for testing
|
|
807
831
|
# purposes.
|
|
808
832
|
#
|
|
833
|
+
# @param sepa_instant_transfer_acceptance [Increase::Models::Transaction::Source::SepaInstantTransferAcceptance, nil]
|
|
834
|
+
# A SEPA Instant Transfer Acceptance object. This field will be present in the
|
|
835
|
+
# JSON response if and only if `category` is equal to
|
|
836
|
+
# `sepa_instant_transfer_acceptance`. A SEPA Instant Transfer Acceptance is
|
|
837
|
+
# created when a SEPA Instant Transfer sent from Increase is accepted by the
|
|
838
|
+
# recipient's bank.
|
|
839
|
+
#
|
|
809
840
|
# @param swift_transfer_intention [Increase::Models::Transaction::Source::SwiftTransferIntention, nil]
|
|
810
841
|
# A Swift Transfer Intention object. This field will be present in the JSON
|
|
811
842
|
# response if and only if `category` is equal to `swift_transfer_intention`. A
|
|
@@ -816,6 +847,13 @@ module Increase
|
|
|
816
847
|
# if and only if `category` is equal to `swift_transfer_return`. A Swift Transfer
|
|
817
848
|
# Return is created when a Swift Transfer is returned by the receiving bank.
|
|
818
849
|
#
|
|
850
|
+
# @param uk_faster_payment_system_transfer_acceptance [Increase::Models::Transaction::Source::UkFasterPaymentSystemTransferAcceptance, nil]
|
|
851
|
+
# An UK Faster Payment System Transfer Acceptance object. This field will be
|
|
852
|
+
# present in the JSON response if and only if `category` is equal to
|
|
853
|
+
# `uk_faster_payment_system_transfer_acceptance`. A UK Faster Payment System
|
|
854
|
+
# Transfer Acceptance is created when a UK Faster Payment System Transfer sent
|
|
855
|
+
# from Increase is accepted by the recipient's bank.
|
|
856
|
+
#
|
|
819
857
|
# @param wire_transfer_intention [Increase::Models::Transaction::Source::WireTransferIntention, nil]
|
|
820
858
|
# A Wire Transfer Intention object. This field will be present in the JSON
|
|
821
859
|
# response if and only if `category` is equal to `wire_transfer_intention`. A Wire
|
|
@@ -942,6 +980,12 @@ module Increase
|
|
|
942
980
|
# Blockchain Off-Ramp Transfer Settlement: details will be under the `blockchain_offramp_transfer_settlement` object.
|
|
943
981
|
BLOCKCHAIN_OFFRAMP_TRANSFER_SETTLEMENT = :blockchain_offramp_transfer_settlement
|
|
944
982
|
|
|
983
|
+
# UK Faster Payment System Transfer Acceptance: details will be under the `uk_faster_payment_system_transfer_acceptance` object.
|
|
984
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_ACCEPTANCE = :uk_faster_payment_system_transfer_acceptance
|
|
985
|
+
|
|
986
|
+
# SEPA Instant Transfer Acceptance: details will be under the `sepa_instant_transfer_acceptance` object.
|
|
987
|
+
SEPA_INSTANT_TRANSFER_ACCEPTANCE = :sepa_instant_transfer_acceptance
|
|
988
|
+
|
|
945
989
|
# The Transaction was made for an undocumented or deprecated reason.
|
|
946
990
|
OTHER = :other
|
|
947
991
|
|
|
@@ -3612,6 +3656,16 @@ module Increase
|
|
|
3612
3656
|
# @return [String, nil]
|
|
3613
3657
|
required :customer_reference_identifier, String, nil?: true
|
|
3614
3658
|
|
|
3659
|
+
# @!attribute fleet
|
|
3660
|
+
# Fields specific to fleet purchases.
|
|
3661
|
+
#
|
|
3662
|
+
# @return [Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet, nil]
|
|
3663
|
+
required :fleet,
|
|
3664
|
+
-> {
|
|
3665
|
+
Increase::Transaction::Source::CardRefund::PurchaseDetails::Fleet
|
|
3666
|
+
},
|
|
3667
|
+
nil?: true
|
|
3668
|
+
|
|
3615
3669
|
# @!attribute local_tax_amount
|
|
3616
3670
|
# The state or provincial tax amount in minor units.
|
|
3617
3671
|
#
|
|
@@ -3674,7 +3728,7 @@ module Increase
|
|
|
3674
3728
|
},
|
|
3675
3729
|
nil?: true
|
|
3676
3730
|
|
|
3677
|
-
# @!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:)
|
|
3731
|
+
# @!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:)
|
|
3678
3732
|
# Additional details about the card purchase, such as tax and industry-specific
|
|
3679
3733
|
# fields.
|
|
3680
3734
|
#
|
|
@@ -3684,6 +3738,9 @@ module Increase
|
|
|
3684
3738
|
# @param customer_reference_identifier [String, nil]
|
|
3685
3739
|
# An identifier from the merchant for the customer or consumer.
|
|
3686
3740
|
#
|
|
3741
|
+
# @param fleet [Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet, nil]
|
|
3742
|
+
# Fields specific to fleet purchases.
|
|
3743
|
+
#
|
|
3687
3744
|
# @param local_tax_amount [Integer, nil] The state or provincial tax amount in minor units.
|
|
3688
3745
|
#
|
|
3689
3746
|
# @param local_tax_currency [String, nil]
|
|
@@ -3920,6 +3977,579 @@ module Increase
|
|
|
3920
3977
|
end
|
|
3921
3978
|
end
|
|
3922
3979
|
|
|
3980
|
+
# @see Increase::Models::Transaction::Source::CardRefund::PurchaseDetails#fleet
|
|
3981
|
+
class Fleet < Increase::Internal::Type::BaseModel
|
|
3982
|
+
# @!attribute employee_number
|
|
3983
|
+
# The fleet employee number.
|
|
3984
|
+
#
|
|
3985
|
+
# @return [String, nil]
|
|
3986
|
+
required :employee_number, String, nil?: true
|
|
3987
|
+
|
|
3988
|
+
# @!attribute fuel_quantity
|
|
3989
|
+
# The quantity of fuel purchased, given as a string containing a decimal number in
|
|
3990
|
+
# the indicated unit of measure.
|
|
3991
|
+
#
|
|
3992
|
+
# @return [String, nil]
|
|
3993
|
+
required :fuel_quantity, String, nil?: true
|
|
3994
|
+
|
|
3995
|
+
# @!attribute fuel_type
|
|
3996
|
+
# The type of fuel purchased.
|
|
3997
|
+
#
|
|
3998
|
+
# @return [Symbol, Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::FuelType, nil]
|
|
3999
|
+
required :fuel_type,
|
|
4000
|
+
enum: -> {
|
|
4001
|
+
Increase::Transaction::Source::CardRefund::PurchaseDetails::Fleet::FuelType
|
|
4002
|
+
},
|
|
4003
|
+
nil?: true
|
|
4004
|
+
|
|
4005
|
+
# @!attribute fuel_unit_cost_amount
|
|
4006
|
+
# The cost per unit of fuel in minor units.
|
|
4007
|
+
#
|
|
4008
|
+
# @return [Integer, nil]
|
|
4009
|
+
required :fuel_unit_cost_amount, Integer, nil?: true
|
|
4010
|
+
|
|
4011
|
+
# @!attribute fuel_unit_cost_currency
|
|
4012
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fuel unit
|
|
4013
|
+
# cost.
|
|
4014
|
+
#
|
|
4015
|
+
# @return [String, nil]
|
|
4016
|
+
required :fuel_unit_cost_currency, String, nil?: true
|
|
4017
|
+
|
|
4018
|
+
# @!attribute fuel_unit_of_measure
|
|
4019
|
+
# The unit of measure for the fuel quantity.
|
|
4020
|
+
#
|
|
4021
|
+
# @return [Symbol, Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::FuelUnitOfMeasure, nil]
|
|
4022
|
+
required :fuel_unit_of_measure,
|
|
4023
|
+
enum: -> {
|
|
4024
|
+
Increase::Transaction::Source::CardRefund::PurchaseDetails::Fleet::FuelUnitOfMeasure
|
|
4025
|
+
},
|
|
4026
|
+
nil?: true
|
|
4027
|
+
|
|
4028
|
+
# @!attribute gross_fuel_price_amount
|
|
4029
|
+
# The gross fuel price in minor units.
|
|
4030
|
+
#
|
|
4031
|
+
# @return [Integer, nil]
|
|
4032
|
+
required :gross_fuel_price_amount, Integer, nil?: true
|
|
4033
|
+
|
|
4034
|
+
# @!attribute gross_fuel_price_currency
|
|
4035
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross fuel
|
|
4036
|
+
# price.
|
|
4037
|
+
#
|
|
4038
|
+
# @return [String, nil]
|
|
4039
|
+
required :gross_fuel_price_currency, String, nil?: true
|
|
4040
|
+
|
|
4041
|
+
# @!attribute gross_non_fuel_price_amount
|
|
4042
|
+
# The gross non-fuel price in minor units.
|
|
4043
|
+
#
|
|
4044
|
+
# @return [Integer, nil]
|
|
4045
|
+
required :gross_non_fuel_price_amount, Integer, nil?: true
|
|
4046
|
+
|
|
4047
|
+
# @!attribute gross_non_fuel_price_currency
|
|
4048
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross
|
|
4049
|
+
# non-fuel price.
|
|
4050
|
+
#
|
|
4051
|
+
# @return [String, nil]
|
|
4052
|
+
required :gross_non_fuel_price_currency, String, nil?: true
|
|
4053
|
+
|
|
4054
|
+
# @!attribute net_fuel_price_amount
|
|
4055
|
+
# The net fuel price in minor units.
|
|
4056
|
+
#
|
|
4057
|
+
# @return [Integer, nil]
|
|
4058
|
+
required :net_fuel_price_amount, Integer, nil?: true
|
|
4059
|
+
|
|
4060
|
+
# @!attribute net_fuel_price_currency
|
|
4061
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net fuel
|
|
4062
|
+
# price.
|
|
4063
|
+
#
|
|
4064
|
+
# @return [String, nil]
|
|
4065
|
+
required :net_fuel_price_currency, String, nil?: true
|
|
4066
|
+
|
|
4067
|
+
# @!attribute net_non_fuel_price_amount
|
|
4068
|
+
# The net non-fuel price in minor units.
|
|
4069
|
+
#
|
|
4070
|
+
# @return [Integer, nil]
|
|
4071
|
+
required :net_non_fuel_price_amount, Integer, nil?: true
|
|
4072
|
+
|
|
4073
|
+
# @!attribute net_non_fuel_price_currency
|
|
4074
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net non-fuel
|
|
4075
|
+
# price.
|
|
4076
|
+
#
|
|
4077
|
+
# @return [String, nil]
|
|
4078
|
+
required :net_non_fuel_price_currency, String, nil?: true
|
|
4079
|
+
|
|
4080
|
+
# @!attribute odometer_reading
|
|
4081
|
+
# The odometer reading reported by the merchant.
|
|
4082
|
+
#
|
|
4083
|
+
# @return [Integer, nil]
|
|
4084
|
+
required :odometer_reading, Integer, nil?: true
|
|
4085
|
+
|
|
4086
|
+
# @!attribute purchase_type
|
|
4087
|
+
# The type of fleet purchase.
|
|
4088
|
+
#
|
|
4089
|
+
# @return [Symbol, Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::PurchaseType, nil]
|
|
4090
|
+
required :purchase_type,
|
|
4091
|
+
enum: -> {
|
|
4092
|
+
Increase::Transaction::Source::CardRefund::PurchaseDetails::Fleet::PurchaseType
|
|
4093
|
+
},
|
|
4094
|
+
nil?: true
|
|
4095
|
+
|
|
4096
|
+
# @!attribute service_type
|
|
4097
|
+
# The type of service provided.
|
|
4098
|
+
#
|
|
4099
|
+
# @return [Symbol, Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::ServiceType, nil]
|
|
4100
|
+
required :service_type,
|
|
4101
|
+
enum: -> {
|
|
4102
|
+
Increase::Transaction::Source::CardRefund::PurchaseDetails::Fleet::ServiceType
|
|
4103
|
+
},
|
|
4104
|
+
nil?: true
|
|
4105
|
+
|
|
4106
|
+
# @!attribute trailer_number
|
|
4107
|
+
# The fleet trailer number.
|
|
4108
|
+
#
|
|
4109
|
+
# @return [String, nil]
|
|
4110
|
+
required :trailer_number, String, nil?: true
|
|
4111
|
+
|
|
4112
|
+
# @!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:)
|
|
4113
|
+
# Fields specific to fleet purchases.
|
|
4114
|
+
#
|
|
4115
|
+
# @param employee_number [String, nil] The fleet employee number.
|
|
4116
|
+
#
|
|
4117
|
+
# @param fuel_quantity [String, nil]
|
|
4118
|
+
# The quantity of fuel purchased, given as a string containing a decimal number in
|
|
4119
|
+
# the indicated unit of measure.
|
|
4120
|
+
#
|
|
4121
|
+
# @param fuel_type [Symbol, Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::FuelType, nil]
|
|
4122
|
+
# The type of fuel purchased.
|
|
4123
|
+
#
|
|
4124
|
+
# @param fuel_unit_cost_amount [Integer, nil] The cost per unit of fuel in minor units.
|
|
4125
|
+
#
|
|
4126
|
+
# @param fuel_unit_cost_currency [String, nil]
|
|
4127
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fuel unit
|
|
4128
|
+
# cost.
|
|
4129
|
+
#
|
|
4130
|
+
# @param fuel_unit_of_measure [Symbol, Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::FuelUnitOfMeasure, nil]
|
|
4131
|
+
# The unit of measure for the fuel quantity.
|
|
4132
|
+
#
|
|
4133
|
+
# @param gross_fuel_price_amount [Integer, nil] The gross fuel price in minor units.
|
|
4134
|
+
#
|
|
4135
|
+
# @param gross_fuel_price_currency [String, nil]
|
|
4136
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross fuel
|
|
4137
|
+
# price.
|
|
4138
|
+
#
|
|
4139
|
+
# @param gross_non_fuel_price_amount [Integer, nil] The gross non-fuel price in minor units.
|
|
4140
|
+
#
|
|
4141
|
+
# @param gross_non_fuel_price_currency [String, nil]
|
|
4142
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross
|
|
4143
|
+
# non-fuel price.
|
|
4144
|
+
#
|
|
4145
|
+
# @param net_fuel_price_amount [Integer, nil] The net fuel price in minor units.
|
|
4146
|
+
#
|
|
4147
|
+
# @param net_fuel_price_currency [String, nil]
|
|
4148
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net fuel
|
|
4149
|
+
# price.
|
|
4150
|
+
#
|
|
4151
|
+
# @param net_non_fuel_price_amount [Integer, nil] The net non-fuel price in minor units.
|
|
4152
|
+
#
|
|
4153
|
+
# @param net_non_fuel_price_currency [String, nil]
|
|
4154
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net non-fuel
|
|
4155
|
+
# price.
|
|
4156
|
+
#
|
|
4157
|
+
# @param odometer_reading [Integer, nil] The odometer reading reported by the merchant.
|
|
4158
|
+
#
|
|
4159
|
+
# @param purchase_type [Symbol, Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::PurchaseType, nil]
|
|
4160
|
+
# The type of fleet purchase.
|
|
4161
|
+
#
|
|
4162
|
+
# @param service_type [Symbol, Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet::ServiceType, nil]
|
|
4163
|
+
# The type of service provided.
|
|
4164
|
+
#
|
|
4165
|
+
# @param trailer_number [String, nil] The fleet trailer number.
|
|
4166
|
+
|
|
4167
|
+
# The type of fuel purchased.
|
|
4168
|
+
#
|
|
4169
|
+
# @see Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet#fuel_type
|
|
4170
|
+
module FuelType
|
|
4171
|
+
extend Increase::Internal::Type::Enum
|
|
4172
|
+
|
|
4173
|
+
# Regular
|
|
4174
|
+
REGULAR = :regular
|
|
4175
|
+
|
|
4176
|
+
# Mid or plus
|
|
4177
|
+
MID_OR_PLUS = :mid_or_plus
|
|
4178
|
+
|
|
4179
|
+
# Premium or super
|
|
4180
|
+
PREMIUM_OR_SUPER = :premium_or_super
|
|
4181
|
+
|
|
4182
|
+
# Mid or plus 2
|
|
4183
|
+
MID_OR_PLUS_2 = :mid_or_plus_2
|
|
4184
|
+
|
|
4185
|
+
# Premium or super 2
|
|
4186
|
+
PREMIUM_OR_SUPER_2 = :premium_or_super_2
|
|
4187
|
+
|
|
4188
|
+
# Regular ethanol 5% blend outside the United States
|
|
4189
|
+
REGULAR_ETHANOL_5_BLEND_NON_US = :regular_ethanol_5_blend_non_us
|
|
4190
|
+
|
|
4191
|
+
# Mid or plus ethanol 5% blend outside the United States
|
|
4192
|
+
MID_OR_PLUS_ETHANOL_5_BLEND_NON_US = :mid_or_plus_ethanol_5_blend_non_us
|
|
4193
|
+
|
|
4194
|
+
# Premium or super ethanol 5% blend outside the United States
|
|
4195
|
+
PREMIUM_OR_SUPER_ETHANOL_5_BLEND_NON_US = :premium_or_super_ethanol_5_blend_non_us
|
|
4196
|
+
|
|
4197
|
+
# Ethanol 7.7% blend
|
|
4198
|
+
ETHANOL_7_7_BLEND = :ethanol_7_7_blend
|
|
4199
|
+
|
|
4200
|
+
# Mid or plus 2 ethanol 5% blend outside the United States
|
|
4201
|
+
MID_OR_PLUS_2_ETHANOL_5_BLEND_NON_US = :mid_or_plus_2_ethanol_5_blend_non_us
|
|
4202
|
+
|
|
4203
|
+
# Green gasoline regular
|
|
4204
|
+
GREEN_GASOLINE_REGULAR = :green_gasoline_regular
|
|
4205
|
+
|
|
4206
|
+
# Green gasoline mid or plus
|
|
4207
|
+
GREEN_GASOLINE_MID_OR_PLUS = :green_gasoline_mid_or_plus
|
|
4208
|
+
|
|
4209
|
+
# Green gasoline premium or super
|
|
4210
|
+
GREEN_GASOLINE_PREMIUM_OR_SUPER = :green_gasoline_premium_or_super
|
|
4211
|
+
|
|
4212
|
+
# Regular diesel 2
|
|
4213
|
+
REGULAR_DIESEL_2 = :regular_diesel_2
|
|
4214
|
+
|
|
4215
|
+
# Premium diesel 2
|
|
4216
|
+
PREMIUM_DIESEL_2 = :premium_diesel_2
|
|
4217
|
+
|
|
4218
|
+
# Regular diesel 1
|
|
4219
|
+
REGULAR_DIESEL_1 = :regular_diesel_1
|
|
4220
|
+
|
|
4221
|
+
# Compressed natural gas
|
|
4222
|
+
COMPRESSED_NATURAL_GAS = :compressed_natural_gas
|
|
4223
|
+
|
|
4224
|
+
# Liquid propane gas
|
|
4225
|
+
LIQUID_PROPANE_GAS = :liquid_propane_gas
|
|
4226
|
+
|
|
4227
|
+
# Liquid natural gas
|
|
4228
|
+
LIQUID_NATURAL_GAS = :liquid_natural_gas
|
|
4229
|
+
|
|
4230
|
+
# E85
|
|
4231
|
+
E85 = :e85
|
|
4232
|
+
|
|
4233
|
+
# Regular reformulated
|
|
4234
|
+
REGULAR_REFORMULATED = :regular_reformulated
|
|
4235
|
+
|
|
4236
|
+
# Mid or plus reformulated
|
|
4237
|
+
MID_OR_PLUS_REFORMULATED = :mid_or_plus_reformulated
|
|
4238
|
+
|
|
4239
|
+
# Premium or super reformulated
|
|
4240
|
+
PREMIUM_OR_SUPER_REFORMULATED = :premium_or_super_reformulated
|
|
4241
|
+
|
|
4242
|
+
# Mid or plus 2 reformulated
|
|
4243
|
+
MID_OR_PLUS_2_REFORMULATED = :mid_or_plus_2_reformulated
|
|
4244
|
+
|
|
4245
|
+
# Premium or super 2 reformulated
|
|
4246
|
+
PREMIUM_OR_SUPER_2_REFORMULATED = :premium_or_super_2_reformulated
|
|
4247
|
+
|
|
4248
|
+
# Diesel off-road 1/2 non-taxable
|
|
4249
|
+
DIESEL_OFF_ROAD_1_2_NON_TAXABLE = :diesel_off_road_1_2_non_taxable
|
|
4250
|
+
|
|
4251
|
+
# Diesel off-road non-taxable
|
|
4252
|
+
DIESEL_OFF_ROAD_NON_TAXABLE = :diesel_off_road_non_taxable
|
|
4253
|
+
|
|
4254
|
+
# Biodiesel blend off-road non-taxable
|
|
4255
|
+
BIODIESEL_BLEND_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_off_road_non_taxable
|
|
4256
|
+
|
|
4257
|
+
# Racing fuel
|
|
4258
|
+
RACING_FUEL = :racing_fuel
|
|
4259
|
+
|
|
4260
|
+
# Mid or plus 2 ethanol 10% blend
|
|
4261
|
+
MID_OR_PLUS_2_ETHANOL_10_BLEND = :mid_or_plus_2_ethanol_10_blend
|
|
4262
|
+
|
|
4263
|
+
# Premium or super 2 ethanol 10% blend
|
|
4264
|
+
PREMIUM_OR_SUPER_2_ETHANOL_10_BLEND = :premium_or_super_2_ethanol_10_blend
|
|
4265
|
+
|
|
4266
|
+
# Mid or plus ethanol 2–15% blend
|
|
4267
|
+
MID_OR_PLUS_ETHANOL_2_15_BLEND = :mid_or_plus_ethanol_2_15_blend
|
|
4268
|
+
|
|
4269
|
+
# Premium or super ethanol 2–15% blend
|
|
4270
|
+
PREMIUM_OR_SUPER_ETHANOL_2_15_BLEND = :premium_or_super_ethanol_2_15_blend
|
|
4271
|
+
|
|
4272
|
+
# Premium or super 2 ethanol 5% blend outside the United States
|
|
4273
|
+
PREMIUM_OR_SUPER_2_ETHANOL_5_BLEND_NON_US = :premium_or_super_2_ethanol_5_blend_non_us
|
|
4274
|
+
|
|
4275
|
+
# Regular ethanol 10% blend
|
|
4276
|
+
REGULAR_ETHANOL_10_BLEND = :regular_ethanol_10_blend
|
|
4277
|
+
|
|
4278
|
+
# Mid or plus ethanol 10% blend
|
|
4279
|
+
MID_OR_PLUS_ETHANOL_10_BLEND = :mid_or_plus_ethanol_10_blend
|
|
4280
|
+
|
|
4281
|
+
# Premium or super ethanol 10% blend
|
|
4282
|
+
PREMIUM_OR_SUPER_ETHANOL_10_BLEND = :premium_or_super_ethanol_10_blend
|
|
4283
|
+
|
|
4284
|
+
# B2 diesel blend 2% biodiesel
|
|
4285
|
+
B2_DIESEL_BLEND_2_BIODIESEL = :b2_diesel_blend_2_biodiesel
|
|
4286
|
+
|
|
4287
|
+
# B5 diesel blend 5% biodiesel
|
|
4288
|
+
B5_DIESEL_BLEND_5_BIODIESEL = :b5_diesel_blend_5_biodiesel
|
|
4289
|
+
|
|
4290
|
+
# B10 diesel blend 10% biodiesel
|
|
4291
|
+
B10_DIESEL_BLEND_10_BIODIESEL = :b10_diesel_blend_10_biodiesel
|
|
4292
|
+
|
|
4293
|
+
# B11 diesel blend 11% biodiesel
|
|
4294
|
+
B11_DIESEL_BLEND_11_BIODIESEL = :b11_diesel_blend_11_biodiesel
|
|
4295
|
+
|
|
4296
|
+
# B15 diesel blend 15% biodiesel
|
|
4297
|
+
B15_DIESEL_BLEND_15_BIODIESEL = :b15_diesel_blend_15_biodiesel
|
|
4298
|
+
|
|
4299
|
+
# B20 diesel blend 20% biodiesel
|
|
4300
|
+
B20_DIESEL_BLEND_20_BIODIESEL = :b20_diesel_blend_20_biodiesel
|
|
4301
|
+
|
|
4302
|
+
# B100 diesel blend 100% biodiesel
|
|
4303
|
+
B100_DIESEL_BLEND_100_BIODIESEL = :b100_diesel_blend_100_biodiesel
|
|
4304
|
+
|
|
4305
|
+
# B1 diesel blend 1% biodiesel
|
|
4306
|
+
B1_DIESEL_BLEND_1_BIODIESEL = :b1_diesel_blend_1_biodiesel
|
|
4307
|
+
|
|
4308
|
+
# Additized diesel 2
|
|
4309
|
+
ADDITIZED_DIESEL_2 = :additized_diesel_2
|
|
4310
|
+
|
|
4311
|
+
# Additized diesel 3
|
|
4312
|
+
ADDITIZED_DIESEL_3 = :additized_diesel_3
|
|
4313
|
+
|
|
4314
|
+
# B7 diesel blend 7% biodiesel outside the United States
|
|
4315
|
+
B7_DIESEL_BLEND_7_BIODIESEL_NON_US = :b7_diesel_blend_7_biodiesel_non_us
|
|
4316
|
+
|
|
4317
|
+
# B7 premium diesel blend 7% biodiesel outside the United States
|
|
4318
|
+
B7_PREMIUM_DIESEL_BLEND_7_BIODIESEL_NON_US = :b7_premium_diesel_blend_7_biodiesel_non_us
|
|
4319
|
+
|
|
4320
|
+
# Renewable diesel R95 or greater
|
|
4321
|
+
RENEWABLE_DIESEL_R95_OR_GREATER = :renewable_diesel_r95_or_greater
|
|
4322
|
+
|
|
4323
|
+
# Renewable diesel biodiesel 6% to 20%
|
|
4324
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20 = :renewable_diesel_biodiesel_6_to_20
|
|
4325
|
+
|
|
4326
|
+
# Diesel exhaust fluid pump
|
|
4327
|
+
DIESEL_EXHAUST_FLUID_PUMP = :diesel_exhaust_fluid_pump
|
|
4328
|
+
|
|
4329
|
+
# Premium diesel 1
|
|
4330
|
+
PREMIUM_DIESEL_1 = :premium_diesel_1
|
|
4331
|
+
|
|
4332
|
+
# Regular ethanol 15% blend
|
|
4333
|
+
REGULAR_ETHANOL_15_BLEND = :regular_ethanol_15_blend
|
|
4334
|
+
|
|
4335
|
+
# Mid or plus ethanol 15% blend
|
|
4336
|
+
MID_OR_PLUS_ETHANOL_15_BLEND = :mid_or_plus_ethanol_15_blend
|
|
4337
|
+
|
|
4338
|
+
# Premium or super ethanol 15% blend
|
|
4339
|
+
PREMIUM_OR_SUPER_ETHANOL_15_BLEND = :premium_or_super_ethanol_15_blend
|
|
4340
|
+
|
|
4341
|
+
# Premium diesel blend less than 20% biodiesel
|
|
4342
|
+
PREMIUM_DIESEL_BLEND_LESS_THAN_20_BIODIESEL = :premium_diesel_blend_less_than_20_biodiesel
|
|
4343
|
+
|
|
4344
|
+
# Premium diesel blend 20% or more biodiesel
|
|
4345
|
+
PREMIUM_DIESEL_BLEND_20_OR_MORE_BIODIESEL = :premium_diesel_blend_20_or_more_biodiesel
|
|
4346
|
+
|
|
4347
|
+
# B75 diesel blend 75% biodiesel
|
|
4348
|
+
B75_DIESEL_BLEND_75_BIODIESEL = :b75_diesel_blend_75_biodiesel
|
|
4349
|
+
|
|
4350
|
+
# B99 diesel blend 99% biodiesel
|
|
4351
|
+
B99_DIESEL_BLEND_99_BIODIESEL = :b99_diesel_blend_99_biodiesel
|
|
4352
|
+
|
|
4353
|
+
# Reserved for preauthorization use only
|
|
4354
|
+
RESERVED_FOR_PREAUTHORIZATION_USE_ONLY = :reserved_for_preauthorization_use_only
|
|
4355
|
+
|
|
4356
|
+
# Undefined fuel reserved for proprietary use
|
|
4357
|
+
UNDEFINED_FUEL_RESERVED_FOR_PROPRIETARY_USE = :undefined_fuel_reserved_for_proprietary_use
|
|
4358
|
+
|
|
4359
|
+
# Miscellaneous fuel
|
|
4360
|
+
MISCELLANEOUS_FUEL = :miscellaneous_fuel
|
|
4361
|
+
|
|
4362
|
+
# Jet fuel
|
|
4363
|
+
JET_FUEL = :jet_fuel
|
|
4364
|
+
|
|
4365
|
+
# Aviation fuel regular
|
|
4366
|
+
AVIATION_FUEL_REGULAR = :aviation_fuel_regular
|
|
4367
|
+
|
|
4368
|
+
# Aviation fuel premium
|
|
4369
|
+
AVIATION_FUEL_PREMIUM = :aviation_fuel_premium
|
|
4370
|
+
|
|
4371
|
+
# Aviation fuel JP8
|
|
4372
|
+
AVIATION_FUEL_JP8 = :aviation_fuel_jp8
|
|
4373
|
+
|
|
4374
|
+
# Aviation fuel 4
|
|
4375
|
+
AVIATION_FUEL_4 = :aviation_fuel_4
|
|
4376
|
+
|
|
4377
|
+
# Aviation fuel 5
|
|
4378
|
+
AVIATION_FUEL_5 = :aviation_fuel_5
|
|
4379
|
+
|
|
4380
|
+
# Biojet diesel
|
|
4381
|
+
BIOJET_DIESEL = :biojet_diesel
|
|
4382
|
+
|
|
4383
|
+
# Aviation biofuel gasoline
|
|
4384
|
+
AVIATION_BIOFUEL_GASOLINE = :aviation_biofuel_gasoline
|
|
4385
|
+
|
|
4386
|
+
# Undefined aviation fuel reserved for proprietary use
|
|
4387
|
+
UNDEFINED_AVIATION_FUEL_RESERVED_FOR_PROPRIETARY_USE =
|
|
4388
|
+
:undefined_aviation_fuel_reserved_for_proprietary_use
|
|
4389
|
+
|
|
4390
|
+
# Miscellaneous aviation fuel
|
|
4391
|
+
MISCELLANEOUS_AVIATION_FUEL = :miscellaneous_aviation_fuel
|
|
4392
|
+
|
|
4393
|
+
# Marine fuel 1
|
|
4394
|
+
MARINE_FUEL_1 = :marine_fuel_1
|
|
4395
|
+
|
|
4396
|
+
# Marine fuel 2
|
|
4397
|
+
MARINE_FUEL_2 = :marine_fuel_2
|
|
4398
|
+
|
|
4399
|
+
# Marine fuel 3
|
|
4400
|
+
MARINE_FUEL_3 = :marine_fuel_3
|
|
4401
|
+
|
|
4402
|
+
# Marine fuel 4
|
|
4403
|
+
MARINE_FUEL_4 = :marine_fuel_4
|
|
4404
|
+
|
|
4405
|
+
# Marine fuel 5
|
|
4406
|
+
MARINE_FUEL_5 = :marine_fuel_5
|
|
4407
|
+
|
|
4408
|
+
# Marine other
|
|
4409
|
+
MARINE_OTHER = :marine_other
|
|
4410
|
+
|
|
4411
|
+
# Marine diesel
|
|
4412
|
+
MARINE_DIESEL = :marine_diesel
|
|
4413
|
+
|
|
4414
|
+
# Miscellaneous marine fuel
|
|
4415
|
+
MISCELLANEOUS_MARINE_FUEL = :miscellaneous_marine_fuel
|
|
4416
|
+
|
|
4417
|
+
# Kerosene low sulfur
|
|
4418
|
+
KEROSENE_LOW_SULFUR = :kerosene_low_sulfur
|
|
4419
|
+
|
|
4420
|
+
# White gas
|
|
4421
|
+
WHITE_GAS = :white_gas
|
|
4422
|
+
|
|
4423
|
+
# Heating oil
|
|
4424
|
+
HEATING_OIL = :heating_oil
|
|
4425
|
+
|
|
4426
|
+
# Other fuel non-taxable
|
|
4427
|
+
OTHER_FUEL_NON_TAXABLE = :other_fuel_non_taxable
|
|
4428
|
+
|
|
4429
|
+
# Kerosene ultra low sulfur
|
|
4430
|
+
KEROSENE_ULTRA_LOW_SULFUR = :kerosene_ultra_low_sulfur
|
|
4431
|
+
|
|
4432
|
+
# Electric vehicle charging level 1 110 volt
|
|
4433
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_1_110_VOLT = :electric_vehicle_charging_level_1_110_volt
|
|
4434
|
+
|
|
4435
|
+
# Electric vehicle charging level 2 240 volt
|
|
4436
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_2_240_VOLT = :electric_vehicle_charging_level_2_240_volt
|
|
4437
|
+
|
|
4438
|
+
# Electric vehicle charging level 3 480 volt
|
|
4439
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_3_480_VOLT = :electric_vehicle_charging_level_3_480_volt
|
|
4440
|
+
|
|
4441
|
+
# Renewable diesel R95 or greater off-road non-taxable
|
|
4442
|
+
RENEWABLE_DIESEL_R95_OR_GREATER_OFF_ROAD_NON_TAXABLE =
|
|
4443
|
+
:renewable_diesel_r95_or_greater_off_road_non_taxable
|
|
4444
|
+
|
|
4445
|
+
# Biodiesel blend 1% off-road non-taxable
|
|
4446
|
+
BIODIESEL_BLEND_1_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_1_off_road_non_taxable
|
|
4447
|
+
|
|
4448
|
+
# Biodiesel blend 75% off-road non-taxable
|
|
4449
|
+
BIODIESEL_BLEND_75_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_75_off_road_non_taxable
|
|
4450
|
+
|
|
4451
|
+
# Biodiesel blend 99% off-road non-taxable
|
|
4452
|
+
BIODIESEL_BLEND_99_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_99_off_road_non_taxable
|
|
4453
|
+
|
|
4454
|
+
# Biodiesel blend 100% off-road non-taxable
|
|
4455
|
+
BIODIESEL_BLEND_100_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_100_off_road_non_taxable
|
|
4456
|
+
|
|
4457
|
+
# Renewable diesel biodiesel 6% to 20% off-road non-taxable
|
|
4458
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20_OFF_ROAD_NON_TAXABLE =
|
|
4459
|
+
:renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
|
|
4460
|
+
|
|
4461
|
+
# Electric vehicle charging level 4 800 volt
|
|
4462
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_4_800_VOLT = :electric_vehicle_charging_level_4_800_volt
|
|
4463
|
+
|
|
4464
|
+
# Electric vehicle charging level 5 megawatt
|
|
4465
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_5_MEGAWATT = :electric_vehicle_charging_level_5_megawatt
|
|
4466
|
+
|
|
4467
|
+
# Hydrotreated vegetable oil 100
|
|
4468
|
+
HYDROTREATED_VEGETABLE_OIL_100 = :hydrotreated_vegetable_oil_100
|
|
4469
|
+
|
|
4470
|
+
# Bio compressed natural gas
|
|
4471
|
+
BIO_COMPRESSED_NATURAL_GAS = :bio_compressed_natural_gas
|
|
4472
|
+
|
|
4473
|
+
# Miscellaneous other fuel
|
|
4474
|
+
MISCELLANEOUS_OTHER_FUEL = :miscellaneous_other_fuel
|
|
4475
|
+
|
|
4476
|
+
# @!method self.values
|
|
4477
|
+
# @return [Array<Symbol>]
|
|
4478
|
+
end
|
|
4479
|
+
|
|
4480
|
+
# The unit of measure for the fuel quantity.
|
|
4481
|
+
#
|
|
4482
|
+
# @see Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet#fuel_unit_of_measure
|
|
4483
|
+
module FuelUnitOfMeasure
|
|
4484
|
+
extend Increase::Internal::Type::Enum
|
|
4485
|
+
|
|
4486
|
+
# Liter
|
|
4487
|
+
LITER = :liter
|
|
4488
|
+
|
|
4489
|
+
# US gallon
|
|
4490
|
+
US_GALLON = :us_gallon
|
|
4491
|
+
|
|
4492
|
+
# Imperial gallon
|
|
4493
|
+
IMPERIAL_GALLON = :imperial_gallon
|
|
4494
|
+
|
|
4495
|
+
# Kilogram
|
|
4496
|
+
KILOGRAM = :kilogram
|
|
4497
|
+
|
|
4498
|
+
# Pound
|
|
4499
|
+
POUND = :pound
|
|
4500
|
+
|
|
4501
|
+
# Charging minutes
|
|
4502
|
+
CHARGING_MINUTES = :charging_minutes
|
|
4503
|
+
|
|
4504
|
+
# Kilowatt hour
|
|
4505
|
+
KILOWATT_HOUR = :kilowatt_hour
|
|
4506
|
+
|
|
4507
|
+
# @!method self.values
|
|
4508
|
+
# @return [Array<Symbol>]
|
|
4509
|
+
end
|
|
4510
|
+
|
|
4511
|
+
# The type of fleet purchase.
|
|
4512
|
+
#
|
|
4513
|
+
# @see Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet#purchase_type
|
|
4514
|
+
module PurchaseType
|
|
4515
|
+
extend Increase::Internal::Type::Enum
|
|
4516
|
+
|
|
4517
|
+
# Fuel purchase
|
|
4518
|
+
FUEL_PURCHASE = :fuel_purchase
|
|
4519
|
+
|
|
4520
|
+
# Non-fuel purchase
|
|
4521
|
+
NON_FUEL_PURCHASE = :non_fuel_purchase
|
|
4522
|
+
|
|
4523
|
+
# Fuel and non-fuel purchase
|
|
4524
|
+
FUEL_AND_NON_FUEL_PURCHASE = :fuel_and_non_fuel_purchase
|
|
4525
|
+
|
|
4526
|
+
# Fuel purchase with multiple fuel types
|
|
4527
|
+
FUEL_PURCHASE_WITH_MULTIPLE_FUEL_TYPES = :fuel_purchase_with_multiple_fuel_types
|
|
4528
|
+
|
|
4529
|
+
# @!method self.values
|
|
4530
|
+
# @return [Array<Symbol>]
|
|
4531
|
+
end
|
|
4532
|
+
|
|
4533
|
+
# The type of service provided.
|
|
4534
|
+
#
|
|
4535
|
+
# @see Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::Fleet#service_type
|
|
4536
|
+
module ServiceType
|
|
4537
|
+
extend Increase::Internal::Type::Enum
|
|
4538
|
+
|
|
4539
|
+
# Full service
|
|
4540
|
+
FULL_SERVICE = :full_service
|
|
4541
|
+
|
|
4542
|
+
# Self service
|
|
4543
|
+
SELF_SERVICE = :self_service
|
|
4544
|
+
|
|
4545
|
+
# High speed dispense
|
|
4546
|
+
HIGH_SPEED_DISPENSE = :high_speed_dispense
|
|
4547
|
+
|
|
4548
|
+
# @!method self.values
|
|
4549
|
+
# @return [Array<Symbol>]
|
|
4550
|
+
end
|
|
4551
|
+
end
|
|
4552
|
+
|
|
3923
4553
|
# @see Increase::Models::Transaction::Source::CardRefund::PurchaseDetails#lodging
|
|
3924
4554
|
class Lodging < Increase::Internal::Type::BaseModel
|
|
3925
4555
|
# @!attribute check_in_date
|
|
@@ -5304,6 +5934,16 @@ module Increase
|
|
|
5304
5934
|
# @return [String, nil]
|
|
5305
5935
|
required :customer_reference_identifier, String, nil?: true
|
|
5306
5936
|
|
|
5937
|
+
# @!attribute fleet
|
|
5938
|
+
# Fields specific to fleet purchases.
|
|
5939
|
+
#
|
|
5940
|
+
# @return [Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet, nil]
|
|
5941
|
+
required :fleet,
|
|
5942
|
+
-> {
|
|
5943
|
+
Increase::Transaction::Source::CardSettlement::PurchaseDetails::Fleet
|
|
5944
|
+
},
|
|
5945
|
+
nil?: true
|
|
5946
|
+
|
|
5307
5947
|
# @!attribute local_tax_amount
|
|
5308
5948
|
# The state or provincial tax amount in minor units.
|
|
5309
5949
|
#
|
|
@@ -5362,7 +6002,7 @@ module Increase
|
|
|
5362
6002
|
-> { Increase::Transaction::Source::CardSettlement::PurchaseDetails::Travel },
|
|
5363
6003
|
nil?: true
|
|
5364
6004
|
|
|
5365
|
-
# @!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:)
|
|
6005
|
+
# @!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:)
|
|
5366
6006
|
# Additional details about the card purchase, such as tax and industry-specific
|
|
5367
6007
|
# fields.
|
|
5368
6008
|
#
|
|
@@ -5372,6 +6012,9 @@ module Increase
|
|
|
5372
6012
|
# @param customer_reference_identifier [String, nil]
|
|
5373
6013
|
# An identifier from the merchant for the customer or consumer.
|
|
5374
6014
|
#
|
|
6015
|
+
# @param fleet [Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet, nil]
|
|
6016
|
+
# Fields specific to fleet purchases.
|
|
6017
|
+
#
|
|
5375
6018
|
# @param local_tax_amount [Integer, nil] The state or provincial tax amount in minor units.
|
|
5376
6019
|
#
|
|
5377
6020
|
# @param local_tax_currency [String, nil]
|
|
@@ -5608,6 +6251,579 @@ module Increase
|
|
|
5608
6251
|
end
|
|
5609
6252
|
end
|
|
5610
6253
|
|
|
6254
|
+
# @see Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails#fleet
|
|
6255
|
+
class Fleet < Increase::Internal::Type::BaseModel
|
|
6256
|
+
# @!attribute employee_number
|
|
6257
|
+
# The fleet employee number.
|
|
6258
|
+
#
|
|
6259
|
+
# @return [String, nil]
|
|
6260
|
+
required :employee_number, String, nil?: true
|
|
6261
|
+
|
|
6262
|
+
# @!attribute fuel_quantity
|
|
6263
|
+
# The quantity of fuel purchased, given as a string containing a decimal number in
|
|
6264
|
+
# the indicated unit of measure.
|
|
6265
|
+
#
|
|
6266
|
+
# @return [String, nil]
|
|
6267
|
+
required :fuel_quantity, String, nil?: true
|
|
6268
|
+
|
|
6269
|
+
# @!attribute fuel_type
|
|
6270
|
+
# The type of fuel purchased.
|
|
6271
|
+
#
|
|
6272
|
+
# @return [Symbol, Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::FuelType, nil]
|
|
6273
|
+
required :fuel_type,
|
|
6274
|
+
enum: -> {
|
|
6275
|
+
Increase::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::FuelType
|
|
6276
|
+
},
|
|
6277
|
+
nil?: true
|
|
6278
|
+
|
|
6279
|
+
# @!attribute fuel_unit_cost_amount
|
|
6280
|
+
# The cost per unit of fuel in minor units.
|
|
6281
|
+
#
|
|
6282
|
+
# @return [Integer, nil]
|
|
6283
|
+
required :fuel_unit_cost_amount, Integer, nil?: true
|
|
6284
|
+
|
|
6285
|
+
# @!attribute fuel_unit_cost_currency
|
|
6286
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fuel unit
|
|
6287
|
+
# cost.
|
|
6288
|
+
#
|
|
6289
|
+
# @return [String, nil]
|
|
6290
|
+
required :fuel_unit_cost_currency, String, nil?: true
|
|
6291
|
+
|
|
6292
|
+
# @!attribute fuel_unit_of_measure
|
|
6293
|
+
# The unit of measure for the fuel quantity.
|
|
6294
|
+
#
|
|
6295
|
+
# @return [Symbol, Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::FuelUnitOfMeasure, nil]
|
|
6296
|
+
required :fuel_unit_of_measure,
|
|
6297
|
+
enum: -> {
|
|
6298
|
+
Increase::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::FuelUnitOfMeasure
|
|
6299
|
+
},
|
|
6300
|
+
nil?: true
|
|
6301
|
+
|
|
6302
|
+
# @!attribute gross_fuel_price_amount
|
|
6303
|
+
# The gross fuel price in minor units.
|
|
6304
|
+
#
|
|
6305
|
+
# @return [Integer, nil]
|
|
6306
|
+
required :gross_fuel_price_amount, Integer, nil?: true
|
|
6307
|
+
|
|
6308
|
+
# @!attribute gross_fuel_price_currency
|
|
6309
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross fuel
|
|
6310
|
+
# price.
|
|
6311
|
+
#
|
|
6312
|
+
# @return [String, nil]
|
|
6313
|
+
required :gross_fuel_price_currency, String, nil?: true
|
|
6314
|
+
|
|
6315
|
+
# @!attribute gross_non_fuel_price_amount
|
|
6316
|
+
# The gross non-fuel price in minor units.
|
|
6317
|
+
#
|
|
6318
|
+
# @return [Integer, nil]
|
|
6319
|
+
required :gross_non_fuel_price_amount, Integer, nil?: true
|
|
6320
|
+
|
|
6321
|
+
# @!attribute gross_non_fuel_price_currency
|
|
6322
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross
|
|
6323
|
+
# non-fuel price.
|
|
6324
|
+
#
|
|
6325
|
+
# @return [String, nil]
|
|
6326
|
+
required :gross_non_fuel_price_currency, String, nil?: true
|
|
6327
|
+
|
|
6328
|
+
# @!attribute net_fuel_price_amount
|
|
6329
|
+
# The net fuel price in minor units.
|
|
6330
|
+
#
|
|
6331
|
+
# @return [Integer, nil]
|
|
6332
|
+
required :net_fuel_price_amount, Integer, nil?: true
|
|
6333
|
+
|
|
6334
|
+
# @!attribute net_fuel_price_currency
|
|
6335
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net fuel
|
|
6336
|
+
# price.
|
|
6337
|
+
#
|
|
6338
|
+
# @return [String, nil]
|
|
6339
|
+
required :net_fuel_price_currency, String, nil?: true
|
|
6340
|
+
|
|
6341
|
+
# @!attribute net_non_fuel_price_amount
|
|
6342
|
+
# The net non-fuel price in minor units.
|
|
6343
|
+
#
|
|
6344
|
+
# @return [Integer, nil]
|
|
6345
|
+
required :net_non_fuel_price_amount, Integer, nil?: true
|
|
6346
|
+
|
|
6347
|
+
# @!attribute net_non_fuel_price_currency
|
|
6348
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net non-fuel
|
|
6349
|
+
# price.
|
|
6350
|
+
#
|
|
6351
|
+
# @return [String, nil]
|
|
6352
|
+
required :net_non_fuel_price_currency, String, nil?: true
|
|
6353
|
+
|
|
6354
|
+
# @!attribute odometer_reading
|
|
6355
|
+
# The odometer reading reported by the merchant.
|
|
6356
|
+
#
|
|
6357
|
+
# @return [Integer, nil]
|
|
6358
|
+
required :odometer_reading, Integer, nil?: true
|
|
6359
|
+
|
|
6360
|
+
# @!attribute purchase_type
|
|
6361
|
+
# The type of fleet purchase.
|
|
6362
|
+
#
|
|
6363
|
+
# @return [Symbol, Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::PurchaseType, nil]
|
|
6364
|
+
required :purchase_type,
|
|
6365
|
+
enum: -> {
|
|
6366
|
+
Increase::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::PurchaseType
|
|
6367
|
+
},
|
|
6368
|
+
nil?: true
|
|
6369
|
+
|
|
6370
|
+
# @!attribute service_type
|
|
6371
|
+
# The type of service provided.
|
|
6372
|
+
#
|
|
6373
|
+
# @return [Symbol, Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::ServiceType, nil]
|
|
6374
|
+
required :service_type,
|
|
6375
|
+
enum: -> {
|
|
6376
|
+
Increase::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::ServiceType
|
|
6377
|
+
},
|
|
6378
|
+
nil?: true
|
|
6379
|
+
|
|
6380
|
+
# @!attribute trailer_number
|
|
6381
|
+
# The fleet trailer number.
|
|
6382
|
+
#
|
|
6383
|
+
# @return [String, nil]
|
|
6384
|
+
required :trailer_number, String, nil?: true
|
|
6385
|
+
|
|
6386
|
+
# @!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:)
|
|
6387
|
+
# Fields specific to fleet purchases.
|
|
6388
|
+
#
|
|
6389
|
+
# @param employee_number [String, nil] The fleet employee number.
|
|
6390
|
+
#
|
|
6391
|
+
# @param fuel_quantity [String, nil]
|
|
6392
|
+
# The quantity of fuel purchased, given as a string containing a decimal number in
|
|
6393
|
+
# the indicated unit of measure.
|
|
6394
|
+
#
|
|
6395
|
+
# @param fuel_type [Symbol, Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::FuelType, nil]
|
|
6396
|
+
# The type of fuel purchased.
|
|
6397
|
+
#
|
|
6398
|
+
# @param fuel_unit_cost_amount [Integer, nil] The cost per unit of fuel in minor units.
|
|
6399
|
+
#
|
|
6400
|
+
# @param fuel_unit_cost_currency [String, nil]
|
|
6401
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fuel unit
|
|
6402
|
+
# cost.
|
|
6403
|
+
#
|
|
6404
|
+
# @param fuel_unit_of_measure [Symbol, Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::FuelUnitOfMeasure, nil]
|
|
6405
|
+
# The unit of measure for the fuel quantity.
|
|
6406
|
+
#
|
|
6407
|
+
# @param gross_fuel_price_amount [Integer, nil] The gross fuel price in minor units.
|
|
6408
|
+
#
|
|
6409
|
+
# @param gross_fuel_price_currency [String, nil]
|
|
6410
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross fuel
|
|
6411
|
+
# price.
|
|
6412
|
+
#
|
|
6413
|
+
# @param gross_non_fuel_price_amount [Integer, nil] The gross non-fuel price in minor units.
|
|
6414
|
+
#
|
|
6415
|
+
# @param gross_non_fuel_price_currency [String, nil]
|
|
6416
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the gross
|
|
6417
|
+
# non-fuel price.
|
|
6418
|
+
#
|
|
6419
|
+
# @param net_fuel_price_amount [Integer, nil] The net fuel price in minor units.
|
|
6420
|
+
#
|
|
6421
|
+
# @param net_fuel_price_currency [String, nil]
|
|
6422
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net fuel
|
|
6423
|
+
# price.
|
|
6424
|
+
#
|
|
6425
|
+
# @param net_non_fuel_price_amount [Integer, nil] The net non-fuel price in minor units.
|
|
6426
|
+
#
|
|
6427
|
+
# @param net_non_fuel_price_currency [String, nil]
|
|
6428
|
+
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the net non-fuel
|
|
6429
|
+
# price.
|
|
6430
|
+
#
|
|
6431
|
+
# @param odometer_reading [Integer, nil] The odometer reading reported by the merchant.
|
|
6432
|
+
#
|
|
6433
|
+
# @param purchase_type [Symbol, Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::PurchaseType, nil]
|
|
6434
|
+
# The type of fleet purchase.
|
|
6435
|
+
#
|
|
6436
|
+
# @param service_type [Symbol, Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet::ServiceType, nil]
|
|
6437
|
+
# The type of service provided.
|
|
6438
|
+
#
|
|
6439
|
+
# @param trailer_number [String, nil] The fleet trailer number.
|
|
6440
|
+
|
|
6441
|
+
# The type of fuel purchased.
|
|
6442
|
+
#
|
|
6443
|
+
# @see Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet#fuel_type
|
|
6444
|
+
module FuelType
|
|
6445
|
+
extend Increase::Internal::Type::Enum
|
|
6446
|
+
|
|
6447
|
+
# Regular
|
|
6448
|
+
REGULAR = :regular
|
|
6449
|
+
|
|
6450
|
+
# Mid or plus
|
|
6451
|
+
MID_OR_PLUS = :mid_or_plus
|
|
6452
|
+
|
|
6453
|
+
# Premium or super
|
|
6454
|
+
PREMIUM_OR_SUPER = :premium_or_super
|
|
6455
|
+
|
|
6456
|
+
# Mid or plus 2
|
|
6457
|
+
MID_OR_PLUS_2 = :mid_or_plus_2
|
|
6458
|
+
|
|
6459
|
+
# Premium or super 2
|
|
6460
|
+
PREMIUM_OR_SUPER_2 = :premium_or_super_2
|
|
6461
|
+
|
|
6462
|
+
# Regular ethanol 5% blend outside the United States
|
|
6463
|
+
REGULAR_ETHANOL_5_BLEND_NON_US = :regular_ethanol_5_blend_non_us
|
|
6464
|
+
|
|
6465
|
+
# Mid or plus ethanol 5% blend outside the United States
|
|
6466
|
+
MID_OR_PLUS_ETHANOL_5_BLEND_NON_US = :mid_or_plus_ethanol_5_blend_non_us
|
|
6467
|
+
|
|
6468
|
+
# Premium or super ethanol 5% blend outside the United States
|
|
6469
|
+
PREMIUM_OR_SUPER_ETHANOL_5_BLEND_NON_US = :premium_or_super_ethanol_5_blend_non_us
|
|
6470
|
+
|
|
6471
|
+
# Ethanol 7.7% blend
|
|
6472
|
+
ETHANOL_7_7_BLEND = :ethanol_7_7_blend
|
|
6473
|
+
|
|
6474
|
+
# Mid or plus 2 ethanol 5% blend outside the United States
|
|
6475
|
+
MID_OR_PLUS_2_ETHANOL_5_BLEND_NON_US = :mid_or_plus_2_ethanol_5_blend_non_us
|
|
6476
|
+
|
|
6477
|
+
# Green gasoline regular
|
|
6478
|
+
GREEN_GASOLINE_REGULAR = :green_gasoline_regular
|
|
6479
|
+
|
|
6480
|
+
# Green gasoline mid or plus
|
|
6481
|
+
GREEN_GASOLINE_MID_OR_PLUS = :green_gasoline_mid_or_plus
|
|
6482
|
+
|
|
6483
|
+
# Green gasoline premium or super
|
|
6484
|
+
GREEN_GASOLINE_PREMIUM_OR_SUPER = :green_gasoline_premium_or_super
|
|
6485
|
+
|
|
6486
|
+
# Regular diesel 2
|
|
6487
|
+
REGULAR_DIESEL_2 = :regular_diesel_2
|
|
6488
|
+
|
|
6489
|
+
# Premium diesel 2
|
|
6490
|
+
PREMIUM_DIESEL_2 = :premium_diesel_2
|
|
6491
|
+
|
|
6492
|
+
# Regular diesel 1
|
|
6493
|
+
REGULAR_DIESEL_1 = :regular_diesel_1
|
|
6494
|
+
|
|
6495
|
+
# Compressed natural gas
|
|
6496
|
+
COMPRESSED_NATURAL_GAS = :compressed_natural_gas
|
|
6497
|
+
|
|
6498
|
+
# Liquid propane gas
|
|
6499
|
+
LIQUID_PROPANE_GAS = :liquid_propane_gas
|
|
6500
|
+
|
|
6501
|
+
# Liquid natural gas
|
|
6502
|
+
LIQUID_NATURAL_GAS = :liquid_natural_gas
|
|
6503
|
+
|
|
6504
|
+
# E85
|
|
6505
|
+
E85 = :e85
|
|
6506
|
+
|
|
6507
|
+
# Regular reformulated
|
|
6508
|
+
REGULAR_REFORMULATED = :regular_reformulated
|
|
6509
|
+
|
|
6510
|
+
# Mid or plus reformulated
|
|
6511
|
+
MID_OR_PLUS_REFORMULATED = :mid_or_plus_reformulated
|
|
6512
|
+
|
|
6513
|
+
# Premium or super reformulated
|
|
6514
|
+
PREMIUM_OR_SUPER_REFORMULATED = :premium_or_super_reformulated
|
|
6515
|
+
|
|
6516
|
+
# Mid or plus 2 reformulated
|
|
6517
|
+
MID_OR_PLUS_2_REFORMULATED = :mid_or_plus_2_reformulated
|
|
6518
|
+
|
|
6519
|
+
# Premium or super 2 reformulated
|
|
6520
|
+
PREMIUM_OR_SUPER_2_REFORMULATED = :premium_or_super_2_reformulated
|
|
6521
|
+
|
|
6522
|
+
# Diesel off-road 1/2 non-taxable
|
|
6523
|
+
DIESEL_OFF_ROAD_1_2_NON_TAXABLE = :diesel_off_road_1_2_non_taxable
|
|
6524
|
+
|
|
6525
|
+
# Diesel off-road non-taxable
|
|
6526
|
+
DIESEL_OFF_ROAD_NON_TAXABLE = :diesel_off_road_non_taxable
|
|
6527
|
+
|
|
6528
|
+
# Biodiesel blend off-road non-taxable
|
|
6529
|
+
BIODIESEL_BLEND_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_off_road_non_taxable
|
|
6530
|
+
|
|
6531
|
+
# Racing fuel
|
|
6532
|
+
RACING_FUEL = :racing_fuel
|
|
6533
|
+
|
|
6534
|
+
# Mid or plus 2 ethanol 10% blend
|
|
6535
|
+
MID_OR_PLUS_2_ETHANOL_10_BLEND = :mid_or_plus_2_ethanol_10_blend
|
|
6536
|
+
|
|
6537
|
+
# Premium or super 2 ethanol 10% blend
|
|
6538
|
+
PREMIUM_OR_SUPER_2_ETHANOL_10_BLEND = :premium_or_super_2_ethanol_10_blend
|
|
6539
|
+
|
|
6540
|
+
# Mid or plus ethanol 2–15% blend
|
|
6541
|
+
MID_OR_PLUS_ETHANOL_2_15_BLEND = :mid_or_plus_ethanol_2_15_blend
|
|
6542
|
+
|
|
6543
|
+
# Premium or super ethanol 2–15% blend
|
|
6544
|
+
PREMIUM_OR_SUPER_ETHANOL_2_15_BLEND = :premium_or_super_ethanol_2_15_blend
|
|
6545
|
+
|
|
6546
|
+
# Premium or super 2 ethanol 5% blend outside the United States
|
|
6547
|
+
PREMIUM_OR_SUPER_2_ETHANOL_5_BLEND_NON_US = :premium_or_super_2_ethanol_5_blend_non_us
|
|
6548
|
+
|
|
6549
|
+
# Regular ethanol 10% blend
|
|
6550
|
+
REGULAR_ETHANOL_10_BLEND = :regular_ethanol_10_blend
|
|
6551
|
+
|
|
6552
|
+
# Mid or plus ethanol 10% blend
|
|
6553
|
+
MID_OR_PLUS_ETHANOL_10_BLEND = :mid_or_plus_ethanol_10_blend
|
|
6554
|
+
|
|
6555
|
+
# Premium or super ethanol 10% blend
|
|
6556
|
+
PREMIUM_OR_SUPER_ETHANOL_10_BLEND = :premium_or_super_ethanol_10_blend
|
|
6557
|
+
|
|
6558
|
+
# B2 diesel blend 2% biodiesel
|
|
6559
|
+
B2_DIESEL_BLEND_2_BIODIESEL = :b2_diesel_blend_2_biodiesel
|
|
6560
|
+
|
|
6561
|
+
# B5 diesel blend 5% biodiesel
|
|
6562
|
+
B5_DIESEL_BLEND_5_BIODIESEL = :b5_diesel_blend_5_biodiesel
|
|
6563
|
+
|
|
6564
|
+
# B10 diesel blend 10% biodiesel
|
|
6565
|
+
B10_DIESEL_BLEND_10_BIODIESEL = :b10_diesel_blend_10_biodiesel
|
|
6566
|
+
|
|
6567
|
+
# B11 diesel blend 11% biodiesel
|
|
6568
|
+
B11_DIESEL_BLEND_11_BIODIESEL = :b11_diesel_blend_11_biodiesel
|
|
6569
|
+
|
|
6570
|
+
# B15 diesel blend 15% biodiesel
|
|
6571
|
+
B15_DIESEL_BLEND_15_BIODIESEL = :b15_diesel_blend_15_biodiesel
|
|
6572
|
+
|
|
6573
|
+
# B20 diesel blend 20% biodiesel
|
|
6574
|
+
B20_DIESEL_BLEND_20_BIODIESEL = :b20_diesel_blend_20_biodiesel
|
|
6575
|
+
|
|
6576
|
+
# B100 diesel blend 100% biodiesel
|
|
6577
|
+
B100_DIESEL_BLEND_100_BIODIESEL = :b100_diesel_blend_100_biodiesel
|
|
6578
|
+
|
|
6579
|
+
# B1 diesel blend 1% biodiesel
|
|
6580
|
+
B1_DIESEL_BLEND_1_BIODIESEL = :b1_diesel_blend_1_biodiesel
|
|
6581
|
+
|
|
6582
|
+
# Additized diesel 2
|
|
6583
|
+
ADDITIZED_DIESEL_2 = :additized_diesel_2
|
|
6584
|
+
|
|
6585
|
+
# Additized diesel 3
|
|
6586
|
+
ADDITIZED_DIESEL_3 = :additized_diesel_3
|
|
6587
|
+
|
|
6588
|
+
# B7 diesel blend 7% biodiesel outside the United States
|
|
6589
|
+
B7_DIESEL_BLEND_7_BIODIESEL_NON_US = :b7_diesel_blend_7_biodiesel_non_us
|
|
6590
|
+
|
|
6591
|
+
# B7 premium diesel blend 7% biodiesel outside the United States
|
|
6592
|
+
B7_PREMIUM_DIESEL_BLEND_7_BIODIESEL_NON_US = :b7_premium_diesel_blend_7_biodiesel_non_us
|
|
6593
|
+
|
|
6594
|
+
# Renewable diesel R95 or greater
|
|
6595
|
+
RENEWABLE_DIESEL_R95_OR_GREATER = :renewable_diesel_r95_or_greater
|
|
6596
|
+
|
|
6597
|
+
# Renewable diesel biodiesel 6% to 20%
|
|
6598
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20 = :renewable_diesel_biodiesel_6_to_20
|
|
6599
|
+
|
|
6600
|
+
# Diesel exhaust fluid pump
|
|
6601
|
+
DIESEL_EXHAUST_FLUID_PUMP = :diesel_exhaust_fluid_pump
|
|
6602
|
+
|
|
6603
|
+
# Premium diesel 1
|
|
6604
|
+
PREMIUM_DIESEL_1 = :premium_diesel_1
|
|
6605
|
+
|
|
6606
|
+
# Regular ethanol 15% blend
|
|
6607
|
+
REGULAR_ETHANOL_15_BLEND = :regular_ethanol_15_blend
|
|
6608
|
+
|
|
6609
|
+
# Mid or plus ethanol 15% blend
|
|
6610
|
+
MID_OR_PLUS_ETHANOL_15_BLEND = :mid_or_plus_ethanol_15_blend
|
|
6611
|
+
|
|
6612
|
+
# Premium or super ethanol 15% blend
|
|
6613
|
+
PREMIUM_OR_SUPER_ETHANOL_15_BLEND = :premium_or_super_ethanol_15_blend
|
|
6614
|
+
|
|
6615
|
+
# Premium diesel blend less than 20% biodiesel
|
|
6616
|
+
PREMIUM_DIESEL_BLEND_LESS_THAN_20_BIODIESEL = :premium_diesel_blend_less_than_20_biodiesel
|
|
6617
|
+
|
|
6618
|
+
# Premium diesel blend 20% or more biodiesel
|
|
6619
|
+
PREMIUM_DIESEL_BLEND_20_OR_MORE_BIODIESEL = :premium_diesel_blend_20_or_more_biodiesel
|
|
6620
|
+
|
|
6621
|
+
# B75 diesel blend 75% biodiesel
|
|
6622
|
+
B75_DIESEL_BLEND_75_BIODIESEL = :b75_diesel_blend_75_biodiesel
|
|
6623
|
+
|
|
6624
|
+
# B99 diesel blend 99% biodiesel
|
|
6625
|
+
B99_DIESEL_BLEND_99_BIODIESEL = :b99_diesel_blend_99_biodiesel
|
|
6626
|
+
|
|
6627
|
+
# Reserved for preauthorization use only
|
|
6628
|
+
RESERVED_FOR_PREAUTHORIZATION_USE_ONLY = :reserved_for_preauthorization_use_only
|
|
6629
|
+
|
|
6630
|
+
# Undefined fuel reserved for proprietary use
|
|
6631
|
+
UNDEFINED_FUEL_RESERVED_FOR_PROPRIETARY_USE = :undefined_fuel_reserved_for_proprietary_use
|
|
6632
|
+
|
|
6633
|
+
# Miscellaneous fuel
|
|
6634
|
+
MISCELLANEOUS_FUEL = :miscellaneous_fuel
|
|
6635
|
+
|
|
6636
|
+
# Jet fuel
|
|
6637
|
+
JET_FUEL = :jet_fuel
|
|
6638
|
+
|
|
6639
|
+
# Aviation fuel regular
|
|
6640
|
+
AVIATION_FUEL_REGULAR = :aviation_fuel_regular
|
|
6641
|
+
|
|
6642
|
+
# Aviation fuel premium
|
|
6643
|
+
AVIATION_FUEL_PREMIUM = :aviation_fuel_premium
|
|
6644
|
+
|
|
6645
|
+
# Aviation fuel JP8
|
|
6646
|
+
AVIATION_FUEL_JP8 = :aviation_fuel_jp8
|
|
6647
|
+
|
|
6648
|
+
# Aviation fuel 4
|
|
6649
|
+
AVIATION_FUEL_4 = :aviation_fuel_4
|
|
6650
|
+
|
|
6651
|
+
# Aviation fuel 5
|
|
6652
|
+
AVIATION_FUEL_5 = :aviation_fuel_5
|
|
6653
|
+
|
|
6654
|
+
# Biojet diesel
|
|
6655
|
+
BIOJET_DIESEL = :biojet_diesel
|
|
6656
|
+
|
|
6657
|
+
# Aviation biofuel gasoline
|
|
6658
|
+
AVIATION_BIOFUEL_GASOLINE = :aviation_biofuel_gasoline
|
|
6659
|
+
|
|
6660
|
+
# Undefined aviation fuel reserved for proprietary use
|
|
6661
|
+
UNDEFINED_AVIATION_FUEL_RESERVED_FOR_PROPRIETARY_USE =
|
|
6662
|
+
:undefined_aviation_fuel_reserved_for_proprietary_use
|
|
6663
|
+
|
|
6664
|
+
# Miscellaneous aviation fuel
|
|
6665
|
+
MISCELLANEOUS_AVIATION_FUEL = :miscellaneous_aviation_fuel
|
|
6666
|
+
|
|
6667
|
+
# Marine fuel 1
|
|
6668
|
+
MARINE_FUEL_1 = :marine_fuel_1
|
|
6669
|
+
|
|
6670
|
+
# Marine fuel 2
|
|
6671
|
+
MARINE_FUEL_2 = :marine_fuel_2
|
|
6672
|
+
|
|
6673
|
+
# Marine fuel 3
|
|
6674
|
+
MARINE_FUEL_3 = :marine_fuel_3
|
|
6675
|
+
|
|
6676
|
+
# Marine fuel 4
|
|
6677
|
+
MARINE_FUEL_4 = :marine_fuel_4
|
|
6678
|
+
|
|
6679
|
+
# Marine fuel 5
|
|
6680
|
+
MARINE_FUEL_5 = :marine_fuel_5
|
|
6681
|
+
|
|
6682
|
+
# Marine other
|
|
6683
|
+
MARINE_OTHER = :marine_other
|
|
6684
|
+
|
|
6685
|
+
# Marine diesel
|
|
6686
|
+
MARINE_DIESEL = :marine_diesel
|
|
6687
|
+
|
|
6688
|
+
# Miscellaneous marine fuel
|
|
6689
|
+
MISCELLANEOUS_MARINE_FUEL = :miscellaneous_marine_fuel
|
|
6690
|
+
|
|
6691
|
+
# Kerosene low sulfur
|
|
6692
|
+
KEROSENE_LOW_SULFUR = :kerosene_low_sulfur
|
|
6693
|
+
|
|
6694
|
+
# White gas
|
|
6695
|
+
WHITE_GAS = :white_gas
|
|
6696
|
+
|
|
6697
|
+
# Heating oil
|
|
6698
|
+
HEATING_OIL = :heating_oil
|
|
6699
|
+
|
|
6700
|
+
# Other fuel non-taxable
|
|
6701
|
+
OTHER_FUEL_NON_TAXABLE = :other_fuel_non_taxable
|
|
6702
|
+
|
|
6703
|
+
# Kerosene ultra low sulfur
|
|
6704
|
+
KEROSENE_ULTRA_LOW_SULFUR = :kerosene_ultra_low_sulfur
|
|
6705
|
+
|
|
6706
|
+
# Electric vehicle charging level 1 110 volt
|
|
6707
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_1_110_VOLT = :electric_vehicle_charging_level_1_110_volt
|
|
6708
|
+
|
|
6709
|
+
# Electric vehicle charging level 2 240 volt
|
|
6710
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_2_240_VOLT = :electric_vehicle_charging_level_2_240_volt
|
|
6711
|
+
|
|
6712
|
+
# Electric vehicle charging level 3 480 volt
|
|
6713
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_3_480_VOLT = :electric_vehicle_charging_level_3_480_volt
|
|
6714
|
+
|
|
6715
|
+
# Renewable diesel R95 or greater off-road non-taxable
|
|
6716
|
+
RENEWABLE_DIESEL_R95_OR_GREATER_OFF_ROAD_NON_TAXABLE =
|
|
6717
|
+
:renewable_diesel_r95_or_greater_off_road_non_taxable
|
|
6718
|
+
|
|
6719
|
+
# Biodiesel blend 1% off-road non-taxable
|
|
6720
|
+
BIODIESEL_BLEND_1_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_1_off_road_non_taxable
|
|
6721
|
+
|
|
6722
|
+
# Biodiesel blend 75% off-road non-taxable
|
|
6723
|
+
BIODIESEL_BLEND_75_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_75_off_road_non_taxable
|
|
6724
|
+
|
|
6725
|
+
# Biodiesel blend 99% off-road non-taxable
|
|
6726
|
+
BIODIESEL_BLEND_99_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_99_off_road_non_taxable
|
|
6727
|
+
|
|
6728
|
+
# Biodiesel blend 100% off-road non-taxable
|
|
6729
|
+
BIODIESEL_BLEND_100_OFF_ROAD_NON_TAXABLE = :biodiesel_blend_100_off_road_non_taxable
|
|
6730
|
+
|
|
6731
|
+
# Renewable diesel biodiesel 6% to 20% off-road non-taxable
|
|
6732
|
+
RENEWABLE_DIESEL_BIODIESEL_6_TO_20_OFF_ROAD_NON_TAXABLE =
|
|
6733
|
+
:renewable_diesel_biodiesel_6_to_20_off_road_non_taxable
|
|
6734
|
+
|
|
6735
|
+
# Electric vehicle charging level 4 800 volt
|
|
6736
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_4_800_VOLT = :electric_vehicle_charging_level_4_800_volt
|
|
6737
|
+
|
|
6738
|
+
# Electric vehicle charging level 5 megawatt
|
|
6739
|
+
ELECTRIC_VEHICLE_CHARGING_LEVEL_5_MEGAWATT = :electric_vehicle_charging_level_5_megawatt
|
|
6740
|
+
|
|
6741
|
+
# Hydrotreated vegetable oil 100
|
|
6742
|
+
HYDROTREATED_VEGETABLE_OIL_100 = :hydrotreated_vegetable_oil_100
|
|
6743
|
+
|
|
6744
|
+
# Bio compressed natural gas
|
|
6745
|
+
BIO_COMPRESSED_NATURAL_GAS = :bio_compressed_natural_gas
|
|
6746
|
+
|
|
6747
|
+
# Miscellaneous other fuel
|
|
6748
|
+
MISCELLANEOUS_OTHER_FUEL = :miscellaneous_other_fuel
|
|
6749
|
+
|
|
6750
|
+
# @!method self.values
|
|
6751
|
+
# @return [Array<Symbol>]
|
|
6752
|
+
end
|
|
6753
|
+
|
|
6754
|
+
# The unit of measure for the fuel quantity.
|
|
6755
|
+
#
|
|
6756
|
+
# @see Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet#fuel_unit_of_measure
|
|
6757
|
+
module FuelUnitOfMeasure
|
|
6758
|
+
extend Increase::Internal::Type::Enum
|
|
6759
|
+
|
|
6760
|
+
# Liter
|
|
6761
|
+
LITER = :liter
|
|
6762
|
+
|
|
6763
|
+
# US gallon
|
|
6764
|
+
US_GALLON = :us_gallon
|
|
6765
|
+
|
|
6766
|
+
# Imperial gallon
|
|
6767
|
+
IMPERIAL_GALLON = :imperial_gallon
|
|
6768
|
+
|
|
6769
|
+
# Kilogram
|
|
6770
|
+
KILOGRAM = :kilogram
|
|
6771
|
+
|
|
6772
|
+
# Pound
|
|
6773
|
+
POUND = :pound
|
|
6774
|
+
|
|
6775
|
+
# Charging minutes
|
|
6776
|
+
CHARGING_MINUTES = :charging_minutes
|
|
6777
|
+
|
|
6778
|
+
# Kilowatt hour
|
|
6779
|
+
KILOWATT_HOUR = :kilowatt_hour
|
|
6780
|
+
|
|
6781
|
+
# @!method self.values
|
|
6782
|
+
# @return [Array<Symbol>]
|
|
6783
|
+
end
|
|
6784
|
+
|
|
6785
|
+
# The type of fleet purchase.
|
|
6786
|
+
#
|
|
6787
|
+
# @see Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet#purchase_type
|
|
6788
|
+
module PurchaseType
|
|
6789
|
+
extend Increase::Internal::Type::Enum
|
|
6790
|
+
|
|
6791
|
+
# Fuel purchase
|
|
6792
|
+
FUEL_PURCHASE = :fuel_purchase
|
|
6793
|
+
|
|
6794
|
+
# Non-fuel purchase
|
|
6795
|
+
NON_FUEL_PURCHASE = :non_fuel_purchase
|
|
6796
|
+
|
|
6797
|
+
# Fuel and non-fuel purchase
|
|
6798
|
+
FUEL_AND_NON_FUEL_PURCHASE = :fuel_and_non_fuel_purchase
|
|
6799
|
+
|
|
6800
|
+
# Fuel purchase with multiple fuel types
|
|
6801
|
+
FUEL_PURCHASE_WITH_MULTIPLE_FUEL_TYPES = :fuel_purchase_with_multiple_fuel_types
|
|
6802
|
+
|
|
6803
|
+
# @!method self.values
|
|
6804
|
+
# @return [Array<Symbol>]
|
|
6805
|
+
end
|
|
6806
|
+
|
|
6807
|
+
# The type of service provided.
|
|
6808
|
+
#
|
|
6809
|
+
# @see Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails::Fleet#service_type
|
|
6810
|
+
module ServiceType
|
|
6811
|
+
extend Increase::Internal::Type::Enum
|
|
6812
|
+
|
|
6813
|
+
# Full service
|
|
6814
|
+
FULL_SERVICE = :full_service
|
|
6815
|
+
|
|
6816
|
+
# Self service
|
|
6817
|
+
SELF_SERVICE = :self_service
|
|
6818
|
+
|
|
6819
|
+
# High speed dispense
|
|
6820
|
+
HIGH_SPEED_DISPENSE = :high_speed_dispense
|
|
6821
|
+
|
|
6822
|
+
# @!method self.values
|
|
6823
|
+
# @return [Array<Symbol>]
|
|
6824
|
+
end
|
|
6825
|
+
end
|
|
6826
|
+
|
|
5611
6827
|
# @see Increase::Models::Transaction::Source::CardSettlement::PurchaseDetails#lodging
|
|
5612
6828
|
class Lodging < Increase::Internal::Type::BaseModel
|
|
5613
6829
|
# @!attribute check_in_date
|
|
@@ -8143,6 +9359,35 @@ module Increase
|
|
|
8143
9359
|
# @param originator [String] Where the sample funds came from.
|
|
8144
9360
|
end
|
|
8145
9361
|
|
|
9362
|
+
# @see Increase::Models::Transaction::Source#sepa_instant_transfer_acceptance
|
|
9363
|
+
class SepaInstantTransferAcceptance < Increase::Internal::Type::BaseModel
|
|
9364
|
+
# @!attribute accepted_at
|
|
9365
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
9366
|
+
# the recipient's bank accepted the transfer.
|
|
9367
|
+
#
|
|
9368
|
+
# @return [Time]
|
|
9369
|
+
required :accepted_at, Time
|
|
9370
|
+
|
|
9371
|
+
# @!attribute settlement_amount
|
|
9372
|
+
# The transfer amount in USD cents.
|
|
9373
|
+
#
|
|
9374
|
+
# @return [Integer]
|
|
9375
|
+
required :settlement_amount, Integer
|
|
9376
|
+
|
|
9377
|
+
# @!method initialize(accepted_at:, settlement_amount:)
|
|
9378
|
+
# A SEPA Instant Transfer Acceptance object. This field will be present in the
|
|
9379
|
+
# JSON response if and only if `category` is equal to
|
|
9380
|
+
# `sepa_instant_transfer_acceptance`. A SEPA Instant Transfer Acceptance is
|
|
9381
|
+
# created when a SEPA Instant Transfer sent from Increase is accepted by the
|
|
9382
|
+
# recipient's bank.
|
|
9383
|
+
#
|
|
9384
|
+
# @param accepted_at [Time]
|
|
9385
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
9386
|
+
# the recipient's bank accepted the transfer.
|
|
9387
|
+
#
|
|
9388
|
+
# @param settlement_amount [Integer] The transfer amount in USD cents.
|
|
9389
|
+
end
|
|
9390
|
+
|
|
8146
9391
|
# @see Increase::Models::Transaction::Source#swift_transfer_intention
|
|
8147
9392
|
class SwiftTransferIntention < Increase::Internal::Type::BaseModel
|
|
8148
9393
|
# @!attribute transfer_id
|
|
@@ -8175,6 +9420,35 @@ module Increase
|
|
|
8175
9420
|
# @param transfer_id [String] The identifier of the Swift Transfer that led to this Transaction.
|
|
8176
9421
|
end
|
|
8177
9422
|
|
|
9423
|
+
# @see Increase::Models::Transaction::Source#uk_faster_payment_system_transfer_acceptance
|
|
9424
|
+
class UkFasterPaymentSystemTransferAcceptance < Increase::Internal::Type::BaseModel
|
|
9425
|
+
# @!attribute accepted_at
|
|
9426
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
9427
|
+
# the recipient's bank accepted the transfer.
|
|
9428
|
+
#
|
|
9429
|
+
# @return [Time]
|
|
9430
|
+
required :accepted_at, Time
|
|
9431
|
+
|
|
9432
|
+
# @!attribute settlement_amount
|
|
9433
|
+
# The transfer amount in USD cents.
|
|
9434
|
+
#
|
|
9435
|
+
# @return [Integer]
|
|
9436
|
+
required :settlement_amount, Integer
|
|
9437
|
+
|
|
9438
|
+
# @!method initialize(accepted_at:, settlement_amount:)
|
|
9439
|
+
# An UK Faster Payment System Transfer Acceptance object. This field will be
|
|
9440
|
+
# present in the JSON response if and only if `category` is equal to
|
|
9441
|
+
# `uk_faster_payment_system_transfer_acceptance`. A UK Faster Payment System
|
|
9442
|
+
# Transfer Acceptance is created when a UK Faster Payment System Transfer sent
|
|
9443
|
+
# from Increase is accepted by the recipient's bank.
|
|
9444
|
+
#
|
|
9445
|
+
# @param accepted_at [Time]
|
|
9446
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
|
9447
|
+
# the recipient's bank accepted the transfer.
|
|
9448
|
+
#
|
|
9449
|
+
# @param settlement_amount [Integer] The transfer amount in USD cents.
|
|
9450
|
+
end
|
|
9451
|
+
|
|
8178
9452
|
# @see Increase::Models::Transaction::Source#wire_transfer_intention
|
|
8179
9453
|
class WireTransferIntention < Increase::Internal::Type::BaseModel
|
|
8180
9454
|
# @!attribute account_number
|