Class: Stripe::V2::Core::EventDestinationListParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/event_destination_list_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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

#includeObject

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

#limitObject

The page size.



11
12
13
# File 'lib/stripe/params/v2/core/event_destination_list_params.rb', line 11

def limit
  @limit
end