Class: Stripe::Radar::ValueListItemService::ListParams::Created
- Inherits:
-
Stripe::RequestParams
- Object
- Stripe::RequestParams
- Stripe::Radar::ValueListItemService::ListParams::Created
- Defined in:
- lib/stripe/services/radar/value_list_item_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 Stripe::RequestParams
Constructor Details
#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ Created
Returns a new instance of Created.
30 31 32 33 34 35 |
# File 'lib/stripe/services/radar/value_list_item_service.rb', line 30 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)
22 23 24 |
# File 'lib/stripe/services/radar/value_list_item_service.rb', line 22 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
24 25 26 |
# File 'lib/stripe/services/radar/value_list_item_service.rb', line 24 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
26 27 28 |
# File 'lib/stripe/services/radar/value_list_item_service.rb', line 26 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
28 29 30 |
# File 'lib/stripe/services/radar/value_list_item_service.rb', line 28 def lte @lte end |