C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-liveapps-lib/src/lib/models/tc-liveapps-form.ts
Deserializable
Properties |
|
Methods |
| activityId |
Type : string
|
| activityName |
Type : string
|
| applicationId |
Type : string
|
| applicationName |
Type : string
|
| Optional caseRef |
Type : string
|
| formDivId |
Type : string
|
| formRef |
Type : string
|
| id |
Type : string
|
| label |
Type : string
|
| name |
Type : string
|
| Optional noData |
Type : string
|
| sandbox |
Type : string
|
| type |
Type : string
|
| useCustomForm |
Type : string
|
| Optional user |
Type : string
|
| version |
Type : string
|
| deserialize | ||||||
deserialize(input: any)
|
||||||
|
Parameters :
Returns :
this
|
import {Deserializable} from '@tibco-tcstk/tc-core-lib';
/*
type can be action/creator or workitem
*/
export class LiveAppsFormConfig implements Deserializable {
type: string;
id: string;
user?: string;
sandbox: string;
formDivId: string;
useCustomForm: string;
name: string;
label: string;
version: string;
applicationId: string;
applicationName: string;
activityId: string;
activityName: string;
caseRef?: string;
noData?: string;
formRef: string;
deserialize(input: any) {
Object.assign(this, input);
return this;
}
}