Class: Stripe::PaymentIntentUpdateParams::PaymentDetails::FleetDatum

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_update_params.rb

Defined Under Namespace

Classes: PrimaryFuelFields, Station, Vat

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



1085
1086
1087
1088
1089
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1085

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_fieldsObject

Primary fuel fields for the transaction.



1079
1080
1081
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1079

def primary_fuel_fields
  @primary_fuel_fields
end

#stationObject

Station and acceptor location details.



1081
1082
1083
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1081

def station
  @station
end

#vatObject

VAT and Invoice on Behalf (IOB) details.



1083
1084
1085
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1083

def vat
  @vat
end