15 lines
323 B
TypeScript
15 lines
323 B
TypeScript
import { IProduct } from './product.js';
|
|
|
|
export interface ISubscriptionPlan {
|
|
name: string;
|
|
unit: 'device' | 'user';
|
|
quantity: boolean;
|
|
availableTerms: {
|
|
period: 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
price: number;
|
|
currency: 'EUR' | 'USD';
|
|
}[];
|
|
containedProducts: IProduct[];
|
|
limits: any;
|
|
}
|