Class: Stripe::QuoteCreateParams::Line::EndsAt

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

Defined Under Namespace

Classes: DiscountEnd, 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(discount_end: nil, duration: nil, timestamp: nil, type: nil) ⇒ EndsAt

Returns a new instance of EndsAt.



493
494
495
496
497
498
# File 'lib/stripe/params/quote_create_params.rb', line 493

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

Instance Attribute Details

#discount_endObject

Use the end time of a given discount.



485
486
487
# File 'lib/stripe/params/quote_create_params.rb', line 485

def discount_end
  @discount_end
end

#durationObject

Time span for the quote line starting from the starts_at date.



487
488
489
# File 'lib/stripe/params/quote_create_params.rb', line 487

def duration
  @duration
end

#timestampObject

A precise Unix timestamp.



489
490
491
# File 'lib/stripe/params/quote_create_params.rb', line 489

def timestamp
  @timestamp
end

#typeObject

Select a way to pass in ends_at.



491
492
493
# File 'lib/stripe/params/quote_create_params.rb', line 491

def type
  @type
end