⚡ Solution Summary
- The quote PDF endpoint was not using the correct domain in requests.
- A bug was identified in the code responsible for handling the endpoint.
- Update to stripe-python library version 9.3.0 to resolve the issue.
### Describe the bug
Looks like the [download quote PDF](https://docs.stripe.com/api/quotes/pdf) endpoint is under a different domain than the other API endpoints, but the client does not update the domain in the request
### To Reproduce
```python
resource = stripe.Quote.retrieve(<quote_id>)
resource.pdf()
```
causes
```
InvalidRequestError: Unrecognized request URL (GET: /v1/quotes/<quote_id>/pdf). Please see https://stripe.com/docs or we can help at https://support.stripe.com/.
```
### Expected behavior
The client should successfully request the quote endpoint
### Code snippets
_No response_
### OS
macOS
### Language version
Python 3.12.3
### Library version
v9.1.0
### API version
2024-04-10
### Additional context
_No response_
Discussion & Fixes