UNPKG

scheunemann-interfaces

Version:
14 lines (13 loc) 345 B
import { IIuguPlanFeature } from './i-plan-feature'; import { IIuguPlanPrice } from './i-plan-price'; export interface IIuguPlan { createdAt: Date; features: IIuguPlanFeature[]; id: string; identifier: string; interval: number; intervalType: string; name: string; prices: IIuguPlanPrice[]; updatedAt: Date; }