Class: Stripe::SubscriptionScheduleAmendParams::ScheduleSettings

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/subscription_schedule_amend_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(end_behavior: nil) ⇒ ScheduleSettings

Returns a new instance of ScheduleSettings.



548
549
550
# File 'lib/stripe/params/subscription_schedule_amend_params.rb', line 548

def initialize(end_behavior: nil)
  @end_behavior = end_behavior
end

Instance Attribute Details

#end_behaviorObject

Behavior of the subscription schedule and underlying subscription when it ends.



546
547
548
# File 'lib/stripe/params/subscription_schedule_amend_params.rb', line 546

def end_behavior
  @end_behavior
end