Class: Stripe::PaymentIntentCaptureParams::PaymentDetails::CarRentalDatum::Insurance
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCaptureParams::PaymentDetails::CarRentalDatum::Insurance
- Defined in:
- lib/stripe/params/payment_intent_capture_params.rb
Instance Attribute Summary collapse
-
#amount ⇒ Object
Amount of the insurance coverage in cents.
-
#currency ⇒ Object
Currency of the insurance amount.
-
#insurance_company_name ⇒ Object
Name of the insurance company.
-
#insurance_type ⇒ Object
Type of insurance coverage.
Instance Method Summary collapse
-
#initialize(amount: nil, currency: nil, insurance_company_name: nil, insurance_type: nil) ⇒ Insurance
constructor
A new instance of Insurance.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(amount: nil, currency: nil, insurance_company_name: nil, insurance_type: nil) ⇒ Insurance
Returns a new instance of Insurance.
593 594 595 596 597 598 599 600 601 602 603 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 593 def initialize( amount: nil, currency: nil, insurance_company_name: nil, insurance_type: nil ) @amount = amount @currency = currency @insurance_company_name = insurance_company_name @insurance_type = insurance_type end |
Instance Attribute Details
#amount ⇒ Object
Amount of the insurance coverage in cents.
585 586 587 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 585 def amount @amount end |
#currency ⇒ Object
Currency of the insurance amount.
587 588 589 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 587 def currency @currency end |
#insurance_company_name ⇒ Object
Name of the insurance company.
589 590 591 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 589 def insurance_company_name @insurance_company_name end |
#insurance_type ⇒ Object
Type of insurance coverage.
591 592 593 |
# File 'lib/stripe/params/payment_intent_capture_params.rb', line 591 def insurance_type @insurance_type end |