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.
781 782 783 784 785 786 |
# File 'lib/stripe/services/subscription_service.rb', line 781 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)
773 774 775 |
# File 'lib/stripe/services/subscription_service.rb', line 773 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
775 776 777 |
# File 'lib/stripe/services/subscription_service.rb', line 775 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
777 778 779 |
# File 'lib/stripe/services/subscription_service.rb', line 777 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
779 780 781 |
# File 'lib/stripe/services/subscription_service.rb', line 779 def lte @lte end |