# `PolarExpress.Schemas.CustomerSession`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/customer_session.ex#L2)

CustomerSession

A customer session that can be used to authenticate as a customer.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.CustomerSession{
  created_at: DateTime.t() | nil,
  customer: PolarExpress.Schemas.Customer.t() | nil,
  customer_id: String.t() | nil,
  customer_portal_url: String.t() | nil,
  expires_at: DateTime.t() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil,
  return_url: String.t() | nil,
  token: String.t() | nil
}
```

* `created_at` - Creation timestamp of the object. Format: date-time.
* `customer`
* `customer_id` - Format: uuid4.
* `customer_portal_url`
* `expires_at` - Format: date-time.
* `id` - The ID of the object. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `return_url` - Nullable.
* `token`

# `schema_name`

---

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