Skip to content
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
25 changes: 0 additions & 25 deletions CONTRIBUTING.md

This file was deleted.

2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1454
v1460
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,8 @@ public class ChargePaymentMethodDetailsCard : StripeEntity<ChargePaymentMethodDe
/// <summary>
/// This is used by the financial networks to identify a transaction. Visa calls this the
/// Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the
/// Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network
/// Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent
/// the date (MM/DD). This field will be available for successful Visa, Mastercard, or
/// American Express transactions and always null for other card brands.
/// Acquirer Reference Data. This value will be present if it is returned by the financial
/// network in the authorization response, and null otherwise.
/// </summary>
[JsonProperty("network_transaction_id")]
#if NET6_0_OR_GREATER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,8 @@ public class ChargePaymentMethodDetailsCardPresent : StripeEntity<ChargePaymentM
/// <summary>
/// This is used by the financial networks to identify a transaction. Visa calls this the
/// Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the
/// Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network
/// Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent
/// the date (MM/DD). This field will be available for successful Visa, Mastercard, or
/// American Express transactions and always null for other card brands.
/// Acquirer Reference Data. This value will be present if it is returned by the financial
/// network in the authorization response, and null otherwise.
/// </summary>
[JsonProperty("network_transaction_id")]
#if NET6_0_OR_GREATER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,8 @@ public class ChargePaymentMethodDetailsInteracPresent : StripeEntity<ChargePayme
/// <summary>
/// This is used by the financial networks to identify a transaction. Visa calls this the
/// Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the
/// Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network
/// Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent
/// the date (MM/DD). This field will be available for successful Visa, Mastercard, or
/// American Express transactions and always null for other card brands.
/// Acquirer Reference Data. This value will be present if it is returned by the financial
/// network in the authorization response, and null otherwise.
/// </summary>
[JsonProperty("network_transaction_id")]
#if NET6_0_OR_GREATER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,8 @@ public class ConfirmationTokenPaymentMethodPreviewCardGeneratedFromPaymentMethod
/// <summary>
/// This is used by the financial networks to identify a transaction. Visa calls this the
/// Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the
/// Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network
/// Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent
/// the date (MM/DD). This field will be available for successful Visa, Mastercard, or
/// American Express transactions and always null for other card brands.
/// Acquirer Reference Data. This value will be present if it is returned by the financial
/// network in the authorization response, and null otherwise.
/// </summary>
[JsonProperty("network_transaction_id")]
#if NET6_0_OR_GREATER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,8 @@ public class PaymentMethodCardGeneratedFromPaymentMethodDetailsCardPresent : Str
/// <summary>
/// This is used by the financial networks to identify a transaction. Visa calls this the
/// Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the
/// Acquirer Reference Data. The first three digits of the Trace ID is the Financial Network
/// Code, the next 6 digits is the Banknet Reference Number, and the last 4 digits represent
/// the date (MM/DD). This field will be available for successful Visa, Mastercard, or
/// American Express transactions and always null for other card brands.
/// Acquirer Reference Data. This value will be present if it is returned by the financial
/// network in the authorization response, and null otherwise.
/// </summary>
[JsonProperty("network_transaction_id")]
#if NET6_0_OR_GREATER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,5 @@ public PaymentIntent PaymentIntent
[STJS.JsonPropertyName("payment_method")]
#endif
public PaymentMethod PaymentMethod { get; set; }

/// <summary>
/// This field will be deprecated. Please use <c>account</c> instead.
/// </summary>
[JsonProperty("stripe_account")]
#if NET6_0_OR_GREATER
[STJS.JsonPropertyName("stripe_account")]
#endif
public string StripeAccount { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,5 @@ public PaymentIntent PaymentIntent
#endif
internal ExpandableField<PaymentIntent> InternalPaymentIntent { get; set; }
#endregion

/// <summary>
/// This field will be deprecated. Please use <c>account</c> instead.
/// </summary>
[JsonProperty("stripe_account")]
#if NET6_0_OR_GREATER
[STJS.JsonPropertyName("stripe_account")]
#endif
public string StripeAccount { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,5 @@ public PaymentIntent PaymentIntent
[STJS.JsonPropertyName("process_config")]
#endif
public ReaderActionProcessPaymentIntentProcessConfig ProcessConfig { get; set; }

/// <summary>
/// This field will be deprecated. Please use <c>account</c> instead.
/// </summary>
[JsonProperty("stripe_account")]
#if NET6_0_OR_GREATER
[STJS.JsonPropertyName("stripe_account")]
#endif
public string StripeAccount { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -208,14 +208,5 @@ public Refund Refund
[STJS.JsonPropertyName("reverse_transfer")]
#endif
public bool ReverseTransfer { get; set; }

/// <summary>
/// This field will be deprecated. Please use <c>account</c> instead.
/// </summary>
[JsonProperty("stripe_account")]
#if NET6_0_OR_GREATER
[STJS.JsonPropertyName("stripe_account")]
#endif
public string StripeAccount { get; set; }
}
}