UNPKG

aes70

Version:

A controller library for the AES70 protocol.

30 lines (28 loc) 884 B
/* * This file has been generated. */ export class OcaMediaSinkConnectorChangedEventData { /** * @class OcaMediaSinkConnectorChangedEventData */ constructor(SinkConnector, ChangeType, ChangedElement) { /** * The media source connector for which the changed event holds (i.e. that * is added, deleted or changed). * @type OcaMediaSinkConnector */ this.SinkConnector = SinkConnector; /** * Indicates what type of change occurred. Only ItemAdded, ItemChanged and * ItemDeleted can be used in this event data. * @type OcaPropertyChangeType */ this.ChangeType = ChangeType; /** * Indicates which element(s) of the connector changed. If the connector is * added or deleted, all bits in this bitset shall be set. * @type IOcaMediaConnectorElement */ this.ChangedElement = ChangedElement; } }