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

OrganizationCreate

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.OrganizationCreate{
  avatar_url: String.t() | nil,
  customer_email_settings:
    PolarExpress.Schemas.OrganizationCustomerEmailSettings.t() | nil,
  customer_portal_settings:
    PolarExpress.Schemas.OrganizationCustomerPortalSettings.t() | nil,
  default_presentment_currency:
    PolarExpress.Schemas.PresentmentCurrency.t() | nil,
  details: PolarExpress.Schemas.OrganizationDetails.t() | nil,
  email: String.t() | nil,
  feature_settings: PolarExpress.Schemas.OrganizationFeatureSettings.t() | nil,
  name: String.t() | nil,
  notification_settings:
    PolarExpress.Schemas.OrganizationNotificationSettings.t() | nil,
  slug: String.t() | nil,
  socials: [PolarExpress.Schemas.OrganizationSocialLink.t()] | nil,
  subscription_settings:
    PolarExpress.Schemas.OrganizationSubscriptionSettings.t() | nil,
  website: String.t() | nil
}
```

* `avatar_url` - Nullable.
* `customer_email_settings` - Nullable.
* `customer_portal_settings` - Nullable.
* `default_presentment_currency` - Default presentment currency for the organization
* `details` - Additional, private, business details Polar needs about active organizations for compliance (KYC). Nullable.
* `email` - Public support email. Nullable.
* `feature_settings` - Nullable.
* `name`
* `notification_settings` - Nullable.
* `slug`
* `socials` - Link to social profiles. Nullable.
* `subscription_settings` - Nullable.
* `website` - Official website of the organization. Nullable.

# `schema_name`

---

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