@dbbs/strapi-stripe-payment
Version:
Strapi integration plugin for Stripe payment system
26 lines (20 loc) • 372 B
text/typescript
import { Plan } from './plan.interface'
export interface CreateProductParams {
name: string
}
export interface UpdateProductParams {
name: string
id: number
}
export interface GetProductByIdParams {
id: number
}
export interface DeleteProductParams {
id: number
}
export interface Product {
name: string
id: number
stripe_id: string
plans: Plan[]
}