-
Notifications
You must be signed in to change notification settings - Fork 569
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
51ff7d4
commit 5b1fbb9
Showing
6 changed files
with
46 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 @@ | ||
v595 | ||
v596 |
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
15 changes: 15 additions & 0 deletions
15
src/Stripe.net/Entities/Terminal/Configurations/ConfigurationOffline.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,15 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe.Terminal | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class ConfigurationOffline : StripeEntity<ConfigurationOffline> | ||
{ | ||
/// <summary> | ||
/// Determines whether to allow transactions to be collected while reader is offline. | ||
/// Defaults to false. | ||
/// </summary> | ||
[JsonProperty("enabled")] | ||
public bool? Enabled { get; set; } | ||
} | ||
} |
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
15 changes: 15 additions & 0 deletions
15
src/Stripe.net/Services/Terminal/Configurations/ConfigurationOfflineOptions.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,15 @@ | ||
// File generated from our OpenAPI spec | ||
namespace Stripe.Terminal | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class ConfigurationOfflineOptions : INestedOptions | ||
{ | ||
/// <summary> | ||
/// Determines whether to allow transactions to be collected while reader is offline. | ||
/// Defaults to false. | ||
/// </summary> | ||
[JsonProperty("enabled")] | ||
public bool? Enabled { get; set; } | ||
} | ||
} |
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