Class: Stripe::Checkout::SessionCreateParams::CheckoutItem::PricingPlanSubscriptionItem::ComponentConfigurations
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::SessionCreateParams::CheckoutItem::PricingPlanSubscriptionItem::ComponentConfigurations
- Defined in:
- lib/stripe/params/checkout/session_create_params.rb
Defined Under Namespace
Classes: LicenseFeeComponent
Instance Attribute Summary collapse
-
#license_fee_component ⇒ Object
Attribute for param field license_fee_component.
-
#type ⇒ Object
Attribute for param field type.
Instance Method Summary collapse
-
#initialize(type: nil, license_fee_component: nil) ⇒ ComponentConfigurations
constructor
A new instance of ComponentConfigurations.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(type: nil, license_fee_component: nil) ⇒ ComponentConfigurations
Returns a new instance of ComponentConfigurations.
158 159 160 161 |
# File 'lib/stripe/params/checkout/session_create_params.rb', line 158 def initialize(type: nil, license_fee_component: nil) @type = type @license_fee_component = license_fee_component end |
Instance Attribute Details
#license_fee_component ⇒ Object
Attribute for param field license_fee_component
156 157 158 |
# File 'lib/stripe/params/checkout/session_create_params.rb', line 156 def license_fee_component @license_fee_component end |
#type ⇒ Object
Attribute for param field type
154 155 156 |
# File 'lib/stripe/params/checkout/session_create_params.rb', line 154 def type @type end |