Class: Stripe::V2::Billing::IntentCreateParams::Action::Modify::PricingPlanSubscriptionDetails::Overrides::PartialPeriodBehavior

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/billing/intent_create_params.rb

Defined Under Namespace

Classes: LicenseFee

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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_feeObject

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

#typeObject

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