Class: Stripe::SubscriptionCreateParams::BillingMode
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SubscriptionCreateParams::BillingMode
- Defined in:
- lib/stripe/params/subscription_create_params.rb
Defined Under Namespace
Classes: Flexible
Instance Attribute Summary collapse
-
#flexible ⇒ Object
Configure behavior for flexible billing mode.
-
#type ⇒ Object
Controls the calculation and orchestration of prorations and invoices for subscriptions.
Instance Method Summary collapse
-
#initialize(flexible: nil, type: nil) ⇒ BillingMode
constructor
A new instance of BillingMode.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(flexible: nil, type: nil) ⇒ BillingMode
Returns a new instance of BillingMode.
185 186 187 188 |
# File 'lib/stripe/params/subscription_create_params.rb', line 185 def initialize(flexible: nil, type: nil) @flexible = flexible @type = type end |
Instance Attribute Details
#flexible ⇒ Object
Configure behavior for flexible billing mode.
181 182 183 |
# File 'lib/stripe/params/subscription_create_params.rb', line 181 def flexible @flexible end |
#type ⇒ Object
Controls the calculation and orchestration of prorations and invoices for subscriptions. If no value is passed, the default is flexible.
183 184 185 |
# File 'lib/stripe/params/subscription_create_params.rb', line 183 def type @type end |