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

CustomerOrganization

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.CustomerOrganization{
  allow_customer_updates: boolean() | nil,
  avatar_url: String.t() | nil,
  created_at: DateTime.t() | nil,
  customer_portal_settings:
    PolarExpress.Schemas.OrganizationCustomerPortalSettings.t() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil,
  name: String.t() | nil,
  organization_features:
    PolarExpress.Schemas.CustomerOrganizationFeatureSettings.t() | nil,
  proration_behavior:
    PolarExpress.Schemas.SubscriptionProrationBehavior.t() | nil,
  slug: String.t() | nil
}
```

* `allow_customer_updates` - Whether customers can update their subscriptions from the customer portal.
* `avatar_url` - Avatar URL shown in checkout, customer portal, emails etc. Nullable.
* `created_at` - Creation timestamp of the object. Format: date-time.
* `customer_portal_settings` - Settings related to the customer portal
* `id` - The ID of the object. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `name` - Organization name shown in checkout, customer portal, emails etc.
* `organization_features` - Feature flags for the customer portal.
* `proration_behavior` - Proration behavior applied when customer updates their subscription from the portal.
* `slug` - Unique organization slug in checkout, customer portal and credit card statements.

# `schema_name`

---

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