# `Stripe.Resources.EphemeralKey`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/ephemeral_key.ex#L2)

EphemeralKey

# `t`

```elixir
@type t() :: %Stripe.Resources.EphemeralKey{
  created: integer(),
  expires: integer(),
  id: String.t(),
  livemode: boolean(),
  object: String.t(),
  secret: String.t() | nil
}
```

* `created` - Time at which the object was created. Measured in seconds since the Unix epoch. Format: Unix timestamp.
* `expires` - Time at which the key will expire. Measured in seconds since the Unix epoch. Format: Unix timestamp.
* `id` - Unique identifier for the object. Max length: 5000.
* `livemode` - Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `ephemeral_key`.
* `secret` - The key's secret. You can use this value to make authorized requests to the Stripe API. Max length: 5000.

# `object_name`

---

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