-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.ts
54 lines (50 loc) · 1.21 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import Stripe from "stripe";
export interface UserDetails {
id: string
first_name: string
last_name: string
full_name?: string
avator_url?: string
billing_address?: Stripe.Address
payment_method?: Stripe.PaymentMethod[Stripe.PaymentMethod.Type]
}
export interface Product {
id: string
active?: boolean
name?: string
description?: string
image?: string
metadata?: Stripe.Metadata
}
export interface Price {
id: string
product_id?: string
active?: boolean
description?: string
unit_ammount?: number
currency?: string
type?: Stripe.Price.Type
interval?: Stripe.Price.Recurring.Interval
interval_count?: number
trial_period_days?: number | null
metadata?: Stripe.Metadata
products?: Product
}
export interface Subscription {
id: string
user_id: string
status?: Stripe.Subscription.Status
metadata?: Stripe.Metadata
price_id?: string
quantity?: number
cancel_at_period_end?: boolean
created_at: string
current_period_start: string
currend_period_end: string
ended_at?: string
cancel_at?: string
canceled_at?: string
trial_start?: string
trial_end?: string
prices?: Price
}