Class: Stripe::V2::Core::EventDestinationListParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::EventDestinationListParams
- Defined in:
- lib/stripe/params/v2/core/event_destination_list_params.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) ⇒ EventDestinationListParams
constructor
A new instance of EventDestinationListParams.
Methods inherited from RequestParams
Constructor Details
#initialize(include: nil, limit: nil) ⇒ EventDestinationListParams
Returns a new instance of EventDestinationListParams.
13 14 15 16 |
# File 'lib/stripe/params/v2/core/event_destination_list_params.rb', line 13 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`.
9 10 11 |
# File 'lib/stripe/params/v2/core/event_destination_list_params.rb', line 9 def include @include end |
#limit ⇒ Object
The page size.
11 12 13 |
# File 'lib/stripe/params/v2/core/event_destination_list_params.rb', line 11 def limit @limit end |