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

Organization

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.Organization{
  account_id: term(),
  allow_customer_updates: term(),
  avatar_url: term(),
  country: term(),
  created_at: term(),
  customer_email_settings: term(),
  customer_portal_settings: term(),
  default_presentment_currency: term(),
  default_tax_behavior: term(),
  details_submitted_at: term(),
  email: term(),
  feature_settings: term(),
  id: term(),
  modified_at: term(),
  name: term(),
  notification_settings: term(),
  payout_account_id: term(),
  proration_behavior: term(),
  slug: term(),
  socials: term(),
  status: term(),
  subscription_settings: term(),
  website: term()
}
```

* `account_id` - ID of the transactions account. Nullable.
* `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.
* `country` - Two-letter country code (ISO 3166-1 alpha-2). Nullable.
* `created_at` - Creation timestamp of the object. Format: date-time.
* `customer_email_settings` - Settings related to customer emails
* `customer_portal_settings` - Settings related to the customer portal
* `default_presentment_currency` - Default presentment currency. Used as fallback in checkout and customer portal, if the customer's local currency is not available.
* `default_tax_behavior` - Default tax behavior applied on products.
* `details_submitted_at` - When the business details were submitted for review. Nullable.
* `email` - Public support email. Nullable.
* `feature_settings` - Organization feature settings Nullable.
* `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.
* `notification_settings` - Settings related to notifications
* `payout_account_id` - ID of the payout account. Nullable.
* `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.
* `socials` - Links to social profiles.
* `status` - Current organization status
* `subscription_settings` - Settings related to subscriptions management
* `website` - Official website of the organization. Nullable.

# `schema_name`

---

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