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

org.schema.ScheduleAction Maven / Gradle / Ivy

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

/**
 * Schema.org/ScheduleAction
 * Scheduling future actions, events, or tasks.\n\nRelated actions:\n\n* [[ReserveAction]]: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.
 *
 * @author schema.org
 * @class ScheduleAction
 * @module org.schema
 * @extends PlanAction
 */
public class ScheduleAction extends PlanAction {
	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public ScheduleAction() {
		context = "http://schema.org/";
		type = "ScheduleAction";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy