Class: Stripe::V2::Core::Accounts::PersonListParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::Accounts::PersonListParams
- Defined in:
- lib/stripe/params/v2/core/accounts/person_list_params.rb
Instance Attribute Summary collapse
-
#limit ⇒ Object
The upper limit on the number of accounts returned by the List Account request.
Instance Method Summary collapse
-
#initialize(limit: nil) ⇒ PersonListParams
constructor
A new instance of PersonListParams.
Methods inherited from RequestParams
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
#limit ⇒ Object
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 |