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

Generate latest changes from OpenApi spec #487

Merged
merged 1 commit into from
Jan 27, 2024
Merged
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
2 changes: 1 addition & 1 deletion openapi/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "v790"
"version": "v796"
}
6 changes: 3 additions & 3 deletions src/resources/generated/payment_intent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ pub struct PaymentIntentPaymentMethodOptionsCard {
pub request_extended_authorization:
Option<PaymentIntentPaymentMethodOptionsCardRequestExtendedAuthorization>,

/// Request ability to [increment](https://stripe.com/docs/payments/incremental-authorization) for this PaymentIntent.
/// Request ability to [increment the authorization](https://stripe.com/docs/payments/incremental-authorization) for this PaymentIntent.
#[serde(skip_serializing_if = "Option::is_none")]
pub request_incremental_authorization:
Option<PaymentIntentPaymentMethodOptionsCardRequestIncrementalAuthorization>,
Expand Down Expand Up @@ -3054,7 +3054,7 @@ pub struct CreatePaymentIntentPaymentMethodOptionsCard {
pub request_extended_authorization:
Option<CreatePaymentIntentPaymentMethodOptionsCardRequestExtendedAuthorization>,

/// Request ability to [increment](https://stripe.com/docs/payments/incremental-authorization) for this PaymentIntent.
/// Request ability to [increment the authorization](https://stripe.com/docs/payments/incremental-authorization) for this PaymentIntent.
#[serde(skip_serializing_if = "Option::is_none")]
pub request_incremental_authorization:
Option<CreatePaymentIntentPaymentMethodOptionsCardRequestIncrementalAuthorization>,
Expand Down Expand Up @@ -3941,7 +3941,7 @@ pub struct UpdatePaymentIntentPaymentMethodOptionsCard {
pub request_extended_authorization:
Option<UpdatePaymentIntentPaymentMethodOptionsCardRequestExtendedAuthorization>,

/// Request ability to [increment](https://stripe.com/docs/payments/incremental-authorization) for this PaymentIntent.
/// Request ability to [increment the authorization](https://stripe.com/docs/payments/incremental-authorization) for this PaymentIntent.
#[serde(skip_serializing_if = "Option::is_none")]
pub request_incremental_authorization:
Option<UpdatePaymentIntentPaymentMethodOptionsCardRequestIncrementalAuthorization>,
Expand Down
Loading