import { ActionEnum } from './ActionEnum';
import { StateEnum } from './StateEnum';
/** Current life cycle configuration */
export interface Current {
    /** Service creation date */
    creationDate?: string;
    /** Pending actions */
    pendingActions: ActionEnum[];
    /** Current life cycle state */
    state: StateEnum;
    /** Scheduled termination date */
    terminationDate?: string;
}
//# sourceMappingURL=Current.d.ts.map