Skip to content

Commit

Permalink
Actually use all shared subresources from openapi
Browse files Browse the repository at this point in the history
  • Loading branch information
rattrayalex-stripe committed Nov 27, 2019
1 parent 8b8d0cc commit 52136ae
Show file tree
Hide file tree
Showing 171 changed files with 4,312 additions and 7,371 deletions.
687 changes: 13 additions & 674 deletions types/v2019-11-05/Accounts.d.ts

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions types/v2019-11-05/AchCreditTransferData.d.ts
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;
}
}
22 changes: 22 additions & 0 deletions types/v2019-11-05/AchCreditTransfers.d.ts
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;
}
}
18 changes: 18 additions & 0 deletions types/v2019-11-05/AchDebits.d.ts
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;
}
}
26 changes: 26 additions & 0 deletions types/v2019-11-05/AcssDebits.d.ts
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;
}
}
12 changes: 12 additions & 0 deletions types/v2019-11-05/Alipays.d.ts
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;
}
}
16 changes: 16 additions & 0 deletions types/v2019-11-05/AlternateStatementDescriptors.d.ts
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;
}
}
6 changes: 6 additions & 0 deletions types/v2019-11-05/AmexExpressCheckouts.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
declare namespace Stripe {
/**
* The AmexExpressCheckout object.
*/
interface AmexExpressCheckout {}
}
6 changes: 6 additions & 0 deletions types/v2019-11-05/ApplePays.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
declare namespace Stripe {
/**
* The ApplePay object.
*/
interface ApplePay {}
}
12 changes: 12 additions & 0 deletions types/v2019-11-05/AuBecsDebits.d.ts
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;
}
}
Loading

0 comments on commit 52136ae

Please sign in to comment.