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.



154
155
156
157
158
159
# File 'lib/stripe/services/invoice_item_service.rb', line 154

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)



146
147
148
# File 'lib/stripe/services/invoice_item_service.rb', line 146

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



148
149
150
# File 'lib/stripe/services/invoice_item_service.rb', line 148

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



150
151
152
# File 'lib/stripe/services/invoice_item_service.rb', line 150

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



152
153
154
# File 'lib/stripe/services/invoice_item_service.rb', line 152

def lte
  @lte
end