File

C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-core-lib/src/lib/models/tc-general-config.ts

Implements

Deserializable

Index

Properties
Methods

Properties

applicationTitle
Type : string
browserTitle
Type : string
displayName
Type : boolean
documentationUrl
Type : string
id
Type : string
roles
Type : RoleAttribute[]
uiAppId
Type : string
welcomeMessage
Type : string

Methods

deserialize
deserialize(input: any)
Parameters :
Name Type Optional
input any No
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;
  }
}

result-matching ""

    No results matching ""