/**
 * @alias Journey.class
 * @see Place.class
 * @author WilC <wilz04@gmail.com>
 * @since 2008.
 */

function Journey(id, from, to) {
	
	this.id = id;
	this._from = from;
	this._to = to;
	this._date = new Date();
	this._duration = null;
	this._class = null;
	this._pickup_dropoff = null;
	this._rate = null;
	this._description = null;
	
}
