@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
11 lines (10 loc) • 366 B
TypeScript
import type { IMarketplacePricingTier } from './IMarketplacePricingTier';
import type { MarketplacePricingStrategy } from './MarketplacePricingStrategy';
export interface IMarketplacePricingPlan {
id: string;
enabled: boolean;
price: number;
isPerSeat: boolean;
strategy: MarketplacePricingStrategy;
tiers?: Array<IMarketplacePricingTier>;
}