-
Notifications
You must be signed in to change notification settings - Fork 572
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea49857
commit 9738cf0
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v658 | ||
v660 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/Stripe.net/Entities/Issuing/Transactions/TransactionNetworkData.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } | ||
} | ||
} |