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

org.schema.ReplaceAction Maven / Gradle / Ivy

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

/**
 * Schema.org/ReplaceAction
 * The act of editing a recipient by replacing an old object with a new object.
 *
 * @author schema.org
 * @class ReplaceAction
 * @module org.schema
 * @extends UpdateAction
 */
public class ReplaceAction extends UpdateAction {
	/**
	 * Schema.org/replacee
	 * A sub property of object. The object that is being replaced.
	 *
	 * @property replacee
	 * @type Thing
	 */
	public Thing replacee;
	/**
	 * Schema.org/replacer
	 * A sub property of object. The object that replaces.
	 *
	 * @property replacer
	 * @type Thing
	 */
	public Thing replacer;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy