17 lines
236 B
TypeScript
17 lines
236 B
TypeScript
export type Cert = {
|
|
exp_interval: number
|
|
}
|
|
|
|
export type Course = {
|
|
id: string
|
|
name: string
|
|
access_period: string
|
|
cert: Cert
|
|
metadata__unit_price?: number
|
|
}
|
|
|
|
export type CustomPricing = {
|
|
sk: string
|
|
unit_price: number
|
|
}
|