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

OpenAPI Update #802

Merged
merged 1 commit into from
May 8, 2024
Merged
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
36 changes: 36 additions & 0 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -85919,6 +85919,14 @@
],
"description": "The account (if any) for which the funds of the invoice payment are intended. If set, the invoice will be presented with the branding and support information of the specified account. See the [Invoices with Connect](https://stripe.com/docs/billing/invoices/connect) documentation for details."
},
"preview_mode": {
"description": "Customizes the types of values to include when calculating the invoice. Defaults to `next` if unspecified.",
"enum": [
"next",
"recurring"
],
"type": "string"
},
"schedule": {
"description": "The identifier of the schedule whose upcoming invoice you'd like to retrieve. Cannot be used with subscription or subscription fields.",
"maxLength": 5000,
Expand Down Expand Up @@ -87485,6 +87493,20 @@
},
"style": "deepObject"
},
{
"description": "Customizes the types of values to include when calculating the invoice. Defaults to `next` if unspecified.",
"in": "query",
"name": "preview_mode",
"required": false,
"schema": {
"enum": [
"next",
"recurring"
],
"type": "string"
},
"style": "form"
},
{
"description": "The identifier of the schedule whose upcoming invoice you'd like to retrieve. Cannot be used with subscription or subscription fields.",
"in": "query",
Expand Down Expand Up @@ -89312,6 +89334,20 @@
},
"style": "deepObject"
},
{
"description": "Customizes the types of values to include when calculating the invoice. Defaults to `next` if unspecified.",
"in": "query",
"name": "preview_mode",
"required": false,
"schema": {
"enum": [
"next",
"recurring"
],
"type": "string"
},
"style": "form"
},
{
"description": "The identifier of the schedule whose upcoming invoice you'd like to retrieve. Cannot be used with subscription or subscription fields.",
"in": "query",
Expand Down
Loading