Skip to content

Commit

Permalink
Update generated code for v1398
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Dec 9, 2024
1 parent 6108e92 commit bd96d05
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1397
v1398
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@ public class DisputeEvidenceDetailsEnhancedEligibility : StripeEntity<DisputeEvi
{
[JsonProperty("visa_compelling_evidence_3")]
public DisputeEvidenceDetailsEnhancedEligibilityVisaCompellingEvidence3 VisaCompellingEvidence3 { get; set; }

[JsonProperty("visa_compliance")]
public DisputeEvidenceDetailsEnhancedEligibilityVisaCompliance VisaCompliance { get; set; }
}
}
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; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@ public class DisputeEvidenceEnhancedEvidence : StripeEntity<DisputeEvidenceEnhan
{
[JsonProperty("visa_compelling_evidence_3")]
public DisputeEvidenceEnhancedEvidenceVisaCompellingEvidence3 VisaCompellingEvidence3 { get; set; }

[JsonProperty("visa_compliance")]
public DisputeEvidenceEnhancedEvidenceVisaCompliance VisaCompliance { get; set; }
}
}
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; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,11 @@ public class DisputeEvidenceEnhancedEvidenceOptions : INestedOptions
/// </summary>
[JsonProperty("visa_compelling_evidence_3")]
public DisputeEvidenceEnhancedEvidenceVisaCompellingEvidence3Options VisaCompellingEvidence3 { get; set; }

/// <summary>
/// Evidence provided for Visa Compliance evidence submission.
/// </summary>
[JsonProperty("visa_compliance")]
public DisputeEvidenceEnhancedEvidenceVisaComplianceOptions VisaCompliance { get; set; }
}
}
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; }
}
}

0 comments on commit bd96d05

Please sign in to comment.