File

C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-liveapps-lib/src/lib/models/tc-case-data.ts

Implements

Deserializable

Index

Properties
Methods

Properties

mfpCount
Type : number

Methods

deserialize
deserialize(input: any)
Parameters :
Name Type Optional
input any No
Returns : this
import {Deserializable} from '@tibco-tcstk/tc-core-lib';
import {CaseInfo, JsonSchema} from './liveappsdata';

export class CaseInfoWithSchema implements Deserializable {
  caseInfo: CaseInfo;
  caseSchema: JsonSchema;
  applicationName: string;
  applicationInternalName: string;
  name: string;
  deserialize(input: any) {
    Object.assign(this, input);
    return this;
  }
}

export class PurgeResult implements Deserializable {
  mfpCount: number;

  deserialize(input: any) {
    Object.assign(this, input);
    return this;
  }
}

result-matching ""

    No results matching ""