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

org.schema.EndorseAction Maven / Gradle / Ivy

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

/**
 * Schema.org/EndorseAction
 * An agent approves/certifies/likes/supports/sanction an object.
 *
 * @author schema.org
 * @class EndorseAction
 * @module org.schema
 * @extends ReactAction
 */
public class EndorseAction extends ReactAction {
	/**
	 * Schema.org/endorsee
	 * A sub property of participant. The person/organization being supported.
	 *
	 * @property endorsee
	 * @type Organization
	 */
	public Organization endorsee;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy