File

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

Implements

Deserializable

Index

Properties
Methods

Properties

uiAppId
Type : string

Methods

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

result-matching ""

    No results matching ""