Class: Stripe::InvoiceItemCreateParams::Period

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/invoice_item_create_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(end_: nil, start: nil) ⇒ Period

Returns a new instance of Period.



64
65
66
67
# File 'lib/stripe/params/invoice_item_create_params.rb', line 64

def initialize(end_: nil, start: nil)
  @end = end_
  @start = start
end

Instance Attribute Details

#endObject

The end of the period, which must be greater than or equal to the start. This value is inclusive.



60
61
62
# File 'lib/stripe/params/invoice_item_create_params.rb', line 60

def end
  @end
end

#startObject

The start of the period. This value is inclusive.



62
63
64
# File 'lib/stripe/params/invoice_item_create_params.rb', line 62

def start
  @start
end