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

Create 'UpcomingInvoice' type #1060

Closed
Closed
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
4 changes: 2 additions & 2 deletions types/2020-08-27/Invoices.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1354,10 +1354,10 @@ declare module 'stripe' {
retrieveUpcoming(
params?: InvoiceRetrieveUpcomingParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Invoice>>;
): Promise<Stripe.Response<Stripe.UpcomingInvoice>>;
retrieveUpcoming(
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Invoice>>;
): Promise<Stripe.Response<Stripe.UpcomingInvoice>>;

/**
* Stripe will automatically send invoices to customers according to your [subscriptions settings](https://dashboard.stripe.com/account/billing/automatic). However, if you'd like to manually send an invoice to your customer out of the normal schedule, you can do so. When sending invoices that have already been paid, there will be no reference to the payment in the email.
Expand Down
Loading