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

org.schema.LeaveAction Maven / Gradle / Ivy

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

/**
 * Schema.org/LeaveAction
 * An agent leaves an event / group with participants/friends at a location.\n\nRelated actions:\n\n* [[JoinAction]]: The antonym of LeaveAction.\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.
 *
 * @author schema.org
 * @class LeaveAction
 * @module org.schema
 * @extends InteractAction
 */
public class LeaveAction extends InteractAction {
	/**
	 * Schema.org/event
	 * Upcoming or past event associated with this place, organization, or action.
	 *
	 * @property event
	 * @type Event
	 */
	public Event event;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy