Class: Stripe::V2::Iam::ApiKeyListParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Iam::ApiKeyListParams
- Defined in:
- lib/stripe/params/v2/iam/api_key_list_params.rb
Instance Attribute Summary collapse
-
#include_expired ⇒ Object
Whether to include expired API keys in the response.
-
#limit ⇒ Object
Limit of items to return per page.
Instance Method Summary collapse
-
#initialize(include_expired: nil, limit: nil) ⇒ ApiKeyListParams
constructor
A new instance of ApiKeyListParams.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(include_expired: nil, limit: nil) ⇒ ApiKeyListParams
Returns a new instance of ApiKeyListParams.
13 14 15 16 |
# File 'lib/stripe/params/v2/iam/api_key_list_params.rb', line 13 def initialize(include_expired: nil, limit: nil) @include_expired = include_expired @limit = limit end |
Instance Attribute Details
#include_expired ⇒ Object
Whether to include expired API keys in the response.
9 10 11 |
# File 'lib/stripe/params/v2/iam/api_key_list_params.rb', line 9 def include_expired @include_expired end |
#limit ⇒ Object
Limit of items to return per page.
11 12 13 |
# File 'lib/stripe/params/v2/iam/api_key_list_params.rb', line 11 def limit @limit end |