Class: Stripe::V2::Core::Accounts::PersonListParams

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(limit: nil) ⇒ PersonListParams

Returns a new instance of PersonListParams.



12
13
14
# File 'lib/stripe/params/v2/core/accounts/person_list_params.rb', line 12

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

Instance Attribute Details

#limitObject

The upper limit on the number of accounts returned by the List Account request.



10
11
12
# File 'lib/stripe/params/v2/core/accounts/person_list_params.rb', line 10

def limit
  @limit
end