Skip to content

Commit 14b655d

Browse files
committed
Codegen for openapi ea5fa98
1 parent 81a6a00 commit 14b655d

5 files changed

Lines changed: 30 additions & 5 deletions

File tree

types/2020-08-27/Cards.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ declare module 'stripe' {
118118
exp_year: number;
119119

120120
/**
121-
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number,for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
121+
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
122122
*/
123123
fingerprint?: string | null;
124124

types/2020-08-27/Charges.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ declare module 'stripe' {
662662
exp_year: number;
663663

664664
/**
665-
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number,for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
665+
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
666666
*/
667667
fingerprint?: string | null;
668668

@@ -929,7 +929,7 @@ declare module 'stripe' {
929929
exp_year: number;
930930

931931
/**
932-
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number,for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
932+
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
933933
*/
934934
fingerprint: string | null;
935935

@@ -1210,7 +1210,7 @@ declare module 'stripe' {
12101210
exp_year: number;
12111211

12121212
/**
1213-
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number,for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
1213+
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
12141214
*/
12151215
fingerprint: string | null;
12161216

types/2020-08-27/PaymentMethods.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ declare module 'stripe' {
166166
exp_year: number;
167167

168168
/**
169-
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number,for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
169+
* Uniquely identifies this particular card number. You can use this attribute to check whether two customers who've signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.
170170
*/
171171
fingerprint?: string | null;
172172

types/2020-08-27/SubscriptionSchedules.d.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,11 @@ declare module 'stripe' {
255255
* The quantity of the invoice item.
256256
*/
257257
quantity: number | null;
258+
259+
/**
260+
* The tax rates which apply to the item. When set, the `default_tax_rates` do not apply to this item.
261+
*/
262+
tax_rates?: Array<Stripe.TaxRate> | null;
258263
}
259264

260265
type BillingCycleAnchor = 'automatic' | 'phase_start';
@@ -554,6 +559,11 @@ declare module 'stripe' {
554559
* Quantity for this item. Defaults to 1.
555560
*/
556561
quantity?: number;
562+
563+
/**
564+
* The tax rates which apply to the item. When set, the `default_tax_rates` do not apply to this item.
565+
*/
566+
tax_rates?: Array<string> | null;
557567
}
558568

559569
namespace AddInvoiceItem {
@@ -922,6 +932,11 @@ declare module 'stripe' {
922932
* Quantity for this item. Defaults to 1.
923933
*/
924934
quantity?: number;
935+
936+
/**
937+
* The tax rates which apply to the item. When set, the `default_tax_rates` do not apply to this item.
938+
*/
939+
tax_rates?: Array<string> | null;
925940
}
926941

927942
namespace AddInvoiceItem {

types/2020-08-27/Subscriptions.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,11 @@ declare module 'stripe' {
434434
* Quantity for this item. Defaults to 1.
435435
*/
436436
quantity?: number;
437+
438+
/**
439+
* The tax rates which apply to the item. When set, the `default_tax_rates` do not apply to this item.
440+
*/
441+
tax_rates?: Array<string> | null;
437442
}
438443

439444
namespace AddInvoiceItem {
@@ -759,6 +764,11 @@ declare module 'stripe' {
759764
* Quantity for this item. Defaults to 1.
760765
*/
761766
quantity?: number;
767+
768+
/**
769+
* The tax rates which apply to the item. When set, the `default_tax_rates` do not apply to this item.
770+
*/
771+
tax_rates?: Array<string> | null;
762772
}
763773

764774
namespace AddInvoiceItem {

0 commit comments

Comments
 (0)