Class: Stripe::ChargeCaptureParams::PaymentDetails::FleetDatum
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::ChargeCaptureParams::PaymentDetails::FleetDatum
- Defined in:
- lib/stripe/params/charge_capture_params.rb
Defined Under Namespace
Classes: PrimaryFuelFields, Station, Vat
Instance Attribute Summary collapse
-
#primary_fuel_fields ⇒ Object
Primary fuel fields for the transaction.
-
#station ⇒ Object
Station and acceptor location details.
-
#vat ⇒ Object
VAT and Invoice on Behalf (IOB) details.
Instance Method Summary collapse
-
#initialize(primary_fuel_fields: nil, station: nil, vat: nil) ⇒ FleetDatum
constructor
A new instance of FleetDatum.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(primary_fuel_fields: nil, station: nil, vat: nil) ⇒ FleetDatum
Returns a new instance of FleetDatum.
785 786 787 788 789 |
# File 'lib/stripe/params/charge_capture_params.rb', line 785 def initialize(primary_fuel_fields: nil, station: nil, vat: nil) @primary_fuel_fields = primary_fuel_fields @station = station @vat = vat end |
Instance Attribute Details
#primary_fuel_fields ⇒ Object
Primary fuel fields for the transaction.
779 780 781 |
# File 'lib/stripe/params/charge_capture_params.rb', line 779 def primary_fuel_fields @primary_fuel_fields end |
#station ⇒ Object
Station and acceptor location details.
781 782 783 |
# File 'lib/stripe/params/charge_capture_params.rb', line 781 def station @station end |
#vat ⇒ Object
VAT and Invoice on Behalf (IOB) details.
783 784 785 |
# File 'lib/stripe/params/charge_capture_params.rb', line 783 def vat @vat end |