UNPKG

aes70

Version:

A controller library for the AES70 protocol.

28 lines (26 loc) 546 B
/* * This file has been generated. */ export class OcaTaskStateChangedEventData { /** * @class OcaTaskStateChangedEventData */ constructor(TaskID, ProgramID, Status) { /** * ID of Task * @type number */ this.TaskID = TaskID; /** * Library volume identifier of Program running in the task at the time of * the change, or null * @type OcaLibVolIdentifier */ this.ProgramID = ProgramID; /** * New task status * @type OcaTaskStatus */ this.Status = Status; } }