org.schema.DeleteAction Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/DeleteAction
* The act of editing a recipient by removing one of its objects.
*
* @author schema.org
* @class DeleteAction
* @module org.schema
* @extends UpdateAction
*/
public class DeleteAction extends UpdateAction {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public DeleteAction() {
context = "http://schema.org/";
type = "DeleteAction";
}
}