Class: Stripe::V2::Billing::IntentCreateParams::Action::Modify::PricingPlanSubscriptionDetails::Overrides::PartialPeriodBehavior
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::IntentCreateParams::Action::Modify::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.
264 265 266 267 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 264 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.
262 263 264 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 262 def license_fee @license_fee end |
#type ⇒ Object
Type of the partial period behavior override.
260 261 262 |
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 260 def type @type end |