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

org.schema.ConsumeAction Maven / Gradle / Ivy

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

/**
 * Schema.org/ConsumeAction
 * The act of ingesting information/resources/food.
 *
 * @author schema.org
 * @class ConsumeAction
 * @module org.schema
 * @extends Action
 */
public class ConsumeAction extends Action {
	/**
	 * Schema.org/expectsAcceptanceOf
	 * An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.
	 *
	 * @property expectsAcceptanceOf
	 * @type Offer
	 */
	public Offer expectsAcceptanceOf;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy