QNX CAR Platform for Infotainment 2.1 -- JavaScript API (Cordova)

/**
 *
 * @author lgreenway
 * $Id: TrackSessionEvent.js 6178 2013-05-07 18:43:12Z lgreenway@qnx.com $
 *
 */

module.exports = {};
/**
 * @static
 * @memberOf module:car.mediaplayer
 * @name TrackSessionEvent
 *
 * @description  Track session event enumeration
 *
 *  @property CREATED The track session is created.
 *  @property DESTROYED The track session is destroyed.
 *  @property APPENDED The track session is appended. 
 */  
Object.defineProperties(module.exports,
{
	'CREATED':		{ value: 0, enumerable: true, writable: false },
	'DESTROYED':	        { value: 1, enumerable: true, writable: false },
	'APPENDED':		{ value: 2, enumerable: true, writable: false }
});