# `Stripe.Params.Apps.SecretCreateParams`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/apps/secret_create_params.ex#L2)

Parameters for secret create.

# `t`

```elixir
@type t() :: %Stripe.Params.Apps.SecretCreateParams{
  expand: [String.t()] | nil,
  expires_at: integer() | nil,
  name: String.t(),
  payload: String.t(),
  scope: Stripe.Params.Apps.SecretCreateParams.Scope.t()
}
```

* `expand` - Specifies which fields in the response should be expanded.
* `expires_at` - The Unix timestamp for the expiry time of the secret, after which the secret deletes. Format: Unix timestamp.
* `name` - A name for the secret that's unique within the scope. Max length: 5000.
* `payload` - The plaintext secret value to be stored. 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.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
