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

Merged
merged 22 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
68875f5
Update generated code for v629
stripe-openapi[bot] Oct 30, 2023
882e82a
Update generated code for v629
stripe-openapi[bot] Oct 30, 2023
9eba253
Add list enum comments and autogenerate more options (#2789)
pakrym-stripe Oct 30, 2023
892a134
Merge upstream and update generated code for v629
stripe-openapi[bot] Oct 30, 2023
103f579
Update generated code for v629
stripe-openapi[bot] Oct 30, 2023
86caa4d
Update generated code for v630
stripe-openapi[bot] Oct 30, 2023
d11350e
Update generated code for v631
stripe-openapi[bot] Oct 31, 2023
4667df9
Update generated code for v635
stripe-openapi[bot] Nov 1, 2023
a422e14
Update generated code for v636
stripe-openapi[bot] Nov 1, 2023
92c4f0e
Update generated code for v637
stripe-openapi[bot] Nov 2, 2023
4887633
Update generated code for v639
stripe-openapi[bot] Nov 2, 2023
b92c0f7
Generate all resource classes (#2790)
pakrym-stripe Nov 2, 2023
365308b
Update generated code for v640
stripe-openapi[bot] Nov 2, 2023
866dd66
Merge upstream and update generated code for v640
stripe-openapi[bot] Nov 2, 2023
e5b3176
Update generated code for v641
stripe-openapi[bot] Nov 2, 2023
a5e0243
Update generated code for v642
stripe-openapi[bot] Nov 2, 2023
3ae24d2
Update generated code for v643
stripe-openapi[bot] Nov 2, 2023
24ead7b
Update generated code for v644
stripe-openapi[bot] Nov 2, 2023
fad0a98
Update generated code for v645
stripe-openapi[bot] Nov 2, 2023
e5341ed
Use RequestAsync directly (#2791)
pakrym-stripe Nov 2, 2023
46df237
Update generated code for v645
stripe-openapi[bot] Nov 2, 2023
58dcf13
Merge upstream and update generated code for v645
stripe-openapi[bot] Nov 2, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v627
v645
5 changes: 5 additions & 0 deletions src/Stripe.net/Constants/Events.cs
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,11 @@ public static class Events
/// </summary>
public const string InvoicePaymentSucceeded = "invoice.payment_succeeded";

/// <summary>
/// Occurs when an InvoicePayment transitions to paid with a non-zero amount_overpaid.
/// </summary>
public const string InvoicePaymentOverpaid = "invoice.payment.overpaid";

/// <summary>
/// Occurs whenever an invoice email is sent out.
/// </summary>
Expand Down
8 changes: 8 additions & 0 deletions src/Stripe.net/Entities/Accounts/AccountCapabilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,14 @@ public class AccountCapabilities : StripeEntity<AccountCapabilities>
[JsonProperty("promptpay_payments")]
public string PromptpayPayments { get; set; }

/// <summary>
/// The status of the RevolutPay capability of the account, or whether the account can
/// directly process RevolutPay payments.
/// One of: <c>active</c>, <c>inactive</c>, or <c>pending</c>.
/// </summary>
[JsonProperty("revolut_pay_payments")]
public string RevolutPayPayments { get; set; }

/// <summary>
/// The status of the SEPA Direct Debits payments capability of the account, or whether the
/// account can directly process SEPA Direct Debits charges.
Expand Down
32 changes: 32 additions & 0 deletions src/Stripe.net/Entities/Applications/Application.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// File generated from our OpenAPI spec
namespace Stripe
{
using Newtonsoft.Json;

public class Application : StripeEntity<Application>, IHasId, IHasObject
{
/// <summary>
/// Unique identifier for the object.
/// </summary>
[JsonProperty("id")]
public string Id { get; set; }

/// <summary>
/// String representing the object's type. Objects of the same type share the same value.
/// </summary>
[JsonProperty("object")]
public string Object { get; set; }

/// <summary>
/// Whether this object is deleted or not.
/// </summary>
[JsonProperty("deleted", NullValueHandling = NullValueHandling.Ignore)]
public bool? Deleted { get; set; }

/// <summary>
/// The name of the application.
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,12 @@ public IBalanceTransactionSource Source
/// <c>obligation_outbound</c>, <c>obligation_reversal_inbound</c>,
/// <c>obligation_reversal_outbound</c>, <c>obligation_payout</c>,
/// <c>obligation_payout_failure</c>, <c>payment</c>, <c>payment_failure_refund</c>,
/// <c>payment_refund</c>, <c>payment_reversal</c>, <c>payout</c>, <c>payout_cancel</c>,
/// <c>payout_failure</c>, <c>refund</c>, <c>refund_failure</c>, <c>reserve_transaction</c>,
/// <c>reserved_funds</c>, <c>stripe_fee</c>, <c>stripe_fx_fee</c>, <c>tax_fee</c>,
/// <c>topup</c>, <c>topup_reversal</c>, <c>transfer</c>, <c>transfer_cancel</c>,
/// <c>transfer_failure</c>, or <c>transfer_refund</c>. Learn more about <a
/// <c>payment_refund</c>, <c>payment_reversal</c>, <c>payment_unreconciled</c>,
/// <c>payout</c>, <c>payout_cancel</c>, <c>payout_failure</c>, <c>refund</c>,
/// <c>refund_failure</c>, <c>reserve_transaction</c>, <c>reserved_funds</c>,
/// <c>stripe_fee</c>, <c>stripe_fx_fee</c>, <c>tax_fee</c>, <c>topup</c>,
/// <c>topup_reversal</c>, <c>transfer</c>, <c>transfer_cancel</c>, <c>transfer_failure</c>,
/// or <c>transfer_refund</c>. Learn more about <a
/// href="https://stripe.com/docs/reports/balance-transaction-types">balance transaction
/// types and what they represent</a>. To classify transactions for accounting purposes,
/// consider <c>reporting_category</c> instead.
Expand All @@ -169,8 +170,8 @@ public IBalanceTransactionSource Source
/// <c>obligation_outbound</c>, <c>obligation_payout</c>, <c>obligation_payout_failure</c>,
/// <c>obligation_reversal_inbound</c>, <c>obligation_reversal_outbound</c>, <c>payment</c>,
/// <c>payment_failure_refund</c>, <c>payment_refund</c>, <c>payment_reversal</c>,
/// <c>payout</c>, <c>payout_cancel</c>, <c>payout_failure</c>, <c>refund</c>,
/// <c>refund_failure</c>, <c>reserve_transaction</c>, <c>reserved_funds</c>,
/// <c>payment_unreconciled</c>, <c>payout</c>, <c>payout_cancel</c>, <c>payout_failure</c>,
/// <c>refund</c>, <c>refund_failure</c>, <c>reserve_transaction</c>, <c>reserved_funds</c>,
/// <c>stripe_fee</c>, <c>stripe_fx_fee</c>, <c>tax_fee</c>, <c>topup</c>,
/// <c>topup_reversal</c>, <c>transfer</c>, <c>transfer_cancel</c>, <c>transfer_failure</c>,
/// or <c>transfer_refund</c>.
Expand Down
13 changes: 8 additions & 5 deletions src/Stripe.net/Entities/BankAccounts/BankAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ public Account Account
/// <summary>
/// A set of available payout methods for this bank account. Only values from this set
/// should be passed as the <c>method</c> when creating a payout.
/// One of: <c>instant</c>, or <c>standard</c>.
/// </summary>
[JsonProperty("available_payout_methods")]
public List<string> AvailablePayoutMethods { get; set; }
Expand Down Expand Up @@ -201,13 +202,15 @@ public Customer Customer
/// information to know (e.g., for smaller credit unions), and the validation is not always
/// run. If customer bank account verification has succeeded, the bank account status will
/// be <c>verified</c>. If the verification failed for any reason, such as microdeposit
/// failure, the status will be <c>verification_failed</c>. If a transfer sent to this bank
/// account fails, we'll set the status to <c>errored</c> and will not continue to send
/// transfers until the bank details are updated.
/// failure, the status will be <c>verification_failed</c>. If a payout sent to this bank
/// account fails, we'll set the status to <c>errored</c> and will not continue to send <a
/// href="https://stripe.com/docs/payouts#payout-schedule">scheduled payouts</a> until the
/// bank details are updated.
///
/// For external accounts, possible values are <c>new</c>, <c>errored</c> and
/// <c>verification_failed</c>. If a transfer fails, the status is set to <c>errored</c> and
/// transfers are stopped until account details are updated. In India, if we can't <a
/// <c>verification_failed</c>. If a payouts fails, the status is set to <c>errored</c> and
/// scheduled payouts are stopped until account details are updated. In India, if we can't
/// <a
/// href="https://support.stripe.com/questions/bank-account-ownership-verification">verify
/// the owner of the bank account</a>, we'll set the status to <c>verification_failed</c>.
/// Other validations aren't run against external accounts because they're only used for
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ public class ConfigurationFeaturesCustomerUpdate : StripeEntity<ConfigurationFea
/// <summary>
/// The types of customer updates that are supported. When empty, customers are not
/// updateable.
/// One of: <c>address</c>, <c>email</c>, <c>name</c>, <c>phone</c>, <c>shipping</c>, or
/// <c>tax_id</c>.
/// </summary>
[JsonProperty("allowed_updates")]
public List<string> AllowedUpdates { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ public class ConfigurationFeaturesSubscriptionCancelCancellationReason : StripeE

/// <summary>
/// Which cancellation reasons will be given as options to the customer.
/// One of: <c>customer_service</c>, <c>low_quality</c>, <c>missing_features</c>,
/// <c>other</c>, <c>switched_service</c>, <c>too_complex</c>, <c>too_expensive</c>, or
/// <c>unused</c>.
/// </summary>
[JsonProperty("options")]
public List<string> Options { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public class ConfigurationFeaturesSubscriptionUpdate : StripeEntity<Configuratio
/// <summary>
/// The types of subscription updates that are supported for items listed in the
/// <c>products</c> attribute. When empty, subscriptions are not updateable.
/// One of: <c>price</c>, <c>promotion_code</c>, or <c>quantity</c>.
/// </summary>
[JsonProperty("default_allowed_updates")]
public List<string> DefaultAllowedUpdates { get; set; }
Expand All @@ -20,7 +21,7 @@ public class ConfigurationFeaturesSubscriptionUpdate : StripeEntity<Configuratio
public bool Enabled { get; set; }

/// <summary>
/// The list of products that support subscription updates.
/// The list of up to 10 products that support subscription updates.
/// </summary>
[JsonProperty("products")]
public List<ConfigurationFeaturesSubscriptionUpdateProduct> Products { get; set; }
Expand Down
8 changes: 5 additions & 3 deletions src/Stripe.net/Entities/Cards/Card.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public Account Account
/// <summary>
/// A set of available payout methods for this card. Only values from this set should be
/// passed as the <c>method</c> when creating a payout.
/// One of: <c>instant</c>, or <c>standard</c>.
/// </summary>
[JsonProperty("available_payout_methods")]
public List<string> AvailablePayoutMethods { get; set; }
Expand Down Expand Up @@ -275,9 +276,10 @@ public Customer Customer
public string Name { get; set; }

/// <summary>
/// For external accounts, possible values are <c>new</c> and <c>errored</c>. If a transfer
/// fails, the status is set to <c>errored</c> and transfers are stopped until account
/// details are updated.
/// For external accounts that are cards, possible values are <c>new</c> and <c>errored</c>.
/// If a payout fails, the status is set to <c>errored</c> and <a
/// href="https://stripe.com/docs/payouts#payout-schedule">scheduled payouts</a> are stopped
/// until account details are updated.
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
Expand Down
3 changes: 3 additions & 0 deletions src/Stripe.net/Entities/Charges/ChargePaymentMethodDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ public class ChargePaymentMethodDetails : StripeEntity<ChargePaymentMethodDetail
[JsonProperty("promptpay")]
public ChargePaymentMethodDetailsPromptpay Promptpay { get; set; }

[JsonProperty("revolut_pay")]
public ChargePaymentMethodDetailsRevolutPay RevolutPay { get; set; }

[JsonProperty("sepa_debit")]
public ChargePaymentMethodDetailsSepaDebit SepaDebit { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ public class ChargePaymentMethodDetailsPaypalSellerProtection : StripeEntity<Cha
{
/// <summary>
/// An array of conditions that are covered for the transaction, if applicable.
/// One of: <c>fraudulent</c>, or <c>product_not_received</c>.
/// </summary>
[JsonProperty("dispute_categories")]
public List<string> DisputeCategories { get; set; }
Expand Down
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>
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ public class SessionPaymentMethodOptions : StripeEntity<SessionPaymentMethodOpti
[JsonProperty("pix")]
public SessionPaymentMethodOptionsPix Pix { get; set; }

[JsonProperty("revolut_pay")]
public SessionPaymentMethodOptionsRevolutPay RevolutPay { get; set; }

[JsonProperty("sepa_debit")]
public SessionPaymentMethodOptionsSepaDebit SepaDebit { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public class SessionPaymentMethodOptionsAcssDebitMandateOptions : StripeEntity<S
/// <summary>
/// List of Stripe products where this mandate can be selected automatically. Returned when
/// the Session is in <c>setup</c> mode.
/// One of: <c>invoice</c>, or <c>subscription</c>.
/// </summary>
[JsonProperty("default_for")]
public List<string> DefaultFor { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ public class SessionPaymentMethodOptionsCustomerBalanceBankTransfer : StripeEnti
/// not specified, all valid types will be returned.
///
/// Permitted values include: <c>sort_code</c>, <c>zengin</c>, <c>iban</c>, or <c>spei</c>.
/// One of: <c>aba</c>, <c>iban</c>, <c>sepa</c>, <c>sort_code</c>, <c>spei</c>,
/// <c>swift</c>, or <c>zengin</c>.
/// </summary>
[JsonProperty("requested_address_types")]
public List<string> RequestedAddressTypes { get; set; }
Expand Down
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>
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,16 @@ public class SessionPaymentMethodOptionsUsBankAccountFinancialConnections : Stri
/// <summary>
/// The list of permissions to request. The <c>payment_method</c> permission must be
/// included.
/// One of: <c>balances</c>, <c>ownership</c>, <c>payment_method</c>, or
/// <c>transactions</c>.
/// </summary>
[JsonProperty("permissions")]
public List<string> Permissions { get; set; }

/// <summary>
/// Data features requested to be retrieved upon account creation.
/// One of: <c>balances</c>, <c>inferred_balances</c>, <c>ownership</c>, or
/// <c>transactions</c>.
/// </summary>
[JsonProperty("prefetch")]
public List<string> Prefetch { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,36 @@ public class SessionShippingAddressCollection : StripeEntity<SessionShippingAddr
/// An array of two-letter ISO country codes representing which countries Checkout should
/// provide as options for shipping locations. Unsupported country codes: <c>AS, CX, CC, CU,
/// HM, IR, KP, MH, FM, NF, MP, PW, SD, SY, UM, VI</c>.
/// One of: <c>AC</c>, <c>AD</c>, <c>AE</c>, <c>AF</c>, <c>AG</c>, <c>AI</c>, <c>AL</c>,
/// <c>AM</c>, <c>AO</c>, <c>AQ</c>, <c>AR</c>, <c>AT</c>, <c>AU</c>, <c>AW</c>, <c>AX</c>,
/// <c>AZ</c>, <c>BA</c>, <c>BB</c>, <c>BD</c>, <c>BE</c>, <c>BF</c>, <c>BG</c>, <c>BH</c>,
/// <c>BI</c>, <c>BJ</c>, <c>BL</c>, <c>BM</c>, <c>BN</c>, <c>BO</c>, <c>BQ</c>, <c>BR</c>,
/// <c>BS</c>, <c>BT</c>, <c>BV</c>, <c>BW</c>, <c>BY</c>, <c>BZ</c>, <c>CA</c>, <c>CD</c>,
/// <c>CF</c>, <c>CG</c>, <c>CH</c>, <c>CI</c>, <c>CK</c>, <c>CL</c>, <c>CM</c>, <c>CN</c>,
/// <c>CO</c>, <c>CR</c>, <c>CV</c>, <c>CW</c>, <c>CY</c>, <c>CZ</c>, <c>DE</c>, <c>DJ</c>,
/// <c>DK</c>, <c>DM</c>, <c>DO</c>, <c>DZ</c>, <c>EC</c>, <c>EE</c>, <c>EG</c>, <c>EH</c>,
/// <c>ER</c>, <c>ES</c>, <c>ET</c>, <c>FI</c>, <c>FJ</c>, <c>FK</c>, <c>FO</c>, <c>FR</c>,
/// <c>GA</c>, <c>GB</c>, <c>GD</c>, <c>GE</c>, <c>GF</c>, <c>GG</c>, <c>GH</c>, <c>GI</c>,
/// <c>GL</c>, <c>GM</c>, <c>GN</c>, <c>GP</c>, <c>GQ</c>, <c>GR</c>, <c>GS</c>, <c>GT</c>,
/// <c>GU</c>, <c>GW</c>, <c>GY</c>, <c>HK</c>, <c>HN</c>, <c>HR</c>, <c>HT</c>, <c>HU</c>,
/// <c>ID</c>, <c>IE</c>, <c>IL</c>, <c>IM</c>, <c>IN</c>, <c>IO</c>, <c>IQ</c>, <c>IS</c>,
/// <c>IT</c>, <c>JE</c>, <c>JM</c>, <c>JO</c>, <c>JP</c>, <c>KE</c>, <c>KG</c>, <c>KH</c>,
/// <c>KI</c>, <c>KM</c>, <c>KN</c>, <c>KR</c>, <c>KW</c>, <c>KY</c>, <c>KZ</c>, <c>LA</c>,
/// <c>LB</c>, <c>LC</c>, <c>LI</c>, <c>LK</c>, <c>LR</c>, <c>LS</c>, <c>LT</c>, <c>LU</c>,
/// <c>LV</c>, <c>LY</c>, <c>MA</c>, <c>MC</c>, <c>MD</c>, <c>ME</c>, <c>MF</c>, <c>MG</c>,
/// <c>MK</c>, <c>ML</c>, <c>MM</c>, <c>MN</c>, <c>MO</c>, <c>MQ</c>, <c>MR</c>, <c>MS</c>,
/// <c>MT</c>, <c>MU</c>, <c>MV</c>, <c>MW</c>, <c>MX</c>, <c>MY</c>, <c>MZ</c>, <c>NA</c>,
/// <c>NC</c>, <c>NE</c>, <c>NG</c>, <c>NI</c>, <c>NL</c>, <c>NO</c>, <c>NP</c>, <c>NR</c>,
/// <c>NU</c>, <c>NZ</c>, <c>OM</c>, <c>PA</c>, <c>PE</c>, <c>PF</c>, <c>PG</c>, <c>PH</c>,
/// <c>PK</c>, <c>PL</c>, <c>PM</c>, <c>PN</c>, <c>PR</c>, <c>PS</c>, <c>PT</c>, <c>PY</c>,
/// <c>QA</c>, <c>RE</c>, <c>RO</c>, <c>RS</c>, <c>RU</c>, <c>RW</c>, <c>SA</c>, <c>SB</c>,
/// <c>SC</c>, <c>SE</c>, <c>SG</c>, <c>SH</c>, <c>SI</c>, <c>SJ</c>, <c>SK</c>, <c>SL</c>,
/// <c>SM</c>, <c>SN</c>, <c>SO</c>, <c>SR</c>, <c>SS</c>, <c>ST</c>, <c>SV</c>, <c>SX</c>,
/// <c>SZ</c>, <c>TA</c>, <c>TC</c>, <c>TD</c>, <c>TF</c>, <c>TG</c>, <c>TH</c>, <c>TJ</c>,
/// <c>TK</c>, <c>TL</c>, <c>TM</c>, <c>TN</c>, <c>TO</c>, <c>TR</c>, <c>TT</c>, <c>TV</c>,
/// <c>TW</c>, <c>TZ</c>, <c>UA</c>, <c>UG</c>, <c>US</c>, <c>UY</c>, <c>UZ</c>, <c>VA</c>,
/// <c>VC</c>, <c>VE</c>, <c>VG</c>, <c>VN</c>, <c>VU</c>, <c>WF</c>, <c>WS</c>, <c>XK</c>,
/// <c>YE</c>, <c>YT</c>, <c>ZA</c>, <c>ZM</c>, <c>ZW</c>, or <c>ZZ</c>.
/// </summary>
[JsonProperty("allowed_countries")]
public List<string> AllowedCountries { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ public class ConfirmationTokenPaymentMethodPreview : StripeEntity<ConfirmationTo
[JsonProperty("promptpay")]
public ConfirmationTokenPaymentMethodPreviewPromptpay Promptpay { get; set; }

[JsonProperty("revolut_pay")]
public ConfirmationTokenPaymentMethodPreviewRevolutPay RevolutPay { get; set; }

[JsonProperty("sepa_debit")]
public ConfirmationTokenPaymentMethodPreviewSepaDebit SepaDebit { get; set; }

Expand All @@ -107,8 +110,8 @@ public class ConfirmationTokenPaymentMethodPreview : StripeEntity<ConfirmationTo
/// <c>card</c>, <c>card_present</c>, <c>cashapp</c>, <c>customer_balance</c>, <c>eps</c>,
/// <c>fpx</c>, <c>giropay</c>, <c>grabpay</c>, <c>ideal</c>, <c>interac_present</c>,
/// <c>klarna</c>, <c>konbini</c>, <c>link</c>, <c>oxxo</c>, <c>p24</c>, <c>paynow</c>,
/// <c>paypal</c>, <c>pix</c>, <c>promptpay</c>, <c>sepa_debit</c>, <c>sofort</c>,
/// <c>us_bank_account</c>, <c>wechat_pay</c>, or <c>zip</c>.
/// <c>paypal</c>, <c>pix</c>, <c>promptpay</c>, <c>revolut_pay</c>, <c>sepa_debit</c>,
/// <c>sofort</c>, <c>us_bank_account</c>, <c>wechat_pay</c>, or <c>zip</c>.
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
Expand Down
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>
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class ConfirmationTokenPaymentMethodPreviewUsBankAccountNetworks : Stripe

/// <summary>
/// All supported networks.
/// One of: <c>ach</c>, or <c>us_domestic_wire</c>.
/// </summary>
[JsonProperty("supported")]
public List<string> Supported { get; set; }
Expand Down
Loading
Loading