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.
714 715 716 717 718 719 |
# File 'lib/stripe/services/subscription_service.rb', line 714 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)
706 707 708 |
# File 'lib/stripe/services/subscription_service.rb', line 706 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
708 709 710 |
# File 'lib/stripe/services/subscription_service.rb', line 708 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
710 711 712 |
# File 'lib/stripe/services/subscription_service.rb', line 710 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
712 713 714 |
# File 'lib/stripe/services/subscription_service.rb', line 712 def lte @lte end |