export interface IProcessDefinition {
id: string;
key: string;
category: string;
description?: string;
name: string;
version: number;
resource: string;
deploymentId: string;
diagram?: any;
suspended: boolean;
tenantId?: string;
versionTag?: any;
historyTimeToLive: number;
}