All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.schema.TravelAction Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/TravelAction
 * The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.
 *
 * @author schema.org
 * @class TravelAction
 * @module org.schema
 * @extends MoveAction
 */
public class TravelAction extends MoveAction {
	/**
	 * Schema.org/distance
	 * The distance travelled, e.g. exercising or travelling.
	 *
	 * @property distance
	 * @type Distance
	 */
	public Distance distance;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public TravelAction() {
		context = "http://schema.org/";
		type = "TravelAction";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy