Skip to content

Commit

Permalink
Codegen for openapi 3723465 (#1074)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe committed Nov 19, 2020
1 parent 8a9c2d4 commit a1327ff
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 4 deletions.
2 changes: 2 additions & 0 deletions types/2020-08-27/PaymentMethods.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,11 +519,13 @@ declare module 'stripe' {
| 'bacs_debit'
| 'bancontact'
| 'card'
| 'card_present'
| 'eps'
| 'fpx'
| 'giropay'
| 'grabpay'
| 'ideal'
| 'interac_present'
| 'oxxo'
| 'p24'
| 'sepa_debit'
Expand Down
41 changes: 37 additions & 4 deletions types/2020-08-27/SetupIntents.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,13 @@ declare module 'stripe' {
type RequestThreeDSecure = 'any' | 'automatic' | 'challenge_only';
}

interface SepaDebit {}
interface SepaDebit {
mandate_options?: SepaDebit.MandateOptions;
}

namespace SepaDebit {
interface MandateOptions {}
}
}

type Status =
Expand Down Expand Up @@ -438,7 +444,16 @@ declare module 'stripe' {
type RequestThreeDSecure = 'any' | 'automatic';
}

interface SepaDebit {}
interface SepaDebit {
/**
* Additional fields for Mandate creation
*/
mandate_options?: SepaDebit.MandateOptions;
}

namespace SepaDebit {
interface MandateOptions {}
}
}

interface SingleUse {
Expand Down Expand Up @@ -539,7 +554,16 @@ declare module 'stripe' {
type RequestThreeDSecure = 'any' | 'automatic';
}

interface SepaDebit {}
interface SepaDebit {
/**
* Additional fields for Mandate creation
*/
mandate_options?: SepaDebit.MandateOptions;
}

namespace SepaDebit {
interface MandateOptions {}
}
}
}

Expand Down Expand Up @@ -731,7 +755,16 @@ declare module 'stripe' {
type RequestThreeDSecure = 'any' | 'automatic';
}

interface SepaDebit {}
interface SepaDebit {
/**
* Additional fields for Mandate creation
*/
mandate_options?: SepaDebit.MandateOptions;
}

namespace SepaDebit {
interface MandateOptions {}
}
}
}

Expand Down

0 comments on commit a1327ff

Please sign in to comment.