Files
alfresco-ng2-components/lib/process-services-cloud/src/lib/process/start-process/models/process-instance-cloud.model.ts
Denys Vuika b69fdb9370 Optimize tests and upgrade Nx workspace (#5884)
* fix issue with async await, use interface over class

* upgrade nx workspace

* remove useless async

* code fixes
2020-07-16 22:34:50 +01:00

32 lines
967 B
TypeScript
Executable File

/*!
* @license
* Copyright 2019 Alfresco Software, Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export interface ProcessInstanceCloud {
appName?: string;
id?: string;
name?: string;
startDate?: Date;
initiator?: string;
status?: string;
businessKey?: string;
lastModified?: Date;
parentId?: string;
processDefinitionId?: string;
processDefinitionKey?: string;
processDefinitionName?: string;
}