-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actually use all shared subresources from openapi
- Loading branch information
1 parent
8b8d0cc
commit 52136ae
Showing
171 changed files
with
4,312 additions
and
7,371 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,26 @@ | ||
declare namespace Stripe { | ||
/** | ||
* The AchCreditTransferData object. | ||
*/ | ||
interface AchCreditTransferData { | ||
/** | ||
* Customer data associated with the transfer. | ||
*/ | ||
customer_data?: string; | ||
|
||
/** | ||
* Bank account fingerprint associated with the transfer. | ||
*/ | ||
fingerprint?: string; | ||
|
||
/** | ||
* Last 4 digits of the account number associated with the transfer. | ||
*/ | ||
last4?: string; | ||
|
||
/** | ||
* Routing number associated with the transfer. | ||
*/ | ||
routing_number?: string; | ||
} | ||
} |
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,22 @@ | ||
declare namespace Stripe { | ||
/** | ||
* The AchCreditTransfer object. | ||
*/ | ||
interface AchCreditTransfer { | ||
account_number?: string | null; | ||
|
||
bank_name?: string | null; | ||
|
||
fingerprint?: string | null; | ||
|
||
refund_account_holder_name?: string | null; | ||
|
||
refund_account_holder_type?: string | null; | ||
|
||
refund_routing_number?: string | null; | ||
|
||
routing_number?: string | null; | ||
|
||
swift_code?: string | null; | ||
} | ||
} |
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,18 @@ | ||
declare namespace Stripe { | ||
/** | ||
* The AchDebit object. | ||
*/ | ||
interface AchDebit { | ||
bank_name?: string | null; | ||
|
||
country?: string | null; | ||
|
||
fingerprint?: string | null; | ||
|
||
last4?: string | null; | ||
|
||
routing_number?: string | null; | ||
|
||
type?: string | null; | ||
} | ||
} |
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,26 @@ | ||
declare namespace Stripe { | ||
/** | ||
* The AcssDebit object. | ||
*/ | ||
interface AcssDebit { | ||
bank_address_city?: string | null; | ||
|
||
bank_address_line_1?: string | null; | ||
|
||
bank_address_line_2?: string | null; | ||
|
||
bank_address_postal_code?: string | null; | ||
|
||
bank_name?: string | null; | ||
|
||
category?: string | null; | ||
|
||
country?: string | null; | ||
|
||
fingerprint?: string | null; | ||
|
||
last4?: string | null; | ||
|
||
routing_number?: string | null; | ||
} | ||
} |
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,12 @@ | ||
declare namespace Stripe { | ||
/** | ||
* The Alipay object. | ||
*/ | ||
interface Alipay { | ||
data_string?: string | null; | ||
|
||
native_url?: string | null; | ||
|
||
statement_descriptor?: string | null; | ||
} | ||
} |
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 @@ | ||
declare namespace Stripe { | ||
/** | ||
* The AlternateStatementDescriptors object. | ||
*/ | ||
interface AlternateStatementDescriptors { | ||
/** | ||
* The Kana variation of the descriptor. | ||
*/ | ||
kana?: string; | ||
|
||
/** | ||
* The Kanji variation of the descriptor. | ||
*/ | ||
kanji?: string; | ||
} | ||
} |
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,6 @@ | ||
declare namespace Stripe { | ||
/** | ||
* The AmexExpressCheckout object. | ||
*/ | ||
interface AmexExpressCheckout {} | ||
} |
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,6 @@ | ||
declare namespace Stripe { | ||
/** | ||
* The ApplePay object. | ||
*/ | ||
interface ApplePay {} | ||
} |
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,12 @@ | ||
declare namespace Stripe { | ||
/** | ||
* The AuBecsDebit object. | ||
*/ | ||
interface AuBecsDebit { | ||
bsb_number?: string | null; | ||
|
||
fingerprint?: string | null; | ||
|
||
last4?: string | null; | ||
} | ||
} |
Oops, something went wrong.