Class: Stripe::InvoiceService::ListParams::Created
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::InvoiceService::ListParams::Created
- Defined in:
- lib/stripe/services/invoice_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) ⇒ Created
constructor
A new instance of Created.
Methods inherited from RequestParams
Constructor Details
#initialize(gt: nil, gte: nil, lt: nil, lte: nil) ⇒ Created
Returns a new instance of Created.
592 593 594 595 596 597 |
# File 'lib/stripe/services/invoice_service.rb', line 592 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)
584 585 586 |
# File 'lib/stripe/services/invoice_service.rb', line 584 def gt @gt end |
#gte ⇒ Object
Minimum value to filter by (inclusive)
586 587 588 |
# File 'lib/stripe/services/invoice_service.rb', line 586 def gte @gte end |
#lt ⇒ Object
Maximum value to filter by (exclusive)
588 589 590 |
# File 'lib/stripe/services/invoice_service.rb', line 588 def lt @lt end |
#lte ⇒ Object
Maximum value to filter by (inclusive)
590 591 592 |
# File 'lib/stripe/services/invoice_service.rb', line 590 def lte @lte end |