# `PolarExpress.Resources.Customers`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/resources/customers.ex#L2)

Customers

Customers API operations.

# `t`

```elixir
@type t() :: %PolarExpress.Resources.Customers{
  avatar_url: term(),
  billing_address: term(),
  created_at: term(),
  deleted_at: term(),
  email: term(),
  email_verified: term(),
  external_id: term(),
  id: term(),
  locale: term(),
  metadata: term(),
  modified_at: term(),
  name: term(),
  organization_id: term(),
  tax_id: term(),
  type: term()
}
```

* `avatar_url`
* `billing_address`
* `created_at` - Creation timestamp of the object. Format: date-time.
* `deleted_at` - Timestamp for when the customer was soft deleted.
* `email` - The email address of the customer. This must be unique within the organization.
* `email_verified` - Whether the customer email address is verified. The address is automatically verified when the customer accesses the customer portal using their email address.
* `external_id` - The ID of the customer in your system. This must be unique within the organization. Once set, it can't be updated.
* `id` - The ID of the customer. Format: uuid4.
* `locale`
* `metadata`
* `modified_at` - Last modification timestamp of the object.
* `name` - The name of the customer.
* `organization_id` - The ID of the organization owning the customer. Format: uuid4.
* `tax_id`
* `type` - The type of customer. Team customers can have multiple members.

# `object_name`

---

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