Class: Stripe::SubscriptionService::ListParams::CurrentPeriodStart
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SubscriptionService::ListParams::CurrentPeriodStart
- 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) ⇒ CurrentPeriodStart
constructor
A new instance of CurrentPeriodStart.
Methods inherited from RequestParams
Constructor Details
#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ CurrentPeriodStart
Returns a new instance of CurrentPeriodStart.
854 855 856 857 858 859 |
# File 'lib/stripe/services/subscription_service.rb', line 854 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)
846 847 848 |
# File 'lib/stripe/services/subscription_service.rb', line 846 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
848 849 850 |
# File 'lib/stripe/services/subscription_service.rb', line 848 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
850 851 852 |
# File 'lib/stripe/services/subscription_service.rb', line 850 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
852 853 854 |
# File 'lib/stripe/services/subscription_service.rb', line 852 def lte @lte end |