We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46243cf + ed27f3b commit ca5c785Copy full SHA for ca5c785
types/2020-03-02/Customers.d.ts
@@ -124,7 +124,7 @@ declare module 'stripe' {
124
/**
125
* The customer's tax IDs.
126
*/
127
- tax_ids: ApiList<Stripe.TaxId>;
+ tax_ids: ApiList<Stripe.TaxId> | null;
128
}
129
130
namespace Customer {
types/2020-03-02/Files.d.ts
@@ -20,6 +20,11 @@ declare module 'stripe' {
20
21
created: number;
22
23
+ /**
24
+ * The time at which the file expires and is no longer available in epoch seconds.
25
+ */
26
+ expires_at: number | null;
27
+
28
29
* A filename for the file, suitable for saving to a filesystem.
30
0 commit comments