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.
852 853 854 855 856 857 |
# File 'lib/stripe/services/subscription_service.rb', line 852 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)
844 845 846 |
# File 'lib/stripe/services/subscription_service.rb', line 844 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
846 847 848 |
# File 'lib/stripe/services/subscription_service.rb', line 846 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
848 849 850 |
# File 'lib/stripe/services/subscription_service.rb', line 848 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
850 851 852 |
# File 'lib/stripe/services/subscription_service.rb', line 850 def lte @lte end |