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

org.schema.ChooseAction Maven / Gradle / Ivy

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

/**
 * Schema.org/ChooseAction
 * The act of expressing a preference from a set of options or a large or unbounded set of choices/options.
 *
 * @author schema.org
 * @class ChooseAction
 * @module org.schema
 * @extends AssessAction
 */
public class ChooseAction extends AssessAction {
	/**
	 * Schema.org/actionOption
	 * A sub property of object. The options subject to this action.
	 *
	 * @property actionOption
	 * @type Text
	 */
	public String actionOption;
	/**
	 * Schema.org/option
	 * A sub property of object. The options subject to this action.
	 *
	 * @property option
	 * @type Text
	 */
	public String option;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy