org.schema.SearchAction Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/SearchAction
* The act of searching for an object.\n\nRelated actions:\n\n* [[FindAction]]: SearchAction generally leads to a FindAction, but not necessarily.
*
* @author schema.org
* @class SearchAction
* @module org.schema
* @extends Action
*/
public class SearchAction extends Action {
/**
* Schema.org/query
* A sub property of instrument. The query used on this action.
*
* @property query
* @type Text
*/
public String query;
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public SearchAction() {
context = "http://schema.org/";
type = "SearchAction";
}
}