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

BenefitPublic

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.BenefitPublic{
  created_at: DateTime.t() | nil,
  deletable: boolean() | nil,
  description: String.t() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil,
  organization_id: String.t() | nil,
  selectable: boolean() | nil,
  type: PolarExpress.Schemas.BenefitType.t() | nil
}
```

* `created_at` - Creation timestamp of the object. Format: date-time.
* `deletable` - Whether the benefit is deletable.
* `description` - The description of the benefit.
* `id` - The ID of the benefit. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `organization_id` - The ID of the organization owning the benefit. Format: uuid4.
* `selectable` - Whether the benefit is selectable when creating a product.
* `type` - The type of the benefit.

# `schema_name`

---

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