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