Class: Stripe::SubscriptionService::ListParams::CurrentPeriodEnd
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SubscriptionService::ListParams::CurrentPeriodEnd
- Defined in:
- lib/stripe/services/subscription_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) ⇒ CurrentPeriodEnd
constructor
A new instance of CurrentPeriodEnd.
Methods inherited from RequestParams
Constructor Details
#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ CurrentPeriodEnd
Returns a new instance of CurrentPeriodEnd.
822 823 824 825 826 827 |
# File 'lib/stripe/services/subscription_service.rb', line 822 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)
814 815 816 |
# File 'lib/stripe/services/subscription_service.rb', line 814 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
816 817 818 |
# File 'lib/stripe/services/subscription_service.rb', line 816 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
818 819 820 |
# File 'lib/stripe/services/subscription_service.rb', line 818 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
820 821 822 |
# File 'lib/stripe/services/subscription_service.rb', line 820 def lte @lte end |