Class: Stripe::Checkout::SessionCreateParams::CheckoutItem::PricingPlanSubscriptionItem::ComponentConfigurations

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/checkout/session_create_params.rb

Defined Under Namespace

Classes: LicenseFeeComponent

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



165
166
167
168
# File 'lib/stripe/params/checkout/session_create_params.rb', line 165

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



163
164
165
# File 'lib/stripe/params/checkout/session_create_params.rb', line 163

def license_fee_component
  @license_fee_component
end

#typeObject

Attribute for param field type



161
162
163
# File 'lib/stripe/params/checkout/session_create_params.rb', line 161

def type
  @type
end