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

CustomerPortalMember

A member of the customer's team as seen in the customer portal.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.CustomerPortalMember{
  created_at: DateTime.t() | nil,
  email: String.t() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil,
  name: String.t() | nil,
  role: PolarExpress.Schemas.MemberRole.t() | nil
}
```

* `created_at` - Creation timestamp of the object. Format: date-time.
* `email` - The email address of the member.
* `id` - The ID of the object. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `name` - The name of the member. Nullable.
* `role` - The role of the member within the team.

# `schema_name`

---

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