Class: Stripe::V2::Billing::IntentListParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/v2/billing/intent_list_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(limit: nil) ⇒ IntentListParams

Returns a new instance of IntentListParams.



11
12
13
# File 'lib/stripe/params/v2/billing/intent_list_params.rb', line 11

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

Instance Attribute Details

#limitObject

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



9
10
11
# File 'lib/stripe/params/v2/billing/intent_list_params.rb', line 9

def limit
  @limit
end