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

LoginLink

Login Links are single-use URLs that takes an Express account to the login page for their Stripe dashboard.
A Login Link differs from an [Account Link](https://docs.stripe.com/api/account_links) in that it takes the user directly to their [Express dashboard for the specified account](https://docs.stripe.com/connect/integrate-express-dashboard#create-login-link)

# `t`

```elixir
@type t() :: %Stripe.Resources.LoginLink{
  created: integer(),
  object: String.t(),
  url: String.t()
}
```

* `created` - Time at which the object was created. Measured in seconds since the Unix epoch. Format: Unix timestamp.
* `object` - String representing the object's type. Objects of the same type share the same value. Possible values: `login_link`.
* `url` - The URL for the login link. Max length: 5000.

# `object_name`

---

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