Class: Stripe::V2::Billing::IntentCreateParams::Action::Subscribe::PricingPlanSubscriptionDetails::Overrides::PartialPeriodBehavior
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::IntentCreateParams::Action::Subscribe::PricingPlanSubscriptionDetails::Overrides::PartialPeriodBehavior
- Defined in:
- lib/stripe/params/v2/billing/intent_create_params.rb
Defined Under Namespace
Classes: LicenseFee
Instance Attribute Summary collapse
-
#license_fee ⇒ Object
Override for the license fee.
-
#type ⇒ Object
Type of the partial period behavior override.
Instance Method Summary collapse
-
#initialize(type: nil, license_fee: nil) ⇒ PartialPeriodBehavior
constructor
A new instance of PartialPeriodBehavior.
Methods inherited from RequestParams
Constructor Details
#initialize(type: nil, license_fee: nil) ⇒ PartialPeriodBehavior
Returns a new instance of PartialPeriodBehavior.
398 399 400 401 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 398 def initialize(type: nil, license_fee: nil) @type = type @license_fee = license_fee end |
Instance Attribute Details
#license_fee ⇒ Object
Override for the license fee.
396 397 398 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 396 def license_fee @license_fee end |
#type ⇒ Object
Type of the partial period behavior override.
394 395 396 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 394 def type @type end |