Class: Stripe::Checkout::Session::CreateParams::CheckoutItem::PricingPlanSubscriptionItem::ComponentConfigurations

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/checkout/session.rb

Defined Under Namespace

Classes: LicenseFeeComponent

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(type: nil, license_fee_component: nil) ⇒ ComponentConfigurations

Returns a new instance of ComponentConfigurations.



2260
2261
2262
2263
# File 'lib/stripe/resources/checkout/session.rb', line 2260

def initialize(type: nil, license_fee_component: nil)
  @type = type
  @license_fee_component = license_fee_component
end

Instance Attribute Details

#license_fee_componentObject

Attribute for param field license_fee_component



2258
2259
2260
# File 'lib/stripe/resources/checkout/session.rb', line 2258

def license_fee_component
  @license_fee_component
end

#typeObject

Attribute for param field type



2256
2257
2258
# File 'lib/stripe/resources/checkout/session.rb', line 2256

def type
  @type
end