C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-core-lib/src/lib/models/tc-general-config.ts
Properties |
Methods |
applicationTitle |
Type : string
|
browserTitle |
Type : string
|
displayName |
Type : boolean
|
documentationUrl |
Type : string
|
id |
Type : string
|
roles |
Type : RoleAttribute[]
|
uiAppId |
Type : string
|
welcomeMessage |
Type : string
|
deserialize | ||||||
deserialize(input: any)
|
||||||
Parameters :
Returns :
this
|
import {Deserializable} from './deserializable';
export class RoleAttribute {
public id: string;
public group: string;
public display: string;
public welcome: string;
public imageUrl: string;
public configuration: boolean;
public priority: number;
deserialize(input: any) {
Object.assign(this, input);
return this;
}
}
export class GeneralConfig implements Deserializable {
id: string;
uiAppId: string;
browserTitle: string;
applicationTitle: string;
welcomeMessage: string;
displayName: boolean;
documentationUrl: string;
roles: RoleAttribute[];
deserialize(input: any) {
Object.assign(this, input);
return this;
}
}