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

org.schema.TransferAction Maven / Gradle / Ivy

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

/**
 * Schema.org/TransferAction
 * The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.
 *
 * @author schema.org
 * @class TransferAction
 * @module org.schema
 * @extends Action
 */
public class TransferAction extends Action {
	/**
	 * Schema.org/toLocation
	 * A sub property of location. The final location of the object or the agent after the action.
	 *
	 * @property toLocation
	 * @type Place
	 */
	public Place toLocation;
	/**
	 * Schema.org/fromLocation
	 * A sub property of location. The original location of the object or the agent before the action.
	 *
	 * @property fromLocation
	 * @type Place
	 */
	public Place fromLocation;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy