mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Add customer fields to invoice object for Stripe (#36130)
This commit is contained in:
parent
9d26e2f044
commit
4adcbedff3
19
types/stripe/index.d.ts
vendored
19
types/stripe/index.d.ts
vendored
@ -22,6 +22,7 @@
|
||||
// Gokul Chandrasekaran <https://github.com/gokulchandra>
|
||||
// Jamie Davies <https://github.com/viralpickaxe>
|
||||
// Christopher Eck <https://github.com/chrisleck>
|
||||
// Josiah <https://github.com/spacetag>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.2
|
||||
|
||||
@ -2494,6 +2495,24 @@ declare namespace Stripe {
|
||||
|
||||
customer: string | customers.ICustomer;
|
||||
|
||||
/**
|
||||
* The customer’s email. Until the invoice is finalized, this field will equal customer.email.
|
||||
* Once the invoice is finalized, this field will no longer be updated.
|
||||
*/
|
||||
customer_email: string;
|
||||
|
||||
/**
|
||||
* The customer’s name. Until the invoice is finalized, this field will equal customer.name.
|
||||
* Once the invoice is finalized, this field will no longer be updated.
|
||||
*/
|
||||
customer_name: string;
|
||||
|
||||
/**
|
||||
* The customer’s phone number. Until the invoice is finalized, this field will equal customer.phone.
|
||||
* Once the invoice is finalized, this field will no longer be updated.
|
||||
*/
|
||||
customer_phone: string;
|
||||
|
||||
/**
|
||||
* Time at which the object was created. Measured in seconds since the Unix epoch.
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user