2
0
Files
bot/packages/schemas/features/billing/invoice.ts
2023-03-15 08:35:16 +01:00

12 lines
235 B
TypeScript

import { z } from 'zod'
export const invoiceSchema = z.object({
id: z.string(),
url: z.string(),
amount: z.number(),
currency: z.string(),
date: z.number().nullable(),
})
export type Invoice = z.infer<typeof invoiceSchema>