## What was reported

Issue stripe/stripe-node#1794 (closed, 14 comments): ### Describe the bug

The property `plan` is not accessible on `Subscription` objects when used in TypeScript. The `plan` property is, however, present in the `Subscription` object

[image]

[image]

### To Reproduce

1. Create an instance of `Stripe`
2. Request a `Subscription` object
3. Try to access the `plan` property

### Expected be

## The verified resolution

[remi-stripe (maintainer)]: The `plan` property on Subscription was deprecated years ago, so it is intentionally absent from the TypeScript types and the docs. Use `items.data[xxx].price` instead. The property still comes back in API responses for older API versions (any removal would be gated behind a new API version), but do not build new integrations on it.