-
Notifications
You must be signed in to change notification settings - Fork 569
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4667df9
commit a422e14
Showing
27 changed files
with
208 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v635 | ||
v636 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsRevolutPay.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe | ||
{ | ||
public class ChargePaymentMethodDetailsRevolutPay : StripeEntity<ChargePaymentMethodDetailsRevolutPay> | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/Stripe.net/Entities/Checkout/Sessions/SessionPaymentMethodOptionsRevolutPay.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe.Checkout | ||
{ | ||
public class SessionPaymentMethodOptionsRevolutPay : StripeEntity<SessionPaymentMethodOptionsRevolutPay> | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...Stripe.net/Entities/ConfirmationTokens/ConfirmationTokenPaymentMethodPreviewRevolutPay.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe | ||
{ | ||
public class ConfirmationTokenPaymentMethodPreviewRevolutPay : StripeEntity<ConfirmationTokenPaymentMethodPreviewRevolutPay> | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/Stripe.net/Entities/PaymentIntents/PaymentIntentPaymentMethodOptionsRevolutPay.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe | ||
{ | ||
public class PaymentIntentPaymentMethodOptionsRevolutPay : StripeEntity<PaymentIntentPaymentMethodOptionsRevolutPay> | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/Stripe.net/Entities/PaymentMethods/PaymentMethodRevolutPay.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe | ||
{ | ||
public class PaymentMethodRevolutPay : StripeEntity<PaymentMethodRevolutPay> | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/Stripe.net/Services/Accounts/AccountCapabilitiesRevolutPayPaymentsOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class AccountCapabilitiesRevolutPayPaymentsOptions : INestedOptions | ||
{ | ||
/// <summary> | ||
/// Passing true requests the capability for the account, if it is not already requested. A | ||
/// requested capability may not immediately become active. Any requirements to activate the | ||
/// capability are returned in the <c>requirements</c> arrays. | ||
/// </summary> | ||
[JsonProperty("requested")] | ||
public bool? Requested { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/Stripe.net/Services/Checkout/Sessions/SessionPaymentMethodOptionsRevolutPayOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe.Checkout | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class SessionPaymentMethodOptionsRevolutPayOptions : INestedOptions | ||
{ | ||
/// <summary> | ||
/// Indicates that you intend to make future payments with this PaymentIntent's payment | ||
/// method. | ||
/// | ||
/// Providing this parameter will <a | ||
/// href="https://stripe.com/docs/payments/save-during-payment">attach the payment | ||
/// method</a> to the PaymentIntent's Customer, if present, after the PaymentIntent is | ||
/// confirmed and any required actions from the user are complete. If no Customer was | ||
/// provided, the payment method can still be <a | ||
/// href="https://stripe.com/docs/api/payment_methods/attach">attached</a> to a Customer | ||
/// after the transaction completes. | ||
/// | ||
/// When processing card payments, Stripe also uses <c>setup_future_usage</c> to dynamically | ||
/// optimize your payment flow and comply with regional legislation and network rules, such | ||
/// as <a href="https://stripe.com/docs/strong-customer-authentication">SCA</a>. | ||
/// One of: <c>none</c>, or <c>off_session</c>. | ||
/// </summary> | ||
[JsonProperty("setup_future_usage")] | ||
public string SetupFutureUsage { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodDataRevolutPayOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe | ||
{ | ||
public class PaymentIntentPaymentMethodDataRevolutPayOptions : INestedOptions | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/Stripe.net/Services/PaymentIntents/PaymentIntentPaymentMethodOptionsRevolutPayOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class PaymentIntentPaymentMethodOptionsRevolutPayOptions : INestedOptions | ||
{ | ||
/// <summary> | ||
/// Indicates that you intend to make future payments with this PaymentIntent's payment | ||
/// method. | ||
/// | ||
/// Providing this parameter will <a | ||
/// href="https://stripe.com/docs/payments/save-during-payment">attach the payment | ||
/// method</a> to the PaymentIntent's Customer, if present, after the PaymentIntent is | ||
/// confirmed and any required actions from the user are complete. If no Customer was | ||
/// provided, the payment method can still be <a | ||
/// href="https://stripe.com/docs/api/payment_methods/attach">attached</a> to a Customer | ||
/// after the transaction completes. | ||
/// | ||
/// When processing card payments, Stripe also uses <c>setup_future_usage</c> to dynamically | ||
/// optimize your payment flow and comply with regional legislation and network rules, such | ||
/// as <a href="https://stripe.com/docs/strong-customer-authentication">SCA</a>. | ||
/// One of: <c>none</c>, or <c>off_session</c>. | ||
/// </summary> | ||
[JsonProperty("setup_future_usage")] | ||
public string SetupFutureUsage { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/Stripe.net/Services/PaymentMethods/PaymentMethodRevolutPayOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe | ||
{ | ||
public class PaymentMethodRevolutPayOptions : INestedOptions | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/Stripe.net/Services/SetupIntents/SetupIntentPaymentMethodDataRevolutPayOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe | ||
{ | ||
public class SetupIntentPaymentMethodDataRevolutPayOptions : INestedOptions | ||
{ | ||
} | ||
} |