Created
June 19, 2020 14:52
-
-
Save SimonHoiberg/8f78b6babffa0d986a873168e81641db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface IStripeCustomer { | |
id: string; | |
object: string; | |
address?: any; | |
balance: number; | |
created: number; | |
currency: string; | |
default_source?: any; | |
delinquent: boolean; | |
description: string; | |
discount?: any; | |
email?: any; | |
invoice_prefix: string; | |
invoice_settings: IStripeInvoiceSettings; | |
livemode: boolean; | |
metadata: any; | |
name?: any; | |
next_invoice_sequence: number; | |
phone?: any; | |
preferred_locales: any[]; | |
shipping?: any; | |
sources: IStripeSources; | |
subscriptions: IStripeSubscriptions; | |
tax_exempt: string; | |
tax_ids: IStripeTaxIds; | |
} | |
export interface IStripeInvoiceSettings { | |
custom_fields?: any; | |
default_payment_method?: any; | |
footer?: any; | |
} | |
export interface IStripeSources { | |
object: string; | |
data: any[]; | |
has_more: boolean; | |
url: string; | |
} | |
export interface IStripeSubscriptions { | |
object: string; | |
data: any[]; | |
has_more: boolean; | |
url: string; | |
} | |
export interface IStripeTaxIds { | |
object: string; | |
data: any[]; | |
has_more: boolean; | |
url: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment