Class: Stripe::SubscriptionSchedule::Phase::Item
- Inherits:
-
Stripe::StripeObject
- Object
- Stripe::StripeObject
- Stripe::SubscriptionSchedule::Phase::Item
- Defined in:
- lib/stripe/resources/subscription_schedule.rb
Defined Under Namespace
Classes: BillingThresholds, Discount
Constant Summary
Constants inherited from Stripe::StripeObject
Stripe::StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary collapse
-
#billing_thresholds ⇒ Object
readonly
Define thresholds at which an invoice will be sent, and the related subscription advanced to a new billing period.
-
#discounts ⇒ Object
readonly
The discounts applied to the subscription item.
-
#metadata ⇒ Object
readonly
Set of [key-value pairs](stripe.com/docs/api/metadata) that you can attach to an item.
-
#plan ⇒ Object
readonly
ID of the plan to which the customer should be subscribed.
-
#price ⇒ Object
readonly
ID of the price to which the customer should be subscribed.
-
#quantity ⇒ Object
readonly
Quantity of the plan to which the customer should be subscribed.
-
#tax_rates ⇒ Object
readonly
The tax rates which apply to this ‘phase_item`.
Attributes inherited from Stripe::StripeObject
Class Method Summary collapse
Methods inherited from Stripe::StripeObject
#==, #[], #[]=, #_get_inner_class_type, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values
Constructor Details
This class inherits a constructor from Stripe::StripeObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject
Instance Attribute Details
#billing_thresholds ⇒ Object (readonly)
Define thresholds at which an invoice will be sent, and the related subscription advanced to a new billing period
398 399 400 |
# File 'lib/stripe/resources/subscription_schedule.rb', line 398 def billing_thresholds @billing_thresholds end |
#discounts ⇒ Object (readonly)
The discounts applied to the subscription item. Subscription item discounts are applied before subscription discounts. Use ‘expand[]=discounts` to expand each discount.
400 401 402 |
# File 'lib/stripe/resources/subscription_schedule.rb', line 400 def discounts @discounts end |
#metadata ⇒ Object (readonly)
Set of [key-value pairs](stripe.com/docs/api/metadata) that you can attach to an item. Metadata on this item will update the underlying subscription item’s ‘metadata` when the phase is entered.
402 403 404 |
# File 'lib/stripe/resources/subscription_schedule.rb', line 402 def end |
#plan ⇒ Object (readonly)
ID of the plan to which the customer should be subscribed.
404 405 406 |
# File 'lib/stripe/resources/subscription_schedule.rb', line 404 def plan @plan end |
#price ⇒ Object (readonly)
ID of the price to which the customer should be subscribed.
406 407 408 |
# File 'lib/stripe/resources/subscription_schedule.rb', line 406 def price @price end |
#quantity ⇒ Object (readonly)
Quantity of the plan to which the customer should be subscribed.
408 409 410 |
# File 'lib/stripe/resources/subscription_schedule.rb', line 408 def quantity @quantity end |
#tax_rates ⇒ Object (readonly)
The tax rates which apply to this ‘phase_item`. When set, the `default_tax_rates` on the phase do not apply to this `phase_item`.
410 411 412 |
# File 'lib/stripe/resources/subscription_schedule.rb', line 410 def tax_rates @tax_rates end |
Class Method Details
.field_remappings ⇒ Object
416 417 418 |
# File 'lib/stripe/resources/subscription_schedule.rb', line 416 def self.field_remappings @field_remappings = {} end |
.inner_class_types ⇒ Object
412 413 414 |
# File 'lib/stripe/resources/subscription_schedule.rb', line 412 def self.inner_class_types @inner_class_types = { billing_thresholds: BillingThresholds, discounts: Discount } end |