Stripe.Params.Apps.SecretDeleteWhereParams (tiger_stripe v0.3.0)

Copy Markdown View Source

Parameters for secret delete where.

Summary

Types

scope()

@type scope() :: %{
  optional(:type) => String.t() | nil,
  optional(:user) => String.t() | nil,
  optional(String.t()) => term()
}
  • type - The secret scope type. Possible values: account, user.
  • user - The user ID. This field is required if type is set to user, and should not be provided if type is set to account. Max length: 5000.

t()

@type t() :: %Stripe.Params.Apps.SecretDeleteWhereParams{
  expand: [String.t()] | nil,
  name: String.t(),
  scope: scope()
}
  • expand - Specifies which fields in the response should be expanded.
  • name - A name for the secret that's unique within the scope. Max length: 5000.
  • scope - Specifies the scoping of the secret. Requests originating from UI extensions can only access account-scoped secrets or secrets scoped to their own user.