C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-messaging-lib/src/lib/models/messaging-config.ts
Deserializable
Properties |
Methods |
connections |
Type : MessagingConnection[]
|
id |
Type : string
|
deserialize | ||||||
deserialize(input: any)
|
||||||
Parameters :
Returns :
this
|
import {Deserializable} from '@tibco-tcstk/tc-core-lib';
import {MessagingConnection} from './messaging-connection';
export class MessagingConfig implements Deserializable {
id: string;
connections: MessagingConnection[];
deserialize(input: any) {
Object.assign(this, input);
return this;
}
}