Skip to content

Commit

Permalink
Update generated code for v1401
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Dec 10, 2024
1 parent 35621d6 commit 6476581
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1400
v1401
11 changes: 11 additions & 0 deletions src/Stripe.net/Entities/Charges/ChargePaymentMethodDetailsCard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,17 @@ public class ChargePaymentMethodDetailsCard : StripeEntity<ChargePaymentMethodDe
[JsonProperty("network_token")]
public ChargePaymentMethodDetailsCardNetworkToken NetworkToken { get; set; }

/// <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.
/// </summary>
[JsonProperty("network_transaction_id")]
public string NetworkTransactionId { get; set; }

[JsonProperty("overcapture")]
public ChargePaymentMethodDetailsCardOvercapture Overcapture { get; set; }

Expand Down

0 comments on commit 6476581

Please sign in to comment.