mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
17 lines
345 B
TypeScript
17 lines
345 B
TypeScript
|
export interface IInstanceStatus {
|
||
|
plan: string;
|
||
|
trialExpiry?: string;
|
||
|
trialStart?: string;
|
||
|
trialExtended?: number;
|
||
|
billingCenter?: string;
|
||
|
state?: InstanceState;
|
||
|
}
|
||
|
|
||
|
export enum InstanceState {
|
||
|
UNASSIGNED = 'UNASSIGNED',
|
||
|
TRIAL = 'TRIAL',
|
||
|
ACTIVE = 'ACTIVE',
|
||
|
EXPIRED = 'EXPIRED',
|
||
|
CHURNED = 'CHURNED',
|
||
|
}
|