Class: Stripe::V2::Billing::IntentService::ListParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/v2/billing/intent_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(limit: nil) ⇒ ListParams

Returns a new instance of ListParams.



19
20
21
# File 'lib/stripe/services/v2/billing/intent_service.rb', line 19

def initialize(limit: nil)
  @limit = limit
end

Instance Attribute Details

#limitObject

Optionally set the maximum number of results per page. Defaults to 10.



17
18
19
# File 'lib/stripe/services/v2/billing/intent_service.rb', line 17

def limit
  @limit
end