Class: Stripe::Apps::SecretFindParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Apps::SecretFindParams
- Defined in:
- lib/stripe/params/apps/secret_find_params.rb
Defined Under Namespace
Classes: Scope
Instance Attribute Summary collapse
-
#expand ⇒ Object
Specifies which fields in the response should be expanded.
-
#name ⇒ Object
A name for the secret that’s unique within the scope.
-
#scope ⇒ Object
Specifies the scoping of the secret.
Instance Method Summary collapse
-
#initialize(expand: nil, name: nil, scope: nil) ⇒ SecretFindParams
constructor
A new instance of SecretFindParams.
Methods inherited from RequestParams
Constructor Details
#initialize(expand: nil, name: nil, scope: nil) ⇒ SecretFindParams
Returns a new instance of SecretFindParams.
25 26 27 28 29 |
# File 'lib/stripe/params/apps/secret_find_params.rb', line 25 def initialize(expand: nil, name: nil, scope: nil) = @name = name @scope = scope end |
Instance Attribute Details
#expand ⇒ Object
Specifies which fields in the response should be expanded.
19 20 21 |
# File 'lib/stripe/params/apps/secret_find_params.rb', line 19 def end |
#name ⇒ Object
A name for the secret that’s unique within the scope.
21 22 23 |
# File 'lib/stripe/params/apps/secret_find_params.rb', line 21 def name @name end |
#scope ⇒ Object
Specifies the scoping of the secret. Requests originating from UI extensions can only access account-scoped secrets or secrets scoped to their own user.
23 24 25 |
# File 'lib/stripe/params/apps/secret_find_params.rb', line 23 def scope @scope end |