org.schema.DepartAction Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/DepartAction
* The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.
*
* @author schema.org
* @class DepartAction
* @module org.schema
* @extends MoveAction
*/
public class DepartAction extends MoveAction {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public DepartAction() {
context = "http://schema.org/";
type = "DepartAction";
}
}