Skip to content

Commit f704056

Browse files
Update generated code for v1398
1 parent 03bd68f commit f704056

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

OPENAPI_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1397
1+
v1398

types/Disputes.d.ts

+22
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ declare module 'stripe' {
235235
namespace Evidence {
236236
interface EnhancedEvidence {
237237
visa_compelling_evidence_3?: EnhancedEvidence.VisaCompellingEvidence3;
238+
239+
visa_compliance?: EnhancedEvidence.VisaCompliance;
238240
}
239241

240242
namespace EnhancedEvidence {
@@ -341,6 +343,13 @@ declare module 'stripe' {
341343
shipping_address: Stripe.Address | null;
342344
}
343345
}
346+
347+
interface VisaCompliance {
348+
/**
349+
* 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.
350+
*/
351+
fee_acknowledged: boolean;
352+
}
344353
}
345354
}
346355

@@ -371,6 +380,8 @@ declare module 'stripe' {
371380
namespace EvidenceDetails {
372381
interface EnhancedEligibility {
373382
visa_compelling_evidence_3?: EnhancedEligibility.VisaCompellingEvidence3;
383+
384+
visa_compliance?: EnhancedEligibility.VisaCompliance;
374385
}
375386

376387
namespace EnhancedEligibility {
@@ -396,6 +407,17 @@ declare module 'stripe' {
396407

397408
type Status = 'not_qualified' | 'qualified' | 'requires_action';
398409
}
410+
411+
interface VisaCompliance {
412+
/**
413+
* Visa Compelling Evidence 3.0 eligibility status.
414+
*/
415+
status: VisaCompliance.Status;
416+
}
417+
418+
namespace VisaCompliance {
419+
type Status = 'fee_acknowledged' | 'requires_fee_acknowledgement';
420+
}
399421
}
400422
}
401423

types/DisputesResource.d.ts

+12
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,11 @@ declare module 'stripe' {
180180
* Evidence provided for Visa Compelling Evidence 3.0 evidence submission.
181181
*/
182182
visa_compelling_evidence_3?: EnhancedEvidence.VisaCompellingEvidence3;
183+
184+
/**
185+
* Evidence provided for Visa Compliance evidence submission.
186+
*/
187+
visa_compliance?: EnhancedEvidence.VisaCompliance;
183188
}
184189

185190
namespace EnhancedEvidence {
@@ -286,6 +291,13 @@ declare module 'stripe' {
286291
shipping_address?: Stripe.AddressParam;
287292
}
288293
}
294+
295+
interface VisaCompliance {
296+
/**
297+
* 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.
298+
*/
299+
fee_acknowledged?: boolean;
300+
}
289301
}
290302
}
291303
}

0 commit comments

Comments
 (0)