Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated code #1056

Merged
merged 3 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v532
v545
8 changes: 4 additions & 4 deletions stripe/api_resources/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@

class File(ListableAPIResource["File"]):
"""
This is an object representing a file hosted on Stripe's servers. The
file may have been uploaded by yourself using the [create file](https://stripe.com/docs/api#create_file)
request (for example, when uploading dispute evidence) or it may have
been created by Stripe (for example, the results of a [Sigma scheduled
This object represents files hosted on Stripe's servers. You can upload
files with the [create file](https://stripe.com/docs/api#create_file) request
(for example, when uploading dispute evidence). Stripe also
creates files independetly (for example, the results of a [Sigma scheduled
query](https://stripe.com/docs/api#scheduled_queries)).

Related guide: [File upload guide](https://stripe.com/docs/file-upload)
Expand Down
2 changes: 1 addition & 1 deletion stripe/api_resources/file_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class FileLink(
):
"""
To share the contents of a `File` object with non-Stripe users, you can
create a `FileLink`. `FileLink`s contain a URL that can be used to
create a `FileLink`. `FileLink`s contain a URL that you can use to
retrieve the contents of the file without authentication.
"""

Expand Down
2 changes: 1 addition & 1 deletion stripe/api_resources/person.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Person(UpdateableAPIResource["Person"]):
A platform cannot access a Standard or Express account's persons after the account starts onboarding, such as after generating an account link for the account.
See the [Standard onboarding](https://stripe.com/docs/connect/standard-accounts) or [Express onboarding documentation](https://stripe.com/docs/connect/express-accounts) for information about platform prefilling and account onboarding steps.

Related guide: [Handling identity verification with the API](https://stripe.com/docs/connect/identity-verification-api#person-information)
Related guide: [Handling identity verification with the API](https://stripe.com/docs/connect/handling-api-verification#person-information)
"""

OBJECT_NAME = "person"
Expand Down
6 changes: 3 additions & 3 deletions stripe/api_resources/tax_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

class TaxId(APIResource["TaxId"]):
"""
You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers).
A customer's tax IDs are displayed on invoices and credit notes issued for the customer.
You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers) or account.
Customer and account tax IDs get displayed on related invoices and credit notes.

Related guide: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids)
Related guides: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids), [Account tax IDs](https://stripe.com/docs/invoicing/connect#account-tax-ids)
"""

OBJECT_NAME = "tax_id"
Expand Down