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.
799 800 801 802 803 804 |
# File 'lib/stripe/services/subscription_service.rb', line 799 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)
791 792 793 |
# File 'lib/stripe/services/subscription_service.rb', line 791 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
793 794 795 |
# File 'lib/stripe/services/subscription_service.rb', line 793 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
795 796 797 |
# File 'lib/stripe/services/subscription_service.rb', line 795 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
797 798 799 |
# File 'lib/stripe/services/subscription_service.rb', line 797 def lte @lte end |