Class: Stripe::V2::Billing::IntentCreateParams::Action::Deactivate::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.



95
96
97
98
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 95

def initialize(type: nil, license_fee: nil)
  @type = type
  @license_fee = license_fee
end

Instance Attribute Details

#license_feeObject

Override for the license fee.



93
94
95
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 93

def license_fee
  @license_fee
end

#typeObject

Type of the partial period behavior override.



91
92
93
# File 'lib/stripe/params/v2/billing/intent_create_params.rb', line 91

def type
  @type
end