Class: Stripe::PaymentIntentConfirmParams::PaymentDetails::FleetDatum
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::PaymentDetails::FleetDatum
- Defined in:
- lib/stripe/params/payment_intent_confirm_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.
1096 1097 1098 1099 1100 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1096 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.
1090 1091 1092 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1090 def primary_fuel_fields @primary_fuel_fields end |
#station ⇒ Object
Station and acceptor location details.
1092 1093 1094 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1092 def station @station end |
#vat ⇒ Object
VAT and Invoice on Behalf (IOB) details.
1094 1095 1096 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1094 def vat @vat end |