Skip to content

Commit

Permalink
Codegen for openapi v195
Browse files Browse the repository at this point in the history
  • Loading branch information
pakrym-stripe committed Sep 21, 2022
1 parent 1ae4222 commit 656fc5b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v184
v195
13 changes: 13 additions & 0 deletions stripe/api_resources/invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,19 @@ def upcoming(
params=params,
)

@classmethod
def upcomingLines(
cls, api_key=None, stripe_version=None, stripe_account=None, **params
):
return cls._static_request(
"get",
"/v1/invoices/upcoming/lines",
api_key=api_key,
stripe_version=stripe_version,
stripe_account=stripe_account,
params=params,
)

@classmethod
def _cls_void_invoice(
cls,
Expand Down

0 comments on commit 656fc5b

Please sign in to comment.