Class: Stripe::QuoteUpdateParams::SubscriptionData::BillingSchedule::AppliesTo

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/quote_update_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(price: nil, type: nil) ⇒ AppliesTo

Returns a new instance of AppliesTo.



997
998
999
1000
# File 'lib/stripe/params/quote_update_params.rb', line 997

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

Instance Attribute Details

#priceObject

The ID of the price object.



993
994
995
# File 'lib/stripe/params/quote_update_params.rb', line 993

def price
  @price
end

#typeObject

Controls which subscription items the billing schedule applies to.



995
996
997
# File 'lib/stripe/params/quote_update_params.rb', line 995

def type
  @type
end