Class: Stripe::V2::Billing::PricingPlans::ComponentCreateParams::LicenseFee
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::PricingPlans::ComponentCreateParams::LicenseFee
- Defined in:
- lib/stripe/params/v2/billing/pricing_plans/component_create_params.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
The ID of the License Fee.
-
#version ⇒ Object
The version of the LicenseFee.
Instance Method Summary collapse
-
#initialize(id: nil, version: nil) ⇒ LicenseFee
constructor
A new instance of LicenseFee.
Methods inherited from RequestParams
Constructor Details
#initialize(id: nil, version: nil) ⇒ LicenseFee
Returns a new instance of LicenseFee.
15 16 17 18 |
# File 'lib/stripe/params/v2/billing/pricing_plans/component_create_params.rb', line 15 def initialize(id: nil, version: nil) @id = id @version = version end |
Instance Attribute Details
#id ⇒ Object
The ID of the License Fee.
11 12 13 |
# File 'lib/stripe/params/v2/billing/pricing_plans/component_create_params.rb', line 11 def id @id end |
#version ⇒ Object
The version of the LicenseFee. Defaults to ‘latest’, if not specified.
13 14 15 |
# File 'lib/stripe/params/v2/billing/pricing_plans/component_create_params.rb', line 13 def version @version end |