File

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

Implements

Deserializable

Index

Properties
Methods

Properties

activityId
Type : string
activityName
Type : string
applicationId
Type : string
applicationName
Type : string
Optional caseRef
Type : string
formDivId
Type : string
formRef
Type : string
id
Type : string
label
Type : string
name
Type : string
Optional noData
Type : string
sandbox
Type : string
type
Type : string
useCustomForm
Type : string
Optional user
Type : string
version
Type : string

Methods

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

/*
  type can be action/creator or workitem
 */
export class LiveAppsFormConfig implements Deserializable {
  type: string;
  id: string;
  user?: string;
  sandbox: string;
  formDivId: string;
  useCustomForm: string;
  name: string;
  label: string;
  version: string;
  applicationId: string;
  applicationName: string;
  activityId: string;
  activityName: string;
  caseRef?: string;
  noData?: string;
  formRef: string;
  deserialize(input: any) {
    Object.assign(this, input);
    return this;
  }
}

result-matching ""

    No results matching ""