org.schema.Hostel Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/Hostel
* A hostel - cheap accommodation, often in shared dormitories.
*
* See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.
*
* @author schema.org
* @class Hostel
* @module org.schema
* @extends LodgingBusiness
*/
public class Hostel extends LodgingBusiness {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public Hostel() {
context = "http://schema.org/";
type = "Hostel";
}
}