Class: Stripe::V2::Billing::PricingPlans::ComponentService::CreateParams::LicenseFee
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::PricingPlans::ComponentService::CreateParams::LicenseFee
- Defined in:
- lib/stripe/services/v2/billing/pricing_plans/component_service.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.
33 34 35 36 |
# File 'lib/stripe/services/v2/billing/pricing_plans/component_service.rb', line 33 def initialize(id: nil, version: nil) @id = id @version = version end |
Instance Attribute Details
#id ⇒ Object
The ID of the License Fee.
29 30 31 |
# File 'lib/stripe/services/v2/billing/pricing_plans/component_service.rb', line 29 def id @id end |
#version ⇒ Object
The version of the LicenseFee. Defaults to ‘latest’, if not specified.
31 32 33 |
# File 'lib/stripe/services/v2/billing/pricing_plans/component_service.rb', line 31 def version @version end |