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

org.schema.VoteAction Maven / Gradle / Ivy

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

/**
 * Schema.org/VoteAction
 * The act of expressing a preference from a fixed/finite/structured set of choices/options.
 *
 * @author schema.org
 * @class VoteAction
 * @module org.schema
 * @extends ChooseAction
 */
public class VoteAction extends ChooseAction {
	/**
	 * Schema.org/candidate
	 * A sub property of object. The candidate subject of this action.
	 *
	 * @property candidate
	 * @type Person
	 */
	public Person candidate;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy