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

org.schema.CookAction Maven / Gradle / Ivy

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

/**
 * Schema.org/CookAction
 * The act of producing/preparing food.
 *
 * @author schema.org
 * @class CookAction
 * @module org.schema
 * @extends CreateAction
 */
public class CookAction extends CreateAction {
	/**
	 * Schema.org/recipe
	 * A sub property of instrument. The recipe/instructions used to perform the action.
	 *
	 * @property recipe
	 * @type Recipe
	 */
	public Recipe recipe;
	/**
	 * Schema.org/foodEvent
	 * A sub property of location. The specific food event where the action occurred.
	 *
	 * @property foodEvent
	 * @type FoodEvent
	 */
	public FoodEvent foodEvent;
	/**
	 * Schema.org/foodEstablishment
	 * A sub property of location. The specific food establishment where the action occurred.
	 *
	 * @property foodEstablishment
	 * @type FoodEstablishment
	 */
	public FoodEstablishment foodEstablishment;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy