Skip to content

Commit

Permalink
Update generated code (#3025)
Browse files Browse the repository at this point in the history
* Update generated code for v1328

* Update generated code for v1332

* Update generated code for v1341

* Update generated code for v1347

---------

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
Co-authored-by: Ramya Rao <[email protected]>
  • Loading branch information
stripe-openapi[bot] and ramya-stripe authored Nov 20, 2024
1 parent 55ac148 commit 5bd34f9
Show file tree
Hide file tree
Showing 109 changed files with 776 additions and 290 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1319
v1347
2 changes: 1 addition & 1 deletion src/Stripe.net/Constants/ApiVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ namespace Stripe
{
internal class ApiVersion
{
public const string Current = "2024-10-28.acacia";
public const string Current = "2024-11-20.acacia";
}
}
2 changes: 2 additions & 0 deletions src/Stripe.net/Constants/FilePurpose.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ public static class FilePurpose

public const string FinanceReportRun = "finance_report_run";

public const string FinancialAccountStatement = "financial_account_statement";

public const string IdentityDocument = "identity_document";

public const string IdentityDocumentDownloadable = "identity_document_downloadable";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ public class AccountFutureRequirements : StripeEntity<AccountFutureRequirements>
public List<string> CurrentlyDue { get; set; }

/// <summary>
/// This is typed as a string for consistency with <c>requirements.disabled_reason</c>.
/// This is typed as an enum for consistency with <c>requirements.disabled_reason</c>.
/// One of: <c>action_required.requested_capabilities</c>, <c>listed</c>, <c>other</c>,
/// <c>platform_paused</c>, <c>rejected.fraud</c>, <c>rejected.incomplete_verification</c>,
/// <c>rejected.listed</c>, <c>rejected.other</c>, <c>rejected.platform_fraud</c>,
/// <c>rejected.platform_other</c>, <c>rejected.platform_terms_of_service</c>,
/// <c>rejected.terms_of_service</c>, <c>requirements.past_due</c>,
/// <c>requirements.pending_verification</c>, or <c>under_review</c>.
/// </summary>
[JsonProperty("disabled_reason")]
public string DisabledReason { get; set; }
Expand Down
12 changes: 7 additions & 5 deletions src/Stripe.net/Entities/Accounts/AccountRequirements.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,15 @@ public class AccountRequirements : StripeEntity<AccountRequirements>
public List<string> CurrentlyDue { get; set; }

/// <summary>
/// If the account is disabled, this string describes why. <a
/// If the account is disabled, this enum describes why. <a
/// href="https://stripe.com/docs/connect/handling-api-verification">Learn more about
/// handling verification issues</a>. Can be <c>action_required.requested_capabilities</c>,
/// <c>requirements.past_due</c>, <c>requirements.pending_verification</c>, <c>listed</c>,
/// handling verification issues</a>.
/// One of: <c>action_required.requested_capabilities</c>, <c>listed</c>, <c>other</c>,
/// <c>platform_paused</c>, <c>rejected.fraud</c>, <c>rejected.incomplete_verification</c>,
/// <c>rejected.listed</c>, <c>rejected.other</c>, <c>rejected.terms_of_service</c>,
/// <c>under_review</c>, or <c>other</c>.
/// <c>rejected.listed</c>, <c>rejected.other</c>, <c>rejected.platform_fraud</c>,
/// <c>rejected.platform_other</c>, <c>rejected.platform_terms_of_service</c>,
/// <c>rejected.terms_of_service</c>, <c>requirements.past_due</c>,
/// <c>requirements.pending_verification</c>, or <c>under_review</c>.
/// </summary>
[JsonProperty("disabled_reason")]
public string DisabledReason { get; set; }
Expand Down
17 changes: 8 additions & 9 deletions src/Stripe.net/Entities/Billing/CreditGrants/CreditGrant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Stripe.Billing
///
/// Related guide: <a
/// href="https://docs.stripe.com/billing/subscriptions/usage-based/billing-credits">Billing
/// credits</a> end.
/// credits</a>.
/// </summary>
public class CreditGrant : StripeEntity<CreditGrant>, IHasId, IHasMetadata, IHasObject
{
Expand All @@ -35,8 +35,8 @@ public class CreditGrant : StripeEntity<CreditGrant>, IHasId, IHasMetadata, IHas
public CreditGrantApplicabilityConfig ApplicabilityConfig { get; set; }

/// <summary>
/// The category of this credit grant. This is for tracking purposes and will not be
/// displayed to the customer.
/// The category of this credit grant. This is for tracking purposes and isn't displayed to
/// the customer.
/// One of: <c>paid</c>, or <c>promotional</c>.
/// </summary>
[JsonProperty("category")]
Expand All @@ -53,7 +53,7 @@ public class CreditGrant : StripeEntity<CreditGrant>, IHasId, IHasMetadata, IHas

/// <summary>
/// (ID of the Customer)
/// ID of the customer to whom the billing credits are granted.
/// ID of the customer receiving the billing credits.
/// </summary>
[JsonIgnore]
public string CustomerId
Expand All @@ -64,7 +64,7 @@ public string CustomerId

/// <summary>
/// (Expanded)
/// ID of the customer to whom the billing credits are granted.
/// ID of the customer receiving the billing credits.
///
/// For more information, see the <a href="https://stripe.com/docs/expand">expand documentation</a>.
/// </summary>
Expand All @@ -81,16 +81,15 @@ public Customer Customer
#endregion

/// <summary>
/// The time when the billing credits become effective i.e when they are eligible to be
/// used.
/// The time when the billing credits become effective—when they're eligible for use.
/// </summary>
[JsonProperty("effective_at")]
[JsonConverter(typeof(UnixDateTimeConverter))]
public DateTime? EffectiveAt { get; set; }

/// <summary>
/// The time when the billing credits will expire. If not present, the billing credits will
/// never expire.
/// The time when the billing credits expire. If not present, the billing credits don't
/// expire.
/// </summary>
[JsonProperty("expires_at")]
[JsonConverter(typeof(UnixDateTimeConverter))]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Stripe.Billing
public class CreditGrantApplicabilityConfigScope : StripeEntity<CreditGrantApplicabilityConfigScope>
{
/// <summary>
/// The price type to which credit grants can apply to. We currently only support
/// The price type for which credit grants can apply. We currently only support the
/// <c>metered</c> price type. This refers to prices that have a <a
/// href="https://docs.stripe.com/api/billing/meter">Billing Meter</a> attached to them.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public class ChargePaymentMethodDetailsCard : StripeEntity<ChargePaymentMethodDe

/// <summary>
/// Card brand. Can be <c>amex</c>, <c>diners</c>, <c>discover</c>, <c>eftpos_au</c>,
/// <c>jcb</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or <c>unknown</c>.
/// <c>jcb</c>, <c>link</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or
/// <c>unknown</c>.
/// </summary>
[JsonProperty("brand")]
public string Brand { get; set; }
Expand Down Expand Up @@ -138,8 +139,8 @@ public class ChargePaymentMethodDetailsCard : StripeEntity<ChargePaymentMethodDe
/// <summary>
/// Identifies which network this charge was processed on. Can be <c>amex</c>,
/// <c>cartes_bancaires</c>, <c>diners</c>, <c>discover</c>, <c>eftpos_au</c>,
/// <c>interac</c>, <c>jcb</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or
/// <c>unknown</c>.
/// <c>interac</c>, <c>jcb</c>, <c>link</c>, <c>mastercard</c>, <c>unionpay</c>,
/// <c>visa</c>, or <c>unknown</c>.
/// </summary>
[JsonProperty("network")]
public string Network { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public class ChargePaymentMethodDetailsCardPresent : StripeEntity<ChargePaymentM

/// <summary>
/// Card brand. Can be <c>amex</c>, <c>diners</c>, <c>discover</c>, <c>eftpos_au</c>,
/// <c>jcb</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or <c>unknown</c>.
/// <c>jcb</c>, <c>link</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or
/// <c>unknown</c>.
/// </summary>
[JsonProperty("brand")]
public string Brand { get; set; }
Expand Down Expand Up @@ -137,8 +138,8 @@ public class ChargePaymentMethodDetailsCardPresent : StripeEntity<ChargePaymentM
/// <summary>
/// Identifies which network this charge was processed on. Can be <c>amex</c>,
/// <c>cartes_bancaires</c>, <c>diners</c>, <c>discover</c>, <c>eftpos_au</c>,
/// <c>interac</c>, <c>jcb</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or
/// <c>unknown</c>.
/// <c>interac</c>, <c>jcb</c>, <c>link</c>, <c>mastercard</c>, <c>unionpay</c>,
/// <c>visa</c>, or <c>unknown</c>.
/// </summary>
[JsonProperty("network")]
public string Network { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public class ChargePaymentMethodDetailsInteracPresent : StripeEntity<ChargePayme
/// <summary>
/// Identifies which network this charge was processed on. Can be <c>amex</c>,
/// <c>cartes_bancaires</c>, <c>diners</c>, <c>discover</c>, <c>eftpos_au</c>,
/// <c>interac</c>, <c>jcb</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or
/// <c>unknown</c>.
/// <c>interac</c>, <c>jcb</c>, <c>link</c>, <c>mastercard</c>, <c>unionpay</c>,
/// <c>visa</c>, or <c>unknown</c>.
/// </summary>
[JsonProperty("network")]
public string Network { get; set; }
Expand Down
9 changes: 8 additions & 1 deletion src/Stripe.net/Entities/Checkout/Sessions/Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ public class Session : StripeEntity<Session>, IHasId, IHasMetadata, IHasObject
[JsonProperty("object")]
public string Object { get; set; }

/// <summary>
/// Settings for price localization with <a
/// href="https://docs.stripe.com/payments/checkout/adaptive-pricing">Adaptive Pricing</a>.
/// </summary>
[JsonProperty("adaptive_pricing")]
public SessionAdaptivePricing AdaptivePricing { get; set; }

/// <summary>
/// When set, provides configuration for actions to take if this Checkout Session expires.
/// </summary>
Expand Down Expand Up @@ -502,7 +509,7 @@ public SetupIntent SetupIntent
/// relevant text on the page, such as the submit button. <c>submit_type</c> can only be
/// specified on Checkout Sessions in <c>payment</c> mode. If blank or <c>auto</c>,
/// <c>pay</c> is used.
/// One of: <c>auto</c>, <c>book</c>, <c>donate</c>, or <c>pay</c>.
/// One of: <c>auto</c>, <c>book</c>, <c>donate</c>, <c>pay</c>, or <c>subscribe</c>.
/// </summary>
[JsonProperty("submit_type")]
public string SubmitType { get; set; }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// File generated from our OpenAPI spec
namespace Stripe.Checkout
{
using Newtonsoft.Json;

public class SessionAdaptivePricing : StripeEntity<SessionAdaptivePricing>
{
/// <summary>
/// Whether Adaptive Pricing is enabled.
/// </summary>
[JsonProperty("enabled")]
public bool Enabled { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ public class SessionCustomerDetailsTaxId : StripeEntity<SessionCustomerDetailsTa
/// <c>au_arn</c>, <c>in_gst</c>, <c>no_vat</c>, <c>no_voec</c>, <c>za_vat</c>,
/// <c>ch_vat</c>, <c>mx_rfc</c>, <c>sg_uen</c>, <c>ru_inn</c>, <c>ru_kpp</c>, <c>ca_bn</c>,
/// <c>hk_br</c>, <c>es_cif</c>, <c>tw_vat</c>, <c>th_vat</c>, <c>jp_cn</c>, <c>jp_rn</c>,
/// <c>jp_trn</c>, <c>li_uid</c>, <c>my_itn</c>, <c>us_ein</c>, <c>kr_brn</c>,
/// <c>ca_qst</c>, <c>ca_gst_hst</c>, <c>ca_pst_bc</c>, <c>ca_pst_mb</c>, <c>ca_pst_sk</c>,
/// <c>my_sst</c>, <c>sg_gst</c>, <c>ae_trn</c>, <c>cl_tin</c>, <c>sa_vat</c>,
/// <c>id_npwp</c>, <c>my_frp</c>, <c>il_vat</c>, <c>ge_vat</c>, <c>ua_vat</c>,
/// <c>is_vat</c>, <c>bg_uic</c>, <c>hu_tin</c>, <c>si_tin</c>, <c>ke_pin</c>,
/// <c>tr_tin</c>, <c>eg_tin</c>, <c>ph_tin</c>, <c>bh_vat</c>, <c>kz_bin</c>,
/// <c>ng_tin</c>, <c>om_vat</c>, <c>de_stn</c>, <c>ch_uid</c>, <c>tz_vat</c>,
/// <c>uz_vat</c>, <c>uz_tin</c>, <c>md_vat</c>, <c>ma_vat</c>, <c>by_tin</c>, or
/// <c>unknown</c>.
/// <c>jp_trn</c>, <c>li_uid</c>, <c>li_vat</c>, <c>my_itn</c>, <c>us_ein</c>,
/// <c>kr_brn</c>, <c>ca_qst</c>, <c>ca_gst_hst</c>, <c>ca_pst_bc</c>, <c>ca_pst_mb</c>,
/// <c>ca_pst_sk</c>, <c>my_sst</c>, <c>sg_gst</c>, <c>ae_trn</c>, <c>cl_tin</c>,
/// <c>sa_vat</c>, <c>id_npwp</c>, <c>my_frp</c>, <c>il_vat</c>, <c>ge_vat</c>,
/// <c>ua_vat</c>, <c>is_vat</c>, <c>bg_uic</c>, <c>hu_tin</c>, <c>si_tin</c>,
/// <c>ke_pin</c>, <c>tr_tin</c>, <c>eg_tin</c>, <c>ph_tin</c>, <c>bh_vat</c>,
/// <c>kz_bin</c>, <c>ng_tin</c>, <c>om_vat</c>, <c>de_stn</c>, <c>ch_uid</c>,
/// <c>tz_vat</c>, <c>uz_vat</c>, <c>uz_tin</c>, <c>md_vat</c>, <c>ma_vat</c>,
/// <c>by_tin</c>, or <c>unknown</c>.
/// One of: <c>ad_nrt</c>, <c>ae_trn</c>, <c>ar_cuit</c>, <c>au_abn</c>, <c>au_arn</c>,
/// <c>bg_uic</c>, <c>bh_vat</c>, <c>bo_tin</c>, <c>br_cnpj</c>, <c>br_cpf</c>,
/// <c>by_tin</c>, <c>ca_bn</c>, <c>ca_gst_hst</c>, <c>ca_pst_bc</c>, <c>ca_pst_mb</c>,
Expand All @@ -32,13 +32,14 @@ public class SessionCustomerDetailsTaxId : StripeEntity<SessionCustomerDetailsTa
/// <c>gb_vat</c>, <c>ge_vat</c>, <c>hk_br</c>, <c>hr_oib</c>, <c>hu_tin</c>,
/// <c>id_npwp</c>, <c>il_vat</c>, <c>in_gst</c>, <c>is_vat</c>, <c>jp_cn</c>, <c>jp_rn</c>,
/// <c>jp_trn</c>, <c>ke_pin</c>, <c>kr_brn</c>, <c>kz_bin</c>, <c>li_uid</c>,
/// <c>ma_vat</c>, <c>md_vat</c>, <c>mx_rfc</c>, <c>my_frp</c>, <c>my_itn</c>,
/// <c>my_sst</c>, <c>ng_tin</c>, <c>no_vat</c>, <c>no_voec</c>, <c>nz_gst</c>,
/// <c>om_vat</c>, <c>pe_ruc</c>, <c>ph_tin</c>, <c>ro_tin</c>, <c>rs_pib</c>,
/// <c>ru_inn</c>, <c>ru_kpp</c>, <c>sa_vat</c>, <c>sg_gst</c>, <c>sg_uen</c>,
/// <c>si_tin</c>, <c>sv_nit</c>, <c>th_vat</c>, <c>tr_tin</c>, <c>tw_vat</c>,
/// <c>tz_vat</c>, <c>ua_vat</c>, <c>unknown</c>, <c>us_ein</c>, <c>uy_ruc</c>,
/// <c>uz_tin</c>, <c>uz_vat</c>, <c>ve_rif</c>, <c>vn_tin</c>, or <c>za_vat</c>.
/// <c>li_vat</c>, <c>ma_vat</c>, <c>md_vat</c>, <c>mx_rfc</c>, <c>my_frp</c>,
/// <c>my_itn</c>, <c>my_sst</c>, <c>ng_tin</c>, <c>no_vat</c>, <c>no_voec</c>,
/// <c>nz_gst</c>, <c>om_vat</c>, <c>pe_ruc</c>, <c>ph_tin</c>, <c>ro_tin</c>,
/// <c>rs_pib</c>, <c>ru_inn</c>, <c>ru_kpp</c>, <c>sa_vat</c>, <c>sg_gst</c>,
/// <c>sg_uen</c>, <c>si_tin</c>, <c>sv_nit</c>, <c>th_vat</c>, <c>tr_tin</c>,
/// <c>tw_vat</c>, <c>tz_vat</c>, <c>ua_vat</c>, <c>unknown</c>, <c>us_ein</c>,
/// <c>uy_ruc</c>, <c>uz_tin</c>, <c>uz_vat</c>, <c>ve_rif</c>, <c>vn_tin</c>, or
/// <c>za_vat</c>.
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ namespace Stripe.Checkout

public class SessionPaymentMethodOptionsBacsDebit : StripeEntity<SessionPaymentMethodOptionsBacsDebit>
{
[JsonProperty("mandate_options")]
public SessionPaymentMethodOptionsBacsDebitMandateOptions MandateOptions { get; set; }

/// <summary>
/// Indicates that you intend to make future payments with this PaymentIntent's payment
/// method.
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 SessionPaymentMethodOptionsBacsDebitMandateOptions : StripeEntity<SessionPaymentMethodOptionsBacsDebitMandateOptions>
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,39 @@ public class SessionPaymentMethodOptionsCard : StripeEntity<SessionPaymentMethod
[JsonProperty("installments")]
public SessionPaymentMethodOptionsCardInstallments Installments { get; set; }

/// <summary>
/// Request ability to <a href="https://stripe.com/payments/extended-authorization">capture
/// beyond the standard authorization validity window</a> for this CheckoutSession.
/// One of: <c>if_available</c>, or <c>never</c>.
/// </summary>
[JsonProperty("request_extended_authorization")]
public string RequestExtendedAuthorization { get; set; }

/// <summary>
/// Request ability to <a
/// href="https://stripe.com/payments/incremental-authorization">increment the
/// authorization</a> for this CheckoutSession.
/// One of: <c>if_available</c>, or <c>never</c>.
/// </summary>
[JsonProperty("request_incremental_authorization")]
public string RequestIncrementalAuthorization { get; set; }

/// <summary>
/// Request ability to make <a href="https://stripe.com/payments/multicapture">multiple
/// captures</a> for this CheckoutSession.
/// One of: <c>if_available</c>, or <c>never</c>.
/// </summary>
[JsonProperty("request_multicapture")]
public string RequestMulticapture { get; set; }

/// <summary>
/// Request ability to <a href="https://stripe.com/payments/overcapture">overcapture</a> for
/// this CheckoutSession.
/// One of: <c>if_available</c>, or <c>never</c>.
/// </summary>
[JsonProperty("request_overcapture")]
public string RequestOvercapture { get; set; }

/// <summary>
/// We strongly recommend that you rely on our SCA Engine to automatically prompt your
/// customers for authentication based on risk level and <a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ namespace Stripe.Checkout

public class SessionPaymentMethodOptionsSepaDebit : StripeEntity<SessionPaymentMethodOptionsSepaDebit>
{
[JsonProperty("mandate_options")]
public SessionPaymentMethodOptionsSepaDebitMandateOptions MandateOptions { get; set; }

/// <summary>
/// Indicates that you intend to make future payments with this PaymentIntent's payment
/// method.
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 SessionPaymentMethodOptionsSepaDebitMandateOptions : StripeEntity<SessionPaymentMethodOptionsSepaDebitMandateOptions>
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ public class ConfirmationTokenPaymentMethodPreviewCard : StripeEntity<Confirmati
{
/// <summary>
/// Card brand. Can be <c>amex</c>, <c>diners</c>, <c>discover</c>, <c>eftpos_au</c>,
/// <c>jcb</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or <c>unknown</c>.
/// <c>jcb</c>, <c>link</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or
/// <c>unknown</c>.
/// </summary>
[JsonProperty("brand")]
public string Brand { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public class ConfirmationTokenPaymentMethodPreviewCardGeneratedFromPaymentMethod

/// <summary>
/// Card brand. Can be <c>amex</c>, <c>diners</c>, <c>discover</c>, <c>eftpos_au</c>,
/// <c>jcb</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or <c>unknown</c>.
/// <c>jcb</c>, <c>link</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or
/// <c>unknown</c>.
/// </summary>
[JsonProperty("brand")]
public string Brand { get; set; }
Expand Down Expand Up @@ -137,8 +138,8 @@ public class ConfirmationTokenPaymentMethodPreviewCardGeneratedFromPaymentMethod
/// <summary>
/// Identifies which network this charge was processed on. Can be <c>amex</c>,
/// <c>cartes_bancaires</c>, <c>diners</c>, <c>discover</c>, <c>eftpos_au</c>,
/// <c>interac</c>, <c>jcb</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or
/// <c>unknown</c>.
/// <c>interac</c>, <c>jcb</c>, <c>link</c>, <c>mastercard</c>, <c>unionpay</c>,
/// <c>visa</c>, or <c>unknown</c>.
/// </summary>
[JsonProperty("network")]
public string Network { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ public class ConfirmationTokenPaymentMethodPreviewCardPresent : StripeEntity<Con
{
/// <summary>
/// Card brand. Can be <c>amex</c>, <c>diners</c>, <c>discover</c>, <c>eftpos_au</c>,
/// <c>jcb</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or <c>unknown</c>.
/// <c>jcb</c>, <c>link</c>, <c>mastercard</c>, <c>unionpay</c>, <c>visa</c>, or
/// <c>unknown</c>.
/// </summary>
[JsonProperty("brand")]
public string Brand { get; set; }
Expand Down
Loading

0 comments on commit 5bd34f9

Please sign in to comment.