@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
15 lines (14 loc) • 548 B
TypeScript
import type { IAppLicenseMetadata } from './IAppLicenseMetadata';
import type { MarketplaceSubscriptionStatus } from './MarketplaceSubscriptionStatus';
import type { MarketplaceSubscriptionType } from './MarketplaceSubscriptionType';
export interface IMarketplaceSubscriptionInfo {
seats: number;
maxSeats: number;
startDate: string;
periodEnd: string;
isSubscripbedViaBundle: boolean;
endDate?: string;
typeOf: MarketplaceSubscriptionType;
status: MarketplaceSubscriptionStatus;
license: IAppLicenseMetadata;
}