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

Update generated code for beta #2736

Merged
merged 4 commits into from
Jul 27, 2023
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v431
v433
1,153 changes: 857 additions & 296 deletions src/Stripe.net/Constants/Events.cs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class OrderPaymentSettingsPaymentMethodOptionsLink : StripeEntity<OrderPa
public string CaptureMethod { get; set; }

/// <summary>
/// Token used for persistent Link logins.
/// [Deprecated] This is a legacy parameter that no longer has any function.
/// </summary>
[JsonProperty("persistent_token")]
public string PersistentToken { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class PaymentIntentPaymentMethodOptionsLink : StripeEntity<PaymentIntentP
public string CaptureMethod { get; set; }

/// <summary>
/// Token used for persistent Link logins.
/// [Deprecated] This is a legacy parameter that no longer has any function.
/// </summary>
[JsonProperty("persistent_token")]
public string PersistentToken { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class PaymentMethodLink : StripeEntity<PaymentMethodLink>
public string Email { get; set; }

/// <summary>
/// Token used for persistent Link logins.
/// [Deprecated] This is a legacy parameter that no longer has any function.
/// </summary>
[JsonProperty("persistent_token")]
public string PersistentToken { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Stripe
public class SetupIntentPaymentMethodOptionsLink : StripeEntity<SetupIntentPaymentMethodOptionsLink>
{
/// <summary>
/// Token used for persistent Link logins.
/// [Deprecated] This is a legacy parameter that no longer has any function.
/// </summary>
[JsonProperty("persistent_token")]
public string PersistentToken { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class OrderPaymentSettingsPaymentMethodOptionsLinkOptions : INestedOption
public string CaptureMethod { get; set; }

/// <summary>
/// Token used for persistent Link logins.
/// [Deprecated] This is a legacy parameter that no longer has any function.
/// </summary>
[JsonProperty("persistent_token")]
public string PersistentToken { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class PaymentIntentPaymentMethodOptionsLinkOptions : INestedOptions
public string CaptureMethod { get; set; }

/// <summary>
/// Token used for persistent Link logins.
/// [Deprecated] This is a legacy parameter that no longer has any function.
/// </summary>
[JsonProperty("persistent_token")]
public string PersistentToken { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Stripe
public class SetupIntentPaymentMethodOptionsLinkOptions : INestedOptions
{
/// <summary>
/// Token used for persistent Link logins.
/// [Deprecated] This is a legacy parameter that no longer has any function.
/// </summary>
[JsonProperty("persistent_token")]
public string PersistentToken { get; set; }
Expand Down
Loading