projects/netgrif-components-core/src/lib/resources/interface/petri-net-reference.ts
Information Petri Net
Properties |
author |
author:
|
Type : Author
|
createdDate |
createdDate:
|
Type : NaeDate
|
Date import |
defaultCaseName |
defaultCaseName:
|
Type : string
|
Name new Case Default Name |
identifier |
identifier:
|
Type : string
|
Identifier |
immediateData |
immediateData:
|
Type : Array<ImmediateData>
|
initials |
initials:
|
Type : string
|
Initials Max 3 Char |
stringId |
stringId:
|
Type : string
|
Mongo ID |
title |
title:
|
Type : string
|
Title |
uriNodeId |
uriNodeId:
|
Type : string
|
Uri node ID |
version |
version:
|
Type : string
|
Version net |
import {Author} from './author';
import {ImmediateData} from './immediate-data';
import {NaeDate} from '../types/nae-date-type';
/**
* Information Petri Net
*/
export interface PetriNetReference {
/**
* Mongo ID
*/
stringId: string;
/**
* Title
*/
title: string;
/**
* Identifier
*/
identifier: string;
/**
* Uri node ID
*/
uriNodeId: string;
/**
* Version net
*/
version: string;
/**
* Initials
*
* Max 3 Char
*/
initials: string;
/**
* Name new Case Default Name
*/
defaultCaseName: string;
/**
* Date import
*/
createdDate: NaeDate;
/**
* [Author]{@link Author}
*/
author: Author;
/**
* [ImmediateData]{@link ImmediateData}
*/
immediateData: Array<ImmediateData>;
}