-
Notifications
You must be signed in to change notification settings - Fork 571
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
6108e92
commit bd96d05
Showing
7 changed files
with
60 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 @@ | ||
v1397 | ||
v1398 |
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/Disputes/DisputeEvidenceDetailsEnhancedEligibilityVisaCompliance.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 | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class DisputeEvidenceDetailsEnhancedEligibilityVisaCompliance : StripeEntity<DisputeEvidenceDetailsEnhancedEligibilityVisaCompliance> | ||
{ | ||
/// <summary> | ||
/// Visa Compelling Evidence 3.0 eligibility status. | ||
/// One of: <c>fee_acknowledged</c>, or <c>requires_fee_acknowledgement</c>. | ||
/// </summary> | ||
[JsonProperty("status")] | ||
public string Status { 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
16 changes: 16 additions & 0 deletions
16
src/Stripe.net/Entities/Disputes/DisputeEvidenceEnhancedEvidenceVisaCompliance.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 | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class DisputeEvidenceEnhancedEvidenceVisaCompliance : StripeEntity<DisputeEvidenceEnhancedEvidenceVisaCompliance> | ||
{ | ||
/// <summary> | ||
/// A field acknowledging the fee incurred when countering a Visa Compliance dispute. If | ||
/// this field is set to true, evidence can be submitted for the compliance dispute, and you | ||
/// may incur a $500 fee if the case is lost. | ||
/// </summary> | ||
[JsonProperty("fee_acknowledged")] | ||
public bool FeeAcknowledged { 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
16 changes: 16 additions & 0 deletions
16
src/Stripe.net/Services/Disputes/DisputeEvidenceEnhancedEvidenceVisaComplianceOptions.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 | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class DisputeEvidenceEnhancedEvidenceVisaComplianceOptions : INestedOptions | ||
{ | ||
/// <summary> | ||
/// A field acknowledging the fee incurred when countering a Visa Compliance dispute. If | ||
/// this field is set to true, evidence can be submitted for the compliance dispute, and you | ||
/// may incur a $500 fee if the case is lost. | ||
/// </summary> | ||
[JsonProperty("fee_acknowledged")] | ||
public bool? FeeAcknowledged { get; set; } | ||
} | ||
} |