Class: Stripe::QuoteCreateParams::Line::TrialSettings::EndBehavior

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

#initialize(prorate_up_front: nil) ⇒ EndBehavior

Returns a new instance of EndBehavior.



730
731
732
# File 'lib/stripe/params/quote_create_params.rb', line 730

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

Instance Attribute Details

#prorate_up_frontObject

Configure how an opt-in following a paid trial is billed when using ‘billing_behavior: prorate_up_front`.



728
729
730
# File 'lib/stripe/params/quote_create_params.rb', line 728

def prorate_up_front
  @prorate_up_front
end