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.



186
187
188
189
190
191
# File 'lib/stripe/services/invoice_item_service.rb', line 186

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)



178
179
180
# File 'lib/stripe/services/invoice_item_service.rb', line 178

def gt
  @gt
end

#gteObject

Minimum value to filter by (inclusive)



180
181
182
# File 'lib/stripe/services/invoice_item_service.rb', line 180

def gte
  @gte
end

#ltObject

Maximum value to filter by (exclusive)



182
183
184
# File 'lib/stripe/services/invoice_item_service.rb', line 182

def lt
  @lt
end

#lteObject

Maximum value to filter by (inclusive)



184
185
186
# File 'lib/stripe/services/invoice_item_service.rb', line 184

def lte
  @lte
end