Class: Stripe::EventService::ListParams::Created
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::EventService::ListParams::Created
- Defined in:
- lib/stripe/services/event_service.rb
Instance Attribute Summary collapse
-
#gt ⇒ Object
Minimum value to filter by (exclusive).
-
#gte ⇒ Object
Minimum value to filter by (inclusive).
-
#lt ⇒ Object
Maximum value to filter by (exclusive).
-
#lte ⇒ Object
Maximum value to filter by (inclusive).
Instance Method Summary collapse
-
#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ Created
constructor
A new instance of Created.
Methods inherited from RequestParams
Constructor Details
#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ Created
Returns a new instance of Created.
17 18 19 20 21 22 |
# File 'lib/stripe/services/event_service.rb', line 17 def initialize(gt: nil, gte: nil, lt: nil, lte: nil) @gt = gt @gte = gte @lt = lt @lte = lte end |
Instance Attribute Details
#gt ⇒ Object
Minimum value to filter by (exclusive)
9 10 11 |
# File 'lib/stripe/services/event_service.rb', line 9 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
11 12 13 |
# File 'lib/stripe/services/event_service.rb', line 11 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
13 14 15 |
# File 'lib/stripe/services/event_service.rb', line 13 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
15 16 17 |
# File 'lib/stripe/services/event_service.rb', line 15 def lte @lte end |