Class: Stripe::SubscriptionCreateParams::BillingSchedule::BillUntil

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

Defined Under Namespace

Classes: Duration

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(duration: nil, timestamp: nil, type: nil) ⇒ BillUntil

Returns a new instance of BillUntil.



227
228
229
230
231
# File 'lib/stripe/params/subscription_create_params.rb', line 227

def initialize(duration: nil, timestamp: nil, type: nil)
  @duration = duration
  @timestamp = timestamp
  @type = type
end

Instance Attribute Details

#durationObject

Specifies the billing period.



221
222
223
# File 'lib/stripe/params/subscription_create_params.rb', line 221

def duration
  @duration
end

#timestampObject

The end date of the billing schedule.



223
224
225
# File 'lib/stripe/params/subscription_create_params.rb', line 223

def timestamp
  @timestamp
end

#typeObject

Describes how the billing schedule will determine the end date. Either ‘duration` or `timestamp`.



225
226
227
# File 'lib/stripe/params/subscription_create_params.rb', line 225

def type
  @type
end