File

projects/netgrif-components-core/src/lib/resources/interface/petri-net-reference.ts

Description

Information Petri Net

Index

Properties

Properties

author
author: Author
Type : Author
createdDate
createdDate: NaeDate
Type : NaeDate

Date import

defaultCaseName
defaultCaseName: string
Type : string

Name new Case Default Name

identifier
identifier: string
Type : string

Identifier

immediateData
immediateData: Array<ImmediateData>
Type : Array<ImmediateData>
initials
initials: string
Type : string

Initials

Max 3 Char

stringId
stringId: string
Type : string

Mongo ID

title
title: string
Type : string

Title

uriNodeId
uriNodeId: string
Type : string

Uri node ID

version
version: string
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>;
}

result-matching ""

    No results matching ""