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.
89 90 91 92 |
# File 'lib/stripe/services/v2/core/event_destination_service.rb', line 89 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`.
85 86 87 |
# File 'lib/stripe/services/v2/core/event_destination_service.rb', line 85 def include @include end |
#limit ⇒ Object
The page size.
87 88 89 |
# File 'lib/stripe/services/v2/core/event_destination_service.rb', line 87 def limit @limit end |