Class: Stripe::Apps::SecretDeleteWhereParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/apps/secret_delete_where_params.rb

Defined Under Namespace

Classes: Scope

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(expand: nil, name: nil, scope: nil) ⇒ SecretDeleteWhereParams

Returns a new instance of SecretDeleteWhereParams.



25
26
27
28
29
# File 'lib/stripe/params/apps/secret_delete_where_params.rb', line 25

def initialize(expand: nil, name: nil, scope: nil)
  @expand = expand
  @name = name
  @scope = scope
end

Instance Attribute Details

#expandObject

Specifies which fields in the response should be expanded.



19
20
21
# File 'lib/stripe/params/apps/secret_delete_where_params.rb', line 19

def expand
  @expand
end

#nameObject

A name for the secret that’s unique within the scope.



21
22
23
# File 'lib/stripe/params/apps/secret_delete_where_params.rb', line 21

def name
  @name
end

#scopeObject

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_delete_where_params.rb', line 23

def scope
  @scope
end