Skip to content

Commit ca5c785

Browse files
authored
Merge pull request stripe#988 from stripe/remi/codegen-84af9b1
Multiple API changes
2 parents 46243cf + ed27f3b commit ca5c785

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

types/2020-03-02/Customers.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ declare module 'stripe' {
124124
/**
125125
* The customer's tax IDs.
126126
*/
127-
tax_ids: ApiList<Stripe.TaxId>;
127+
tax_ids: ApiList<Stripe.TaxId> | null;
128128
}
129129

130130
namespace Customer {

types/2020-03-02/Files.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ declare module 'stripe' {
2020
*/
2121
created: number;
2222

23+
/**
24+
* The time at which the file expires and is no longer available in epoch seconds.
25+
*/
26+
expires_at: number | null;
27+
2328
/**
2429
* A filename for the file, suitable for saving to a filesystem.
2530
*/

0 commit comments

Comments
 (0)