org.schema.PaintAction Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/PaintAction
* The act of producing a painting, typically with paint and canvas as instruments.
*
* @author schema.org
* @class PaintAction
* @module org.schema
* @extends CreateAction
*/
public class PaintAction extends CreateAction {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public PaintAction() {
context = "http://schema.org/";
type = "PaintAction";
}
}