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

PendingSubscriptionUpdate

Pending update to be applied to a subscription at the beginning of the next period.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.PendingSubscriptionUpdate{
  applies_at: DateTime.t() | nil,
  created_at: DateTime.t() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil,
  product_id: String.t() | nil,
  seats: integer() | nil
}
```

* `applies_at` - The date and time when the subscription update will be applied. Format: date-time.
* `created_at` - Creation timestamp of the object. Format: date-time.
* `id` - The ID of the object. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `product_id` - ID of the new product to apply to the subscription. If `null`, the product won't be changed. Nullable.
* `seats` - Number of seats to apply to the subscription. If `null`, the number of seats won't be changed. Nullable.

# `schema_name`

---

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