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

SeatClaimInfo

Read-only information about a seat claim invitation.
Safe for email scanners - no side effects when fetched.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.SeatClaimInfo{
  can_claim: boolean() | nil,
  customer_email: String.t() | nil,
  organization_name: String.t() | nil,
  organization_slug: String.t() | nil,
  product_id: String.t() | nil,
  product_name: String.t() | nil
}
```

* `can_claim` - Whether the seat can be claimed
* `customer_email` - Email of the customer assigned to this seat
* `organization_name` - Name of the organization
* `organization_slug` - Slug of the organization
* `product_id` - ID of the product Format: uuid.
* `product_name` - Name of the product

# `schema_name`

---

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