aes70
Version:
A controller library for the AES70 protocol.
44 lines (38 loc) • 1.02 kB
TypeScript
/*
* This file has been generated.
*/
import {
IOcaPropertyChangeType,
OcaPropertyChangeType,
} from './OcaPropertyChangeType';
export declare interface IOcaLibVolChangedEventData {
/**
* ID of library volume that changed.
* @type number
*/
VolumeID: number;
/**
* Type of change : Will be either itemChanged, itemAdded, or itemDeleted.
* @type OcaPropertyChangeType
*/
ChangeType: IOcaPropertyChangeType;
}
export declare class OcaLibVolChangedEventData
implements IOcaLibVolChangedEventData {
/**
* Event data for the **OcaLibVolChanged** event, which signals a change in an
* **OcaLibrary.Volumes** property.
* @class OcaLibVolChangedEventData
*/
constructor(VolumeID: number, ChangeType: OcaPropertyChangeType);
/**
* ID of library volume that changed.
* @type number
*/
VolumeID: number;
/**
* Type of change : Will be either itemChanged, itemAdded, or itemDeleted.
* @type OcaPropertyChangeType
*/
ChangeType: OcaPropertyChangeType;
}