File

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

Implements

Deserializable

Index

Properties
Methods

Properties

apiKey
Type : string
clientIdPrefix
Type : string
durable
Type : string
event
Type : string
id
Type : string
matcher
Type : string
name
Type : string
wssUrl
Type : string

Methods

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

result-matching ""

    No results matching ""