Skip to content

Commit

Permalink
Update generated code for v660
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Nov 15, 2023
1 parent ea49857 commit 9738cf0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v658
v660
6 changes: 6 additions & 0 deletions src/Stripe.net/Entities/Issuing/Transactions/Transaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,12 @@ public Dispute Dispute
[JsonProperty("metadata")]
public Dictionary<string, string> Metadata { get; set; }

/// <summary>
/// Details about the transaction, such as processing dates, set by the card network.
/// </summary>
[JsonProperty("network_data")]
public TransactionNetworkData NetworkData { get; set; }

/// <summary>
/// Additional purchase information that is optionally provided by the merchant.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// File generated from our OpenAPI spec
namespace Stripe.Issuing
{
using Newtonsoft.Json;

public class TransactionNetworkData : StripeEntity<TransactionNetworkData>
{
/// <summary>
/// The date the transaction was processed by the card network. This can be different from
/// the date the seller recorded the transaction depending on when the acquirer submits the
/// transaction to the network.
/// </summary>
[JsonProperty("processing_date")]
public string ProcessingDate { get; set; }
}
}

0 comments on commit 9738cf0

Please sign in to comment.