/**
 * Describes a ProcessDefinitionProcessModelAssociation, as it is stored in the database.
 */
export type ProcessDefinitionProcessModelAssociationRaw = {
    processDefinitionId: string;
    processModelId: string;
    createdAt?: Date;
    updatedAt?: Date;
    deleted: boolean;
    isExecutable: boolean;
    isSingleton: boolean;
};
