Class: Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::Transaction::Source::CardRefund::PurchaseDetails::CarRental
- Defined in:
- lib/increase/models/transaction.rb
Instance Attribute Summary collapse
-
#car_class_code ⇒ String
Code indicating the vehicle's class.
-
#checkout_date ⇒ String
Date the customer picked up the car or, in the case of a no-show or pre-pay transaction, the scheduled pick up date.
-
#daily_rental_rate_amount ⇒ Integer
Daily rate being charged for the vehicle.
-
#daily_rental_rate_currency ⇒ String
The ISO 4217 code for the daily rental rate.
-
#days_rented ⇒ Integer
Number of days the vehicle was rented.
-
#extra_charges ⇒ Symbol
Additional charges (gas, late fee, etc.) being billed.
-
#fuel_charges_amount ⇒ Integer
Fuel charges for the vehicle.
-
#fuel_charges_currency ⇒ String
The ISO 4217 code for the fuel charges assessed.
-
#insurance_charges_amount ⇒ Integer
Any insurance being charged for the vehicle.
-
#insurance_charges_currency ⇒ String
The ISO 4217 code for the insurance charges assessed.
-
#no_show_indicator ⇒ Symbol
An indicator that the cardholder is being billed for a reserved vehicle that was not actually rented (that is, a "no-show" charge).
-
#one_way_drop_off_charges_amount ⇒ Integer
Charges for returning the vehicle at a different location than where it was picked up.
-
#one_way_drop_off_charges_currency ⇒ String
The ISO 4217 code for the one-way drop-off charges assessed.
-
#renter_name ⇒ String
Name of the person renting the vehicle.
-
#weekly_rental_rate_amount ⇒ Integer
Weekly rate being charged for the vehicle.
-
#weekly_rental_rate_currency ⇒ String
The ISO 4217 code for the weekly rental rate.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#car_class_code ⇒ String
Code indicating the vehicle's class.
592 |
# File 'lib/increase/models/transaction.rb', line 592 required :car_class_code, String |
#checkout_date ⇒ String
Date the customer picked up the car or, in the case of a no-show or pre-pay transaction, the scheduled pick up date.
597 |
# File 'lib/increase/models/transaction.rb', line 597 required :checkout_date, String |
#daily_rental_rate_amount ⇒ Integer
Daily rate being charged for the vehicle.
602 |
# File 'lib/increase/models/transaction.rb', line 602 required :daily_rental_rate_amount, Integer |
#daily_rental_rate_currency ⇒ String
The ISO 4217 code for the daily rental rate.
607 |
# File 'lib/increase/models/transaction.rb', line 607 required :daily_rental_rate_currency, String |
#days_rented ⇒ Integer
Number of days the vehicle was rented.
612 |
# File 'lib/increase/models/transaction.rb', line 612 required :days_rented, Integer |
#extra_charges ⇒ Symbol
Additional charges (gas, late fee, etc.) being billed.
617 618 619 620 621 622 623 624 625 |
# File 'lib/increase/models/transaction.rb', line 617 required :extra_charges, Increase::Enum.new( :no_extra_charge, :gas, :extra_mileage, :late_return, :one_way_service_fee, :parking_violation ) |
#fuel_charges_amount ⇒ Integer
Fuel charges for the vehicle.
630 |
# File 'lib/increase/models/transaction.rb', line 630 required :fuel_charges_amount, Integer |
#fuel_charges_currency ⇒ String
The ISO 4217 code for the fuel charges assessed.
635 |
# File 'lib/increase/models/transaction.rb', line 635 required :fuel_charges_currency, String |
#insurance_charges_amount ⇒ Integer
Any insurance being charged for the vehicle.
640 |
# File 'lib/increase/models/transaction.rb', line 640 required :insurance_charges_amount, Integer |
#insurance_charges_currency ⇒ String
The ISO 4217 code for the insurance charges assessed.
645 |
# File 'lib/increase/models/transaction.rb', line 645 required :insurance_charges_currency, String |
#no_show_indicator ⇒ Symbol
An indicator that the cardholder is being billed for a reserved vehicle that was not actually rented (that is, a "no-show" charge).
650 |
# File 'lib/increase/models/transaction.rb', line 650 required :no_show_indicator, Increase::Enum.new(:not_applicable, :no_show_for_specialized_vehicle) |
#one_way_drop_off_charges_amount ⇒ Integer
Charges for returning the vehicle at a different location than where it was picked up.
655 |
# File 'lib/increase/models/transaction.rb', line 655 required :one_way_drop_off_charges_amount, Integer |
#one_way_drop_off_charges_currency ⇒ String
The ISO 4217 code for the one-way drop-off charges assessed.
660 |
# File 'lib/increase/models/transaction.rb', line 660 required :one_way_drop_off_charges_currency, String |
#renter_name ⇒ String
Name of the person renting the vehicle.
665 |
# File 'lib/increase/models/transaction.rb', line 665 required :renter_name, String |
#weekly_rental_rate_amount ⇒ Integer
Weekly rate being charged for the vehicle.
670 |
# File 'lib/increase/models/transaction.rb', line 670 required :weekly_rental_rate_amount, Integer |
#weekly_rental_rate_currency ⇒ String
The ISO 4217 code for the weekly rental rate.
675 |
# File 'lib/increase/models/transaction.rb', line 675 required :weekly_rental_rate_currency, String |