org.schema.ControlAction Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/ControlAction
* An agent controls a device or application.
*
* @author schema.org
* @class ControlAction
* @module org.schema
* @extends Action
*/
public class ControlAction extends Action {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public ControlAction() {
context = "http://schema.org/";
type = "ControlAction";
}
}