Class: Stripe::InvoiceItemService::ListParams::Created

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/invoice_item_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ Created

Returns a new instance of Created.



210
211
212
213
214
215
# File 'lib/stripe/services/invoice_item_service.rb', line 210

def initialize(gt: nil, gte: nil, lt: nil, lte: nil)
  @gt = gt
  @gte = gte
  @lt = lt
  @lte = lte
end

Instance Attribute Details

#gtObject

Minimum value to filter by (exclusive)



199
200
201
# File 'lib/stripe/services/invoice_item_service.rb', line 199

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



202
203
204
# File 'lib/stripe/services/invoice_item_service.rb', line 202

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



205
206
207
# File 'lib/stripe/services/invoice_item_service.rb', line 205

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



208
209
210
# File 'lib/stripe/services/invoice_item_service.rb', line 208

def lte
  @lte
end