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

org.schema.ReplyAction Maven / Gradle / Ivy

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

/**
 * Schema.org/ReplyAction
 * The act of responding to a question/message asked/sent by the object. Related to [[AskAction]]\n\nRelated actions:\n\n* [[AskAction]]: Appears generally as an origin of a ReplyAction.
 *
 * @author schema.org
 * @class ReplyAction
 * @module org.schema
 * @extends CommunicateAction
 */
public class ReplyAction extends CommunicateAction {
	/**
	 * Schema.org/resultComment
	 * A sub property of result. The Comment created or sent as a result of this action.
	 *
	 * @property resultComment
	 * @type Comment
	 */
	public Comment resultComment;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy