Class: Stripe::V2::Core::EventDestinationService::ListParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::EventDestinationService::ListParams
- Defined in:
- lib/stripe/services/v2/core/event_destination_service.rb
Instance Attribute Summary collapse
-
#include ⇒ Object
Additional fields to include in the response.
-
#limit ⇒ Object
The page size.
Instance Method Summary collapse
-
#initialize(include: nil, limit: nil) ⇒ ListParams
constructor
A new instance of ListParams.
Methods inherited from RequestParams
Constructor Details
#initialize(include: nil, limit: nil) ⇒ ListParams
Returns a new instance of ListParams.
94 95 96 97 |
# File 'lib/stripe/services/v2/core/event_destination_service.rb', line 94 def initialize(include: nil, limit: nil) @include = include @limit = limit end |
Instance Attribute Details
#include ⇒ Object
Additional fields to include in the response. Currently supports ‘webhook_endpoint.url`.
90 91 92 |
# File 'lib/stripe/services/v2/core/event_destination_service.rb', line 90 def include @include end |
#limit ⇒ Object
The page size.
92 93 94 |
# File 'lib/stripe/services/v2/core/event_destination_service.rb', line 92 def limit @limit end |