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

org.schema.InformAction Maven / Gradle / Ivy

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

/**
 * Schema.org/InformAction
 * The act of notifying someone of information pertinent to them, with no expectation of a response.
 *
 * @author schema.org
 * @class InformAction
 * @module org.schema
 * @extends CommunicateAction
 */
public class InformAction extends CommunicateAction {
	/**
	 * 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 InformAction() {
		context = "http://schema.org/";
		type = "InformAction";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy