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

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/checkout/session_service.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.



168
169
170
171
# File 'lib/stripe/services/checkout/session_service.rb', line 168

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



166
167
168
# File 'lib/stripe/services/checkout/session_service.rb', line 166

def license_fee_component
  @license_fee_component
end

#typeObject

Attribute for param field type



164
165
166
# File 'lib/stripe/services/checkout/session_service.rb', line 164

def type
  @type
end