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 #892

Merged
merged 1 commit into from
Jul 1, 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
18 changes: 18 additions & 0 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -13600,6 +13600,15 @@
"type": "string",
"x-stripeBypassValidation": true
},
"payment_method_save_usage": {
"description": "When using PaymentIntents and the customer checks the save checkbox, this field determines the [`setup_future_usage`](https://docs.stripe.com/api/payment_intents/object#payment_intent_object-setup_future_usage) value used to confirm the PaymentIntent.\n\nWhen using SetupIntents, directly configure the [`usage`](https://docs.stripe.com/api/setup_intents/object#setup_intent_object-usage) value on SetupIntent creation.",
"enum": [
"off_session",
"on_session"
],
"nullable": true,
"type": "string"
},
"payment_method_update": {
"description": "Controls whether the Payment Element displays the option to update a saved payment method. This parameter defaults to `disabled`.",
"enum": [
Expand All @@ -13613,6 +13622,7 @@
"required": [
"payment_method_remove",
"payment_method_save",
"payment_method_save_usage",
"payment_method_update"
],
"title": "CustomerSessionResourceComponentsResourcePaymentElementResourceFeatures",
Expand Down Expand Up @@ -94687,6 +94697,14 @@
"type": "string",
"x-stripeBypassValidation": true
},
"payment_method_save_usage": {
"description": "When using PaymentIntents and the customer checks the save checkbox, this field determines the [`setup_future_usage`](https://docs.stripe.com/api/payment_intents/object#payment_intent_object-setup_future_usage) value used to confirm the PaymentIntent.\n\nWhen using SetupIntents, directly configure the [`usage`](https://docs.stripe.com/api/setup_intents/object#setup_intent_object-usage) value on SetupIntent creation.",
"enum": [
"off_session",
"on_session"
],
"type": "string"
},
"payment_method_update": {
"description": "Controls whether the Payment Element displays the option to update a saved payment method. This parameter defaults to `disabled`.",
"enum": [
Expand Down
Loading