Class: Stripe::AccountService::ListParams::Created
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountService::ListParams::Created
- Defined in:
- lib/stripe/services/account_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.
2283 2284 2285 2286 2287 2288 |
# File 'lib/stripe/services/account_service.rb', line 2283 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)
2275 2276 2277 |
# File 'lib/stripe/services/account_service.rb', line 2275 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
2277 2278 2279 |
# File 'lib/stripe/services/account_service.rb', line 2277 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
2279 2280 2281 |
# File 'lib/stripe/services/account_service.rb', line 2279 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
2281 2282 2283 |
# File 'lib/stripe/services/account_service.rb', line 2281 def lte @lte end |