C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-core-lib/src/lib/models/tc-app-config.ts
Properties |
Methods |
applicationIds |
Type : number[]
|
caseIconsFolderId |
Type : string
|
caseTypeLabel |
Type : string
|
id |
Type : string
|
sandboxId |
Type : number
|
typeId |
Type : string
|
uiAppId |
Type : string
|
deserialize | ||||||
deserialize(input: any)
|
||||||
Parameters :
Returns :
this
|
import {Deserializable} from './deserializable';
export class UiAppConfig implements Deserializable {
id: string;
sandboxId: number;
applicationIds: number[];
typeId: string;
uiAppId: string;
caseIconsFolderId: string;
caseTypeLabel: string;
deserialize(input: any) {
Object.assign(this, input);
return this;
}
}
export class UiAppIdConfig implements Deserializable {
uiAppId: string;
deserialize(input: any) {
Object.assign(this, input);
return this;
}
}