Class: Stripe::PaymentIntentUpdateParams::PaymentDetails::FleetDatum::Vat
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentUpdateParams::PaymentDetails::FleetDatum::Vat
- Defined in:
- lib/stripe/params/payment_intent_update_params.rb
Instance Attribute Summary collapse
-
#iob_indicator ⇒ Object
Indicates the merchant’s agreement for Invoice on Behalf (IOB) VAT processing.
Instance Method Summary collapse
-
#initialize(iob_indicator: nil) ⇒ Vat
constructor
A new instance of Vat.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(iob_indicator: nil) ⇒ Vat
Returns a new instance of Vat.
1077 1078 1079 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1077 def initialize(iob_indicator: nil) @iob_indicator = iob_indicator end |
Instance Attribute Details
#iob_indicator ⇒ Object
Indicates the merchant’s agreement for Invoice on Behalf (IOB) VAT processing.
1075 1076 1077 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 1075 def iob_indicator @iob_indicator end |