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.
2193 2194 2195 2196 2197 2198 |
# File 'lib/stripe/services/account_service.rb', line 2193 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)
2185 2186 2187 |
# File 'lib/stripe/services/account_service.rb', line 2185 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
2187 2188 2189 |
# File 'lib/stripe/services/account_service.rb', line 2187 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
2189 2190 2191 |
# File 'lib/stripe/services/account_service.rb', line 2189 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
2191 2192 2193 |
# File 'lib/stripe/services/account_service.rb', line 2191 def lte @lte end |