Skip to content

Commit

Permalink
Merge pull request #988 from stripe/remi/codegen-84af9b1
Browse files Browse the repository at this point in the history
Multiple API changes
  • Loading branch information
remi-stripe authored Aug 19, 2020
2 parents f83b7a8 + b215d99 commit 65d2727
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion types/2020-03-02/Customers.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ declare module 'stripe' {
/**
* The customer's tax IDs.
*/
tax_ids: ApiList<Stripe.TaxId>;
tax_ids: ApiList<Stripe.TaxId> | null;
}

namespace Customer {
Expand Down
5 changes: 5 additions & 0 deletions types/2020-03-02/Files.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ declare module 'stripe' {
*/
created: number;

/**
* The time at which the file expires and is no longer available in epoch seconds.
*/
expires_at: number | null;

/**
* A filename for the file, suitable for saving to a filesystem.
*/
Expand Down

0 comments on commit 65d2727

Please sign in to comment.