C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-liveapps-lib/src/lib/models/tc-case-processes.ts
Properties |
|
constructor(type: string, appSchema: CaseTypesList, caseIdAttribute: CaseAttribute, process: Process, ref: string, caseReference: string, creator: CaseCreator, action: CaseAction)
|
|||||||||||||||||||||||||||
Parameters :
|
Public action |
Type : CaseAction
|
Public appSchema |
Type : CaseTypesList
|
Public caseIdAttribute |
Type : CaseAttribute
|
Public caseReference |
Type : string
|
Public creator |
Type : CaseCreator
|
Public process |
Type : Process
|
Public ref |
Type : string
|
Public type |
Type : string
|
import {Deserializable} from '@tibco-tcstk/tc-core-lib';
import {CaseAction, CaseAttribute, CaseCreator, CaseTypesList, Process} from './liveappsdata';
export class LaProcessSelection {
// Format of ref is <applicationName>.<applicationInternalName>.<processType>.<processName>
constructor(public type: string,
public appSchema: CaseTypesList,
public caseIdAttribute: CaseAttribute,
public process: Process,
public ref: string,
public caseReference: string,
public creator: CaseCreator,
public action: CaseAction
) {
}
}