Skip to content

Commit

Permalink
Update generated code for v1293
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Oct 14, 2024
1 parent 7a08703 commit a6001fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1292
v1293
6 changes: 2 additions & 4 deletions stripe/issuing/_authorization.py
Original file line number Diff line number Diff line change
Expand Up @@ -1509,9 +1509,7 @@ class ListParams(RequestOptions):
"""
A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
"""
status: NotRequired[
Literal["closed", "expired", "pending", "reversed"]
]
status: NotRequired[Literal["closed", "pending", "reversed"]]
"""
Only return authorizations with the given status. One of `pending`, `closed`, or `reversed`.
"""
Expand Down Expand Up @@ -1643,7 +1641,7 @@ class ReverseParams(RequestOptions):
"""
History of every time a `pending_request` authorization was approved/declined, either by you directly or by Stripe (e.g. based on your spending_controls). If the merchant changes the authorization by performing an incremental authorization, you can look at this field to see the previous requests for the authorization. This field can be helpful in determining why a given authorization was approved/declined.
"""
status: Literal["closed", "expired", "pending", "reversed"]
status: Literal["closed", "pending", "reversed"]
"""
The current status of the authorization in its lifecycle.
"""
Expand Down
4 changes: 1 addition & 3 deletions stripe/issuing/_authorization_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ class ListParams(TypedDict):
"""
A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
"""
status: NotRequired[
Literal["closed", "expired", "pending", "reversed"]
]
status: NotRequired[Literal["closed", "pending", "reversed"]]
"""
Only return authorizations with the given status. One of `pending`, `closed`, or `reversed`.
"""
Expand Down

0 comments on commit a6001fa

Please sign in to comment.