org.schema.ItemPage Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/ItemPage
* A page devoted to a single item, such as a particular product or hotel.
*
* @author schema.org
* @class ItemPage
* @module org.schema
* @extends WebPage
*/
public class ItemPage extends WebPage {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public ItemPage() {
context = "http://schema.org/";
type = "ItemPage";
}
}