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

org.schema.ReviewAction Maven / Gradle / Ivy

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

/**
 * Schema.org/ReviewAction
 * The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.
 *
 * @author schema.org
 * @class ReviewAction
 * @module org.schema
 * @extends AssessAction
 */
public class ReviewAction extends AssessAction {
	/**
	 * Schema.org/resultReview
	 * A sub property of result. The review that resulted in the performing of the action.
	 *
	 * @property resultReview
	 * @type Review
	 */
	public Review resultReview;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy